/* ============================================================
   International 3PL v2 — Main Stylesheet
   Inspired by boliviatrading.com design language
   ============================================================ */

/* ── Google Fonts loaded in functions.php ── */

/* ── Design Tokens ── */
:root {
  /* Bolivia Trading–inspired palette adapted for 3PL */
  --blue:         #006BA1;      /* primary accent — brand blue */
  --blue-dark:    #004f78;
  --blue-light:   #58A6E1;
  --blue-pale:    #e8f3f9;
  --navy:         #1a2332;      /* dark text / footer */
  --navy-mid:     #2c3e50;
  --white:        #ffffff;
  --off-white:    #f8f9fa;
  --gray-lt:      #edf0f2;
  --gray-mid:     #b0bec5;
  --gray-dark:    #607d8b;
  --text-body:    #3d4f5c;
  --text-muted:   #7f97a8;
  --gold:         #f39c12;

  /* Typography */
  --font-head:    'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max-w:        1200px;
  --radius:       6px;
  --radius-lg:    14px;
  --shadow:       0 2px 16px rgba(26,35,50,0.1);
  --shadow-hover: 0 6px 28px rgba(26,35,50,0.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
ul { list-style: none; padding: 0; margin: 0; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .72rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,107,161,.35);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

/* ── Section helpers ── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title span { color: var(--blue); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}
.divider-red {
  width: 52px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin: .75rem 0 1.5rem;
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: .45rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.top-bar-item:hover { color: var(--white); }
.top-bar-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar-social {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.top-bar-social a {
  width: 24px; height: 24px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 700;
  transition: all .2s;
  text-transform: uppercase;
}
.top-bar-social a:hover {
  background: var(--blue);
  color: var(--white);
}

/* ============================================================
   HEADER / LOGO BAR
   ============================================================ */
.logo-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  padding: 1rem 0;
}
.logo-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.site-logo img {
  height: 60px;
  width: auto;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
}
.site-logo-name {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.site-logo-name span { color: var(--blue); }
.site-logo-sub {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .2rem;
}
.logo-bar-contact {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo-contact-item {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.logo-contact-icon {
  width: 42px; height: 42px;
  background: var(--blue-pale);
  border: 1.5px solid rgba(0,107,161,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.logo-contact-icon svg { width: 18px; height: 18px; }
.logo-contact-label {
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: .18rem;
}
.logo-contact-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: .02em;
  transition: color .2s;
}
.logo-contact-item:hover .logo-contact-value { color: var(--blue); }
.logo-bar-cta {
  flex-shrink: 0;
}

/* ============================================================
   PRIMARY NAV
   ============================================================ */
#site-nav {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 12px rgba(0,107,161,.25);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: stretch;
  overflow: visible;
}
.nav-inner > ul {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  overflow: visible;
}
.nav-inner > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-inner > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0 1.1rem;
  height: 52px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  transition: all .2s;
  border-bottom: 3px solid transparent;
}
.nav-inner > ul > li > a:hover,
.nav-inner > ul > li.current-menu-item > a {
  background: rgba(0,0,0,.15);
  color: var(--white);
  border-bottom-color: var(--white);
}

/* Dropdown */
.nav-inner .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 32px rgba(26,35,50,.18);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  list-style: none;
  padding: .4rem 0;
}
.nav-inner li.dropdown-open > .sub-menu,
.nav-inner li:focus-within > .sub-menu {
  display: block;
}
.nav-inner .sub-menu li a {
  display: block;
  padding: .62rem 1.2rem;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text-body);
  border-left: 3px solid transparent;
  transition: all .18s;
}
.nav-inner .sub-menu li a:hover {
  color: var(--blue);
  border-left-color: var(--blue);
  background: var(--blue-pale);
  padding-left: 1.5rem;
}

/* Parent arrow */
.nav-inner > ul > li:has(> .sub-menu) > a::after {
  content: ' ▾';
  font-size: .65rem;
  opacity: .7;
  margin-left: 3px;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav-quote-btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}
.nav-quote-btn a {
  font-family: var(--font-head);
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--blue);
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 400;
  transition: all .2s;
  white-space: nowrap;
}
.nav-quote-btn a:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26,35,50,.92) 0%, rgba(26,35,50,.65) 55%, rgba(0,107,161,.18) 100%),
    url('') center/cover no-repeat;
  /* SVG pattern as bg texture */
  background-color: var(--navy);
}
/* Diagonal red accent stripe */
.hero-stripe {
  position: absolute;
  top: 0; right: -60px; bottom: 0;
  width: 420px;
  background: var(--blue);
  transform: skewX(-8deg);
  opacity: .08;
  pointer-events: none;
}
.hero-stripe-2 {
  position: absolute;
  top: 0; right: 60px; bottom: 0;
  width: 6px;
  background: var(--blue);
  opacity: .5;
  pointer-events: none;
}
/* Dot grid overlay */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--blue); }
/* Red underline accent */
.hero-underline {
  width: 64px; height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-contact-highlights {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .925rem;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.hero-contact-item:hover { color: var(--white); }
.hero-contact-item svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.hero-contact-item strong {
  color: var(--white);
  font-size: 1rem;
}

/* Hero card panel */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 12px 48px rgba(0,0,0,.25);
}
.hero-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gray-lt);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-card h3 span { color: var(--blue); }
.hero-card-services {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.hero-card-service {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .85rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  transition: all .2s;
  font-size: .9rem;
  color: var(--text-body);
}
.hero-card-service:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
  transform: translateX(4px);
}
.hero-card-service svg {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--blue);
  padding: 2.5rem 0;
}
.stats-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
}
.stat-box {
  background: var(--blue);
  padding: 1.5rem 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: .02em;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .35rem;
  line-height: 1.4;
}

