:root {
  --navy: #0B2A52;
  --navy-2: #133766;
  --navy-deep: #061A36;
  --orange: #E94E1B;
  --orange-2: #FF6A3D;
  --bg: #F4F1EC;
  --bg-2: #EAE5DC;
  --white: #FFFFFF;
  --text: #0B2A52;
  --muted: #5C6B7F;
  --line: #D8D2C7;
  --line-2: #E5E0D6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.display, h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--navy);
}
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow.dark { color: var(--navy); }
.eyebrow.light { color: rgba(255,255,255,0.7); }

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============== HEADER ============== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line-2);
}
.header-inner {
  display: flex; align-items: center; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  height: 46px;
  position: relative;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.logo-mark svg { height: 100%; width: auto; }
.logo-mark img { height: 100%; width: auto; display: block; }
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.logo-text .name {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.logo-text .name span { color: var(--orange); }
.logo-text .tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
}

.nav {
  display: flex; gap: 32px;
  margin-left: auto;
  align-items: center;
}
.nav a {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav a:hover { color: var(--orange); }
.nav a.active::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--orange);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn .arr {
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
  transition: transform 0.25s ease;
}
.btn:hover .arr { transform: translateX(4px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: #d44315; box-shadow: 0 8px 20px -8px rgba(233,78,27,0.6); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
  padding-top: 40px;
}
.hero-copy { padding-top: 20px; }
.hero h1 {
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--orange); display: block; }
.hero p.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin-top: 28px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 70px;
  max-width: 620px;
}
.cap {
  position: relative;
}
.cap-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--navy);
  margin-bottom: 14px;
}
.cap-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.cap-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Hero image with diagonal clip */
.hero-visual {
  position: relative;
  height: 640px;
  margin-right: -40px;
}
.hero-image {
  position: absolute;
  inset: 0;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 6% 100%);
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(11,42,82,0.15) 100%);
}
/* Orange diagonal slash */
.hero-slash-orange {
  position: absolute;
  top: -10px; left: 12%;
  width: 60px; height: 280px;
  background: var(--orange);
  transform: skewX(-14deg);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
.hero-slash-white {
  position: absolute;
  top: -10px; left: 18%;
  width: 36px; height: 220px;
  background: var(--bg);
  transform: skewX(-14deg);
  z-index: 2;
}
/* Navy triangle accent bottom-left */
.hero-triangle {
  position: absolute;
  bottom: -10px; left: -10px;
  width: 120px; height: 120px;
  background: var(--navy);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}

/* ============== SECTION BASE ============== */
section { position: relative; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
}

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-top: 50px;
}
.about-eyebrow { margin-bottom: 22px; }
.about-grid h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  text-transform: uppercase;
}
.about-grid h2 .accent { color: var(--orange); display: block; }
.about-rule {
  width: 70px; height: 4px;
  background: var(--orange);
  margin: 28px 0;
}
.about-grid p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 18px;
  max-width: 480px;
}
.about-grid p strong { color: var(--navy); font-weight: 700; }
.about-visual {
  position: relative;
  height: 580px;
}
.about-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-deep);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -30px; left: -30px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 28px;
  z-index: 2;
  max-width: 260px;
}
.about-badge .num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
}
.about-badge .lbl {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.95;
}

/* ============== STATS BAR ============== */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 30%, transparent 30%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  display: flex; gap: 20px;
  align-items: flex-start;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -20px; top: 8px;
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.15);
}
.stat-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--white);
  opacity: 0.95;
}
.stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
}
.stat-num .plus { color: var(--orange); }
.stat-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 10px;
}
.stat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ============== SERVICES ============== */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.services-head h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  text-transform: uppercase;
}
.services-head h2 .accent { color: var(--orange); }
.services-head p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 480px;
  justify-self: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  position: relative;
  padding: 36px 32px 40px;
  background: var(--bg);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease;
  cursor: pointer;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.service > * { position: relative; z-index: 1; }
.service:hover::before { transform: translateY(0); }
.service:hover .svc-num,
.service:hover .svc-title,
.service:hover .svc-desc,
.service:hover .svc-arrow { color: var(--white); }
.service:hover .svc-icon { color: var(--orange); }

.svc-top {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.svc-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.35s;
}
.svc-icon {
  width: 48px; height: 48px;
  color: var(--navy);
  transition: color 0.35s;
}
.svc-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.1;
  transition: color 0.35s;
  min-height: 50px;
}
.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  transition: color 0.35s;
}
.svc-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color 0.35s;
}

