:root {
  --blue:     #0f62fe;
  --blue-mid: #0043ce;
  --blue-dim: #edf4ff;
  --navy:     #061527;
  --navy-2:   #0c1f33;
  --black:    #161616;
  --gray-90:  #262626;
  --gray-70:  #525252;
  --gray-50:  #8d8d8d;
  --gray-20:  #e0e0e0;
  --gray-10:  #f4f4f4;
  --white:    #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════
   HEADER — white, clean, blue CTA
══════════════════════════════════════════ */

.header-bar {
  background: var(--white);
  border-bottom: 2px solid var(--gray-20);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}

/* Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.brand-wts {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-wts span {
  color: var(--blue);
}

.brand-divider {
  width: 2px;
  height: 28px;
  background: var(--gray-20);
  margin: 0 14px;
  align-self: center;
}

.brand-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-sub-top {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.01em;
}

.brand-sub-bottom {
  font-size: 0.62rem;
  color: var(--gray-50);
  letter-spacing: 0.03em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--gray-70);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--black);
  background: var(--gray-10);
}

.site-nav a:active {
  transform: scale(0.96);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--blue);
  font-weight: 600;
  padding: 10px 20px;
  margin-left: 8px;
  border-radius: 0;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-nav .nav-cta:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 82, 118, 0.16);
}

.site-nav .nav-cta:active {
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   HERO — full bleed image + overlay
══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroBgZoom 14s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,21,39,0.97) 0%,
    rgba(6,21,39,0.70) 40%,
    rgba(6,21,39,0.20) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px 88px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}

.eyebrow-light { color: rgba(255,255,255,0.55); }

/* Staggered entrance load animation for hero text elements */
.hero-copy > * {
  animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy .eyebrow { animation-delay: 0.2s; }

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 15ch;
  animation-delay: 0.4s;
}

.hero-text {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
  max-width: 50ch;
  animation-delay: 0.6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  animation-delay: 0.8s;
}

/* Hero Animations Keyframes */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes heroBgZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* Hero stat tiles — solid glassmorphism, no solid backgrounds */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; /* gap increased to allow hover transitions to breathe */
}

.hero-stat {
  background: rgba(6, 21, 39, 0.45); /* translucent dark navy */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 24px;
  animation: heroStatReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-stats .hero-stat:nth-child(1) { animation-delay: 0.7s; }
.hero-stats .hero-stat:nth-child(2) { animation-delay: 0.88s; }
.hero-stats .hero-stat:nth-child(3) { animation-delay: 1.06s; }
.hero-stats .hero-stat:nth-child(4) { animation-delay: 1.24s; }

.hero-stat:hover {
  background: rgba(6, 21, 39, 0.6);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.stat-value {
  display: block;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-top: 8px;
  line-height: 1;
}

.stat-value em {
  color: var(--blue);
  font-style: normal;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-radius: 0;
  white-space: nowrap;
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.button-primary   { color: var(--white); background: var(--blue); }
.button-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 82, 118, 0.25);
}
.button-primary:active {
  transform: translateY(0);
}

.button-outline   { color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,0.35); }
.button-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.button-outline:active {
  transform: translateY(0);
}

.button-blue-outline { color: var(--blue); background: transparent; border: 2px solid var(--blue); }
.button-blue-outline:hover {
  background: var(--blue-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 82, 118, 0.12);
}
.button-blue-outline:active {
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   WHO WE ARE — white section
══════════════════════════════════════════ */

.section-who { background: var(--white); border-bottom: 1px solid var(--gray-20); }

.section-who .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.who-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--black);
  margin: 16px 0 24px;
}

.who-copy p {
  font-size: 1.02rem;
  line-height: 1.74;
  color: var(--gray-70);
  max-width: 48ch;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-link:hover {
  color: var(--blue-mid);
  transform: translateX(6px);
}

.who-list {
  border-top: 3px solid var(--blue);
}

.who-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-20);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              border-bottom-color 0.5s ease;
}

.who-item:hover {
  transform: translateX(8px);
  border-bottom-color: var(--blue);
}

.who-item-num {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  padding-top: 3px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.who-item:hover .who-item-num {
  transform: scale(1.15);
}

.who-item-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--gray-70);
  transition: color 0.4s ease;
}

.who-item:hover .who-item-text {
  color: var(--black);
}