/* ============================================================
   ABOUT / INTRO STRIP
   ============================================================ */
.about-strip {
  background: var(--off-white);
  border-bottom: 3px solid var(--blue);
  padding: 3rem 0;
}
.about-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-strip-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .5rem;
}
.about-strip-content p {
  color: var(--text-muted);
  font-size: 1.0125rem;
  line-height: 1.72;
  margin-bottom: 0;
}
.about-strip-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-body);
}
.about-point-icon {
  width: 22px; height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about-point-icon svg { width: 12px; height: 12px; color: white; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 4.5rem 0;
  background: var(--white);
}
.services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-header .divider-red { margin: .75rem auto 1.5rem; }
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .28s ease;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(0,107,161,.25);
}
.service-card-top {
  background: var(--navy);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.service-card-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.service-card-icon svg { width: 24px; height: 24px; }
.service-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
}
.service-card-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-desc {
  font-size: .9125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.service-bullets {
  list-style: none;
  margin-bottom: 1.25rem;
}
.service-bullets li {
  font-size: .85rem;
  color: var(--text-body);
  padding: .3rem 0 .3rem 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--gray-lt);
}
.service-bullets li:last-child { border-bottom: none; }
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.service-card-footer {
  padding: 0 1.5rem 1.5rem;
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap .2s;
}
.service-card-link:hover { gap: .85rem; }
.service-card-link svg { width: 14px; height: 14px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--navy);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.how-it-works-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.how-header {
  text-align: center;
  margin-bottom: 3rem;
}
.how-header .section-title { color: var(--white); }
.how-header .section-label { color: rgba(255,255,255,.5); }
.how-header .divider-red { margin: .75rem auto 1.25rem; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0, var(--blue) 10px, transparent 10px, transparent 20px);
  z-index: 1;
}
.step-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 1.25rem;
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 2px var(--blue);
}
.step-box h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .65rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.step-box p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TECHNOLOGY / AI STRIP
   ============================================================ */