/* ============== PROCESS ============== */
.process {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process .container { position: relative; z-index: 1; }
.process-bg {
  position: absolute;
  top: 0; right: -150px;
  width: 600px; height: 100%;
  opacity: 0.05;
  pointer-events: none;
}
.process-bg svg { width: 100%; height: 100%; }
.process h2 {
  color: var(--white);
  font-size: clamp(36px, 4.4vw, 60px);
  text-transform: uppercase;
  max-width: 760px;
  margin-top: 18px;
}
.process h2 .accent { color: var(--orange); }
.process .eyebrow.light { margin-bottom: 0; }
.process-intro {
  max-width: 500px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-top: 22px;
}
.process-steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-line {
  position: absolute;
  top: 26px; left: 5%; right: 5%;
  height: 2px;
  background: rgba(255,255,255,0.12);
}
.process-line::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--orange);
  transition: width 2s cubic-bezier(0.65, 0, 0.35, 1);
}
.process-steps.in-view .process-line::after { width: 100%; }

.pstep {
  text-align: left;
  padding: 0 16px 0 0;
  position: relative;
}
.pstep-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: grid; place-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.process-steps.in-view .pstep-dot {
  background: var(--orange);
  color: var(--white);
}
.pstep-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.pstep-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  padding-right: 12px;
}

/* ============== INDUSTRIES ============== */
.industries-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.industries-head h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  text-transform: uppercase;
}
.industries-head h2 .accent { color: var(--orange); }
.industries-head p {
  color: var(--muted);
  font-size: 15px;
  max-width: 460px;
  justify-self: end;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.industry {
  background: var(--white);
  border: 1px solid var(--line-2);
  padding: 28px 18px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.industry::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.industry:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11,42,82,0.2);
}
.industry:hover::before { transform: scaleX(1); }
.industry-icon {
  width: 38px; height: 38px;
  margin: 0 auto 16px;
  color: var(--navy);
}
.industry-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}

/* ============== GLOBAL MAP ============== */
.global {
  padding-bottom: 0;
}
.global-card {
  background: var(--white);
  padding: 60px 60px 50px;
  border: 1px solid var(--line-2);
  position: relative;
}
.global-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
}
.global-grid h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  text-transform: uppercase;
  line-height: 1;
}
.locations {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.loc {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.loc-pin {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}
.loc-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.loc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.map-wrap {
  position: relative;
  min-height: 460px;
}
.world-map { width: 100%; height: auto; }

/* ============== CASE STUDIES ============== */
.cases-head {
  display: flex; justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 40px;
}
.cases-head h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  text-transform: uppercase;
}
.cases-head h2 .accent { color: var(--orange); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: all 0.35s ease;
}
.case:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(11,42,82,0.25);
}
.case-img {
  height: 220px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.case-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.case:hover .case-img img { transform: scale(1.06); }
.case-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-body { padding: 26px 24px 28px; }
.case-meta {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex; gap: 14px;
}
.case-meta .dot { color: var(--orange); }
.case-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
  min-height: 64px;
}
.case-stat {
  display: flex; align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.case-stat .v {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--orange);
}
.case-stat .l {
  font-size: 12px;
  color: var(--muted);
}