/* ══════════════════════════════════════════
   CAPABILITIES — dark, SOLID cards
══════════════════════════════════════════ */

.section-capabilities { background: var(--navy); }

.section-capabilities .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-capabilities .section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.section-head-left h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
  margin-top: 16px;
}

.section-head-right p {
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
}

/* Solid cards — no glass */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.cap-card {
  background: var(--navy-2);
  border-top: 3px solid transparent;
  padding: 40px 36px 44px;
  transition: border-color 0.45s ease,
              background-color 0.45s ease,
              transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.45s ease;
}

.cap-card:hover {
  border-top-color: var(--blue);
  background: #0d2847;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Light section capability cards (Trading Divisions) */
.section-who .cap-card {
  background: var(--gray-10);
  border: 1px solid var(--gray-20);
  border-top: 3px solid transparent;
}

.section-who .cap-card h3 {
  color: var(--black) !important;
}

.section-who .cap-card p {
  color: var(--gray-70) !important;
}

.section-who .cap-card:hover {
  background: var(--white);
  border-color: var(--gray-20);
  border-top-color: var(--blue);
  box-shadow: 0 12px 30px rgba(6, 21, 39, 0.06);
}

/* ══════════════════════════════════════════
   PRODUCT PORTFOLIO (divisions.html)
   ══════════════════════════════════════════ */

#product-portfolio {
  padding-block: 96px;
}

#product-portfolio .inner {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding-block: 0;
  padding-inline: 48px;
}

#product-portfolio .section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-20);
}

#product-portfolio .section-head-left h2 {
  color: var(--black);
  margin: 0;
}

#product-portfolio .section-head-right p {
  color: var(--gray-70);
  margin: 0;
}

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

#product-portfolio .cap-card {
  display: flex;
  flex-direction: column;
}

#product-portfolio .cap-card h3 {
  color: var(--black);
  font-size: 1.22rem;
  margin-top: 0;
}

#product-portfolio .cap-card p {
  color: var(--gray-70);
  margin-bottom: 24px;
  flex: 1;
}

#product-portfolio .division-brands {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-20);
  padding-top: 16px;
  margin-top: auto;
}

#product-portfolio .division-brands span {
  font-size: 0.72rem;
  font-weight: 700;
}

#product-portfolio .division-brands span.label {
  color: var(--gray-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#product-portfolio .division-brands span.partners {
  color: var(--black);
}

@media (max-width: 1100px) {
  #product-portfolio .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  #product-portfolio {
    padding-block: 56px;
  }

  #product-portfolio .inner {
    padding-inline: 20px;
  }

  #product-portfolio .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  #product-portfolio .cap-grid {
    grid-template-columns: 1fr;
  }
}

.cap-card .cap-number {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cap-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cap-card p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════
   SECTORS — full bleed image
══════════════════════════════════════════ */

.section-sectors {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-sectors .bg { position: absolute; inset: 0; }
.section-sectors .bg img { width: 100%; height: 100%; object-fit: cover; }

.section-sectors .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,21,39,0.96) 38%,
    rgba(6,21,39,0.50) 100%
  );
}

.section-sectors .inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 48px;
  width: 100%;
}

.section-sectors h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
  max-width: 14ch;
  margin: 16px 0 0;
}

.sector-desc {
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.6);
  max-width: 50ch;
  margin-top: 20px;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.sector-tags span {
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.35s ease,
              color 0.35s ease,
              background-color 0.35s ease,
              transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.sector-tags span:hover {
  border-color: var(--blue);
  color: var(--white);
  background-color: rgba(26, 82, 118, 0.25);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   BRANDS — white section, logo grid
══════════════════════════════════════════ */

.section-brands { background: var(--white); border-top: 1px solid var(--gray-20); }

.section-brands .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px;
}

.brands-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-20);
  gap: 40px;
}

.brands-header-left .eyebrow { margin-bottom: 12px; }

.brands-header-left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}

.brands-header-right p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-70);
  max-width: 38ch;
  text-align: right;
}

.brands-count {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--gray-20);
}

.brand-tile {
  border-right: 1px solid var(--gray-20);
  border-bottom: 1px solid var(--gray-20);
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  transition: background 0.14s;
}

.brand-tile:hover { background: var(--gray-10); }