.tech-strip {
  background: var(--off-white);
  padding: 4.5rem 0;
  border-top: 1px solid var(--gray-lt);
}
.tech-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tech-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.metric-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border-top: 4px solid var(--blue);
}
.metric-val {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .35rem;
}
.metric-lbl {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
  padding: 4.5rem 0;
  background: var(--white);
}
.industries-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.industries-header { text-align: center; margin-bottom: 3rem; }
.industries-header .divider-red { margin: .75rem auto 1.25rem; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.industry-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
}
.industry-card:hover { transform: translateY(-3px); }
.industry-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.industry-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .65rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.industry-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--blue);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin: 0;
  max-width: 520px;
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-end;
  flex-shrink: 0;
}
.cta-band-contact {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cta-contact-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .975rem;
  font-weight: 600;
  color: var(--white);
  padding: .55rem 1rem;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  transition: all .2s;
  white-space: nowrap;
}
.cta-contact-link:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.cta-contact-link svg { width: 16px; height: 16px; }

/* ============================================================
   TOOLS / RESOURCES
   ============================================================ */
.tools {
  padding: 4.5rem 0;
  background: var(--off-white);
}
.tools-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.tools-header { text-align: center; margin-bottom: 3rem; }
.tools-header .divider-red { margin: .75rem auto 1.25rem; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.tools-col {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tools-col-head {
  background: var(--navy);
  padding: 1rem 1.25rem;
  font-family: var(--font-head);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.tools-col-head svg { width: 16px; height: 16px; color: var(--blue); }
.tools-col-body {
  padding: 1rem 0;
}
.tools-col-body a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.25rem;
  font-size: .875rem;
  color: var(--text-body);
  border-left: 3px solid transparent;
  transition: all .18s;
}
.tools-col-body a:hover {
  color: var(--blue);
  border-left-color: var(--blue);
  background: var(--blue-pale);
  padding-left: 1.5rem;
}
.tools-col-body a svg { width: 13px; height: 13px; color: var(--blue); flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding-top: 3.5rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .6rem;
}
.footer-brand-logo span { color: var(--blue); }
.footer-brand-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-contacts { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  transition: color .2s;
}
.footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-phone { color: var(--blue); font-weight: 600; font-size: 1rem; }
.footer-phone:hover { color: #58A6E1; }
.footer-email { color: rgba(255,255,255,.55); }
.footer-email:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-weight: 400;
}
.footer-col ul li + li { margin-top: .4rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-col ul li a:hover { color: var(--blue); }
.footer-col ul li a::before {
  content: '›';
  color: var(--blue);
  font-size: 1rem;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--blue); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.in-view { animation: fadeUp .5s ease forwards; }
.fade-up:nth-child(2) { animation-delay: .08s; }
.fade-up:nth-child(3) { animation-delay: .16s; }
.fade-up:nth-child(4) { animation-delay: .24s; }
.fade-up:nth-child(5) { animation-delay: .32s; }
.fade-up:nth-child(6) { animation-delay: .40s; }
.fade-up:nth-child(7) { animation-delay: .48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tech-strip-inner { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .logo-bar-contact { display: none; }
  .top-bar-right { display: none; }
  .nav-inner > ul { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { justify-content: space-between; padding: 0 1rem; }
  .nav-quote-btn { padding: .5rem 0; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { align-items: center; }
  .cta-band-contact { justify-content: center; }
  .hero-contact-highlights { flex-direction: column; gap: .85rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logo-bar-cta { display: none; }
  .about-strip-points { grid-template-columns: 1fr; }
  .tech-metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .metric-card { padding: 1.25rem .75rem; }
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
}

/* Mobile nav open state */
@media (max-width: 860px) {
  .nav-inner > ul.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 52px; left: 0; right: 0;
    background: var(--navy);
    z-index: 9998;
    padding: .5rem 0 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    border-top: 3px solid var(--blue);
    max-height: calc(100vh - 52px);
    overflow-y: auto;
  }
  .nav-inner > ul.nav-open > li > a {
    height: auto;
    padding: .85rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.85);
    font-size: .95rem;
  }
  .nav-inner .sub-menu {
    position: static;
    border-top: none;
    border-left: 3px solid var(--blue);
    margin-left: 1.5rem;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
}