/* ============== TESTIMONIAL ============== */
.quote-section {
  padding: 100px 0;
}
.quote-card {
  background: var(--navy);
  color: var(--white);
  padding: 80px 80px;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 280px; height: 280px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.9;
}
.quote-mark {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 100px;
  line-height: 0.6;
  color: var(--orange);
  margin-bottom: 20px;
}
.quote-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.quote-author {
  display: flex; align-items: center; gap: 18px;
  position: relative; z-index: 1;
}
.quote-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: grid; place-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}
.quote-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.quote-role {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ============== CTA ============== */
.cta {
  position: relative;
  padding: 120px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta h2 {
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
}
.cta h2 .accent { color: var(--orange); }
.cta-side {
  border-left: 3px solid var(--orange);
  padding-left: 32px;
}
.cta-side p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.cta-side .row {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cta-contact {
  display: flex; flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.cta-contact .item {
  display: flex; gap: 12px; align-items: center;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 500;
}
.cta-contact .item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer .logo-text .name { color: var(--white); }
.footer .logo-text .tag { color: rgba(255,255,255,0.5); }
.footer-about {
  margin-top: 22px;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.footer-social {
  display: flex; gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .ln { display: flex; gap: 24px; }

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1 !important; transform: translateY(0) !important; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

.reveal-x {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-x.in-view { opacity: 1 !important; transform: translateX(0) !important; }

/* Map dot animation */
.map-dot { animation: dotPulse 2.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.map-dot:nth-child(2) { animation-delay: 0.5s; }
.map-dot:nth-child(3) { animation-delay: 1s; }
.map-dot:nth-child(4) { animation-delay: 1.5s; }
.map-dot:nth-child(5) { animation-delay: 2s; }
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.map-arc {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.in-view .map-arc { stroke-dashoffset: 0 !important; }
.map-arc:nth-child(2) { transition-delay: 0.2s; }
.map-arc:nth-child(3) { transition-delay: 0.4s; }
.map-arc:nth-child(4) { transition-delay: 0.6s; }
.map-arc:nth-child(5) { transition-delay: 0.8s; }
.map-arc:nth-child(6) { transition-delay: 1s; }

/* ============== MENU TOGGLE (mobile) ============== */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block; height: 2px; width: 26px;
  background: var(--navy);
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-cta { display: none; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(11,42,82,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}
body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

/* ============== TABLET (≤1024px) ============== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* Header / nav */
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(86%, 380px); height: 100vh;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 110px 32px 40px;
    transition: right 0.45s cubic-bezier(0.65,0,0.35,1);
    z-index: 101;
    box-shadow: -16px 0 40px -16px rgba(0,0,0,0.2);
    overflow-y: auto;
    margin-left: 0;
  }
  body.menu-open .nav { right: 0 !important; }

  /* Disable horizontal slide-in for reveal-x on tablet/mobile */
  .reveal-x { transform: none !important; }
  .nav a {
    font-size: 17px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-2);
    letter-spacing: 0.06em;
  }
  .nav a.active::after { display: none; }
  .nav-cta {
    display: inline-flex;
    margin-top: 26px;
    padding: 14px 22px;
    font-size: 12px;
    align-self: flex-start;
    border-bottom: none !important;
  }
  .menu-toggle { display: block; margin-left: auto; position: relative; z-index: 102; }
  .header-cta { display: none; }
  .header-inner { gap: 0; }
  .logo { margin-right: auto; }

  /* Section layouts */
  .hero-grid, .about-grid, .cta-grid, .global-grid { grid-template-columns: 1fr; }
  .services-grid, .cases-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(3)::before { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .hero { padding: 110px 0 90px; }
  .hero-grid { gap: 50px; padding-top: 20px; }
  .hero-visual { height: 480px; margin-right: -28px; }
  .hero-capabilities { max-width: 100%; }

  .section-pad { padding: 90px 0; }

  .services-head, .industries-head {
    grid-template-columns: 1fr; gap: 24px; align-items: start;
  }
  .cases-head { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
  .services-head p, .industries-head p { justify-self: start; max-width: 540px; }

  .global-card { padding: 44px 32px; }
  .quote-card { padding: 60px 48px; }
  .cta { padding: 90px 0; }
}

/* ============== MOBILE (≤640px) ============== */
@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .header { padding: 14px 0; }
  .header.scrolled { padding: 10px 0; }
  .logo { gap: 10px; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-text .name { font-size: 17px; }
  .logo-text .tag { display: none; }

  .hero { padding: 96px 0 64px; }
  .hero-grid { gap: 32px; padding-top: 0; }
  .hero-copy { padding-top: 0; }
  .hero h1 { font-size: 44px; line-height: 0.98; }
  .hero p.lead { font-size: 15px; margin-top: 22px; }
  .hero-ctas { margin-top: 26px; gap: 10px; }
  .hero-ctas .btn { flex: 1; padding: 13px 16px; font-size: 11px; justify-content: center; }
  .hero-capabilities { grid-template-columns: 1fr 1fr; gap: 26px 16px; margin-top: 44px; }
  .cap-icon { width: 38px; height: 38px; margin-bottom: 10px; }
  .cap-icon svg { width: 30px; height: 30px; }
  .cap-title { font-size: 10.5px; }
  .cap-desc { font-size: 12px; }
  .hero-visual { height: 320px; margin-right: -20px; }
  .hero-slash-orange { width: 38px; height: 180px; left: 14%; }
  .hero-slash-white { width: 22px; height: 140px; left: 18%; }
  .hero-triangle { width: 64px; height: 64px; }

  .section-pad { padding: 64px 0; }
  .section-tag { font-size: 9px; padding: 6px 12px; letter-spacing: 0.16em; }

  .about-grid { gap: 36px; margin-top: 28px; }
  .about-grid h2 { font-size: 38px; }
  .about-rule { width: 56px; margin: 22px 0; }
  .about-grid p { font-size: 14.5px; }
  .about-visual { height: 320px; }
  .about-badge { padding: 16px 18px; max-width: 200px; bottom: -16px; left: -12px; }
  .about-badge .num { font-size: 36px; }
  .about-badge .lbl { font-size: 10px; }

  .stats { padding: 44px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .stat { gap: 12px; }
  .stat-icon { width: 32px; height: 32px; }
  .stat-icon svg { width: 28px; height: 28px; }
  .stat-num { font-size: 28px; }
  .stat-title { font-size: 10px; margin-top: 8px; letter-spacing: 0.1em; }
  .stat-desc { font-size: 11px; }

  .services-head h2 { font-size: 34px; }
  .services-head p { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 26px 22px 30px; }
  .svc-title { font-size: 18px; min-height: 0; }
  .svc-icon { width: 40px; height: 40px; }
  .svc-icon svg { width: 40px; height: 40px; }
  .svc-desc { font-size: 13.5px; }

  .process { padding: 64px 0; }
  .process h2 { font-size: 32px; }
  .process-intro { font-size: 14px; }
  .process-steps { grid-template-columns: 1fr; gap: 22px; margin-top: 40px; }
  .pstep { padding: 0; display: flex; gap: 18px; align-items: flex-start; }
  .pstep-dot { margin-bottom: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 13px; }
  .pstep > div:not(.pstep-dot), .pstep-title, .pstep-desc { flex: 1; }
  .pstep-title { font-size: 15px; margin-bottom: 4px; }
  .pstep-desc { font-size: 13px; padding-right: 0; }
  .process-bg { display: none; }

  .industries-head h2 { font-size: 34px; }
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .industry { padding: 20px 12px; }
  .industry-icon { width: 32px; height: 32px; margin-bottom: 12px; }
  .industry-icon svg { width: 32px; height: 32px; }
  .industry-name { font-size: 11px; }

  .global-card { padding: 32px 22px 28px; }
  .global-grid { gap: 28px; }
  .global-grid h2 { font-size: 28px; }
  .map-wrap { min-height: 220px; }
  .locations { margin-top: 28px; gap: 18px; }

  .cases-head h2 { font-size: 34px; }
  .cases-head { gap: 20px; }
  .cases-head .btn { width: 100%; justify-content: center; }
  .cases-grid { grid-template-columns: 1fr; gap: 18px; }
  .case-img { height: 200px; }
  .case-title { font-size: 17px; min-height: 0; }

  .quote-section { padding: 60px 0; }
  .quote-card { padding: 44px 28px; }
  .quote-mark { font-size: 64px; }
  .quote-text { font-size: 18px; }
  .quote-card::before { width: 140px; height: 140px; }
  .quote-avatar { width: 48px; height: 48px; font-size: 15px; }
  .quote-name { font-size: 14px; }
  .quote-role { font-size: 12px; }

  .cta { padding: 64px 0; }
  .cta-grid { gap: 32px; }
  .cta h2 { font-size: 42px; }
  .cta-side { border-left: none; padding-left: 0; border-top: 3px solid var(--orange); padding-top: 24px; }
  .cta-side .row { flex-direction: column; gap: 10px; }
  .cta-side .row .btn { width: 100%; justify-content: center; }
  .cta-contact .item { font-size: 12.5px; flex-wrap: wrap; }

  .footer { padding: 56px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; padding: 22px 0; }
  .footer-about { max-width: 100%; }
}

/* ============== VERY SMALL PHONES (≤380px) ============== */
@media (max-width: 380px) {
  .hero h1 { font-size: 38px; }
  .about-grid h2, .services-head h2, .industries-head h2, .cases-head h2 { font-size: 30px; }
  .cta h2 { font-size: 36px; }
  .stats-grid { grid-template-columns: 1fr; gap: 22px; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}