.brand-tile img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 64px; /* Fills the container box nicely without overflowing */
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply; /* Blends the solid white background of the logo images seamlessly with the tiles (even on hover) */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-tile:hover img {
  transform: scale(1.06); /* Subtle zoom effect on hover for premium feel */
}

.brand-tile .brand-fallback {
  display: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-70);
  text-align: center;
  line-height: 1.3;
}

.brand-tile:hover .brand-fallback { color: var(--blue); }

/* Remove double borders on right/bottom edges */
.brand-tile:nth-child(6n) { border-right: none; }

/* ══════════════════════════════════════════
   CTA SECTION — dark split
══════════════════════════════════════════ */

.section-cta { background: var(--navy); }

.section-cta .inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.cta-image { position: relative; overflow: hidden; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }

.cta-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--navy));
}

.cta-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy .eyebrow { margin-bottom: 20px; }

.cta-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-copy p {
  font-size: 1rem;
  line-height: 1.74;
  color: rgba(255,255,255,0.5);
  max-width: 44ch;
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════
   FOOTER — clean light
══════════════════════════════════════════ */

.site-footer { background: var(--gray-10); border-top: 1px solid var(--gray-20); }

.footer-top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  border-bottom: 1px solid var(--gray-20);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.footer-wts {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
}

.footer-wts span { color: var(--blue); }

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--gray-70);
  max-width: 30ch;
  margin-bottom: 20px;
}

.footer-contact-line {
  font-size: 0.85rem;
  color: var(--gray-70);
  line-height: 1.9;
}

.footer-contact-line a {
  color: var(--blue);
  text-decoration: none;
}

.footer-contact-line a:hover { text-decoration: underline; }

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

.footer-col a {
  display: block;
  color: var(--gray-70);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-20);
  transition: color 0.35s ease, padding-left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-col a:hover {
  color: var(--blue);
  padding-left: 6px;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-50);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-50);
  text-decoration: none;
}

.footer-bottom-links a:hover { color: var(--black); }

/* ══════════════════════════════════════════
   HAMBURGER + MOBILE MENU
══════════════════════════════════════════ */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--gray-20);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 199;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 18px 24px;
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-20);
  transition: background-color 0.3s ease,
              color 0.3s ease,
              padding-left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu a:hover {
  background-color: var(--gray-10);
  color: var(--blue);
  padding-left: 32px;
}

.mobile-menu .mobile-cta {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  border-bottom: none;
  padding: 20px 24px;
  transition: background-color 0.3s ease,
              color 0.3s ease;
}

.mobile-menu .mobile-cta:hover {
  background: var(--blue-mid);
  color: var(--white);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { max-width: 440px; }
  .section-who .inner { grid-template-columns: 1fr; gap: 48px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .brand-tile:nth-child(6n) { border-right: 1px solid var(--gray-20); }
  .brand-tile:nth-child(4n) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brands-header { flex-direction: column; align-items: flex-start; }
  .brands-header-right p { text-align: left; }
}

@media (max-width: 860px) {
  .header-inner { padding: 0 20px; }
  .brand-sub { display: none; }
  .brand-divider { display: none; }
  .site-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero — align to top on mobile so nothing is cut off */
  .hero { align-items: flex-start; min-height: 100svh; }
  .hero-content {
    padding: 40px 20px 48px;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); max-width: none; }
  .hero-text { font-size: 0.97rem; }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    width: 100%;
  }

  .section-sectors .inner { padding-left: 20px; padding-right: 20px; }
  .section-brands .inner { padding-left: 20px; padding-right: 20px; }
  .section-who .inner,
  .section-capabilities .inner { padding: 56px 20px; }
  .section-capabilities .section-head { grid-template-columns: 1fr; gap: 20px; }
  .cap-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-tile:nth-child(4n) { border-right: 1px solid var(--gray-20); }
  .brand-tile:nth-child(3n) { border-right: none; }
  .section-cta .inner { grid-template-columns: 1fr; }
  .cta-image { min-height: 280px; }
  .cta-copy { padding: 48px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 48px 20px 32px; }
  .footer-bottom { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; justify-content: center; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-tile:nth-child(3n) { border-right: 1px solid var(--gray-20); }
  .brand-tile:nth-child(2n) { border-right: none; }
  .footer-top { grid-template-columns: 1fr; }
  .mobile-menu { top: 72px; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL / SECTION LOADING ANIMATIONS
══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Custom SVG Logos */
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
}
