/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

:root {
  --charcoal: #1A1A1A;
  --charcoal-mid: #242424;
  --charcoal-light: #2E2E2E;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gold: #0047AB;
  --gold-light: #1A5FC4;
  --blue: #0047AB;
  --blue-light: #1A5FC4;
  --texas: #BF0D3E;
  --texas-light: #D4234A;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
}

.btn-accent {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-accent:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-lg { padding: 17px 36px; font-size: 13px; }
.btn-xl { padding: 20px 48px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   SECTION LABELS / TAGS
═══════════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
}
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 600px;
}
.section-subtitle.light { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { padding-left: 0; }
.section-header.center .section-tag::before { display: none; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ═══════════════════════════════════════════════════
   TEXAS TOP STRIPE
═══════════════════════════════════════════════════ */
.texas-stripe {
  background: var(--texas);
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.texas-stripe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.texas-stripe span {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.texas-stripe i {
  font-size: 9px;
  margin-right: 4px;
}
@media (max-width: 700px) {
  .texas-stripe-inner { justify-content: center; }
  .texas-stripe-inner span:last-child { display: none; }
}

/* ═══════════════════════════════════════════════════
   STICKY HEADER
═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,10,10,0.0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.main-nav a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--white); }

.header-inner .btn {
  margin-left: 12px;
  flex-shrink: 0;
  font-size: 11px;
  padding: 11px 22px;
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 40px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--white); }
.mobile-cta { margin-top: 20px; width: fit-content; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,10,40,0.95) 0%,
    rgba(0,15,55,0.88) 50%,
    rgba(0,20,70,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(36px + var(--header-h) + 48px);
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ─── Hero Left (text) ────────────────────────────── */
.hero-left {
  display: flex;
  flex-direction: column;
}

/* ─── Hero Right — Dual vertical marquee ─────────── */
.hero-right {
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 0;
}

/* Marquee wrapper: two columns side by side */
.cards-marquee-wrapper {
  display: flex;
  gap: 16px;
  height: 600px;
  overflow: hidden;
  /* Fade top and bottom edges */
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
}

/* Each column */
.cards-col {
  display: flex;
  flex-direction: column;
  width: 310px;
  flex-shrink: 0;
  overflow: hidden;
}

/* The animated track inside each column */
.cards-track {
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* Column 1 scrolls upward */
.track-up {
  animation-name: scroll-up;
  animation-duration: 32s;
}

/* Column 2 scrolls downward — start offset so it feels different */
.track-down {
  animation-name: scroll-down;
  animation-duration: 28s;
  transform: translateY(-50%);
}

@keyframes scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes scroll-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

/* ─── Individual profile cards ───────────────────── */
.profile-card {
  position: relative;
  width: 310px;
  background: linear-gradient(145deg, rgba(0,12,48,0.97), rgba(0,24,70,0.94));
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 3px solid var(--texas);
  padding: 22px 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55), 0 3px 12px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

/* ─── Card internals ──────────────────────────────── */
.pc-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.pc-avatar {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50% !important;
  border: 3px solid rgba(0,71,171,0.5);
  flex-shrink: 0;
}

/* name + role column sits next to avatar */
.pc-info {
  flex: 1;
  min-width: 0;
}

.pc-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-role {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badge wraps to its own full-width row */
.pc-placed-badge {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #22c55e;
  padding: 6px 14px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pc-salary {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.3);
  border-left: 4px solid var(--texas);
}

.pc-was {
  font-family: var(--font-head);
  font-size: 15px;
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
  font-weight: 600;
}

.pc-arrow {
  color: rgba(255,255,255,0.18);
  font-size: 14px;
}

.pc-now {
  font-family: var(--font-head);
  font-size: 29px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pc-period {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.pc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-skill {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  background: rgba(0,71,171,0.18);
  border: 1px solid rgba(0,71,171,0.38);
  color: rgba(110,170,255,0.9);
  text-transform: uppercase;
}

.pc-employer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  font-weight: 500;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  line-height: 1.4;
}

.pc-employer i {
  color: rgba(0,71,171,0.65);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}


.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero-subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 36px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  margin-right: 40px;
  flex-shrink: 0;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.hero-scroll-indicator {
  position: absolute;
  right: 48px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.hero-scroll-indicator span {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ═══════════════════════════════════════════════════
   HERO CLIENTS BAR
═══════════════════════════════════════════════════ */
.hero-clients-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 8, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
  padding: 14px 0;
}
.hero-clients-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-clients-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  flex-shrink: 0;
}
/* Override marquee padding inside the hero bar */
.hero-marquee {
  padding-bottom: 0 !important;
  flex: 1;
  min-width: 0;
}
/* Push scroll indicator up above the clients bar */
.hero-scroll-indicator {
  bottom: 100px !important;
}

/* ═══════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.trust-logo-item:hover { color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════════════
   HERO LOCATION BADGE
═══════════════════════════════════════════════════ */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.hero-location i {
  color: var(--texas);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════
   KPI / STATS SECTION — INSPIRED BY DESIGN REFERENCE
═══════════════════════════════════════════════════ */
.kpi-section {
  background: #001F6B;
  padding: 80px 0 0;
  overflow: hidden;
}

/* Top 2-column header */
.kpi-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 72px;
}

.kpi-headline h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.kpi-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.kpi-intro p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.btn-kpi {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-kpi:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Stats row */
.kpi-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 60px 0;
}

.kpi-stat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 48px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.kpi-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.kpi-stat-number {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.kpi-number {
  font-family: var(--font-head);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.kpi-plus {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-left: 3px;
  opacity: 0.7;
}

.kpi-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 160px;
}

/* Logos label row */
.kpi-logos-row {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0 0;
}

.kpi-logos-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 24px;
}

/* Marquee strip */
.kpi-marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding-bottom: 40px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.kpi-marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: kpi-scroll 40s linear infinite;
}

.kpi-marquee-track img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s;
  flex-shrink: 0;
}
.kpi-marquee-track img:hover {
  opacity: 0.9;
}

@keyframes kpi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.kpi-marquee-wrap:hover .kpi-marquee-track {
  animation-play-state: paused;
}

/* ═══════════════════════════════════════════════════
   INDUSTRIES — NETFLIX HORIZONTAL SCROLL
═══════════════════════════════════════════════════ */
.industries { background: var(--off-white); overflow: hidden; }

.industries-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.industries-nav-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.ind-nav-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--charcoal);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ind-nav-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.ind-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  background: var(--white);
  color: var(--charcoal);
  border-color: rgba(0,0,0,0.12);
}

.industries-scroll-wrapper {
  padding-left: calc((100vw - 1280px) / 2 + 40px);
  overflow: hidden;
}
@media (max-width: 1360px) {
  .industries-scroll-wrapper { padding-left: 40px; }
}
@media (max-width: 900px) {
  .industries-scroll-wrapper { padding-left: 24px; }
}
@media (max-width: 600px) {
  .industries-scroll-wrapper { padding-left: 20px; }
}

.industries-track {
  display: flex;
  gap: 3px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding-right: 40px;
}

.industry-card {
  background: #060D1F;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
  width: 320px;
  height: 400px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,71,171,0.35);
}

.industry-img-wrap {
  position: relative;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover .industry-img-wrap {
  height: 160px;
}
.industry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}
.industry-card:hover .industry-img-wrap img { transform: scale(1.04); }
.industry-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.90) 0%,
    rgba(8,8,8,0.52) 45%,
    rgba(8,8,8,0.12) 100%
  );
}
.industry-img-overlay.blue {
  background: linear-gradient(
    to top,
    rgba(0,35,90,0.95) 0%,
    rgba(0,55,140,0.65) 45%,
    rgba(0,71,171,0.20) 100%
  );
}
.industry-img-overlay.texas {
  background: linear-gradient(
    to top,
    rgba(80,4,22,0.95) 0%,
    rgba(140,8,40,0.65) 45%,
    rgba(191,13,62,0.18) 100%
  );
}

.industry-body {
  flex: 1;
  min-height: 0;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  overflow: hidden;
}
.industry-icon {
  font-size: 18px;
  color: var(--gold);
}
.industry-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
/* Description: always in DOM but fades in as image slides up */
.industry-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  opacity: 0;
  transition: opacity 0.30s ease 0.15s;
}
.industry-card:hover .industry-body p {
  opacity: 1;
}
/* Link hidden by default, fades up on hover */
.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease 0.08s, transform 0.28s ease 0.08s, gap 0.2s;
}
.industry-card:hover .industry-link {
  opacity: 1;
  transform: translateY(0);
}
.industry-link:hover { gap: 14px; }

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services { background: var(--charcoal); }

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.services-left {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-left .btn { align-self: flex-start; }

.services-feature-img {
  margin-top: 16px;
  overflow: hidden;
}
.services-feature-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.3s;
}
.services-feature-img:hover img { filter: brightness(0.9); }

.services-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.service-item:first-child { padding-top: 0; }

.service-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(0, 71, 171, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  border: 1px solid rgba(0, 71, 171, 0.25);
}

.service-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.service-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.service-bullets li i {
  color: var(--gold-light);
  font-size: 11px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SUCCESS STORIES — BENTO GRID
═══════════════════════════════════════════════════ */
.success-stories { background: var(--off-white); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}

/* Card base */
.bento-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: filter 0.25s;
}
.bento-card:hover { filter: brightness(1.08); }

/* Sizes */
.bento-large {
  grid-column: span 2;
  min-height: 460px;
}
.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 460px;
}
.bento-small {
  grid-column: span 1;
  min-height: 280px;
}
.bento-wide {
  grid-column: span 2;
  min-height: 280px;
}

/* Background image — ALL cards now use images */
.bento-img-bg {
  position: absolute;
  inset: 0;
}
.bento-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlays — varied for visual interest */
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.65) 50%,
    rgba(8,8,8,0.25) 100%
  );
}
.bento-overlay-blue {
  background: linear-gradient(
    to top,
    rgba(0,35,90,0.97) 0%,
    rgba(0,55,140,0.75) 50%,
    rgba(0,71,171,0.35) 100%
  );
}
.bento-overlay-dark {
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.97) 0%,
    rgba(10,10,10,0.8) 45%,
    rgba(15,15,15,0.45) 100%
  );
}
.bento-overlay-texas {
  background: linear-gradient(
    to top,
    rgba(80,4,22,0.97) 0%,
    rgba(140,8,40,0.78) 45%,
    rgba(191,13,62,0.35) 100%
  );
}

/* Content */
.bento-content {
  position: relative;
  z-index: 1;
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: flex-end;
}

.bento-tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}

.bento-metric {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bento-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.bento-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 500px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7EB4FF;
  margin-top: 8px;
  transition: gap 0.2s;
}
.bento-link:hover { gap: 13px; }

/* Bento wide layout */
.bento-content-row {
  flex-direction: row;
  align-items: center;
  gap: 48px;
  justify-content: flex-start;
  padding: 40px 48px;
}
.bento-content-row .bento-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-content-row .bento-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.80);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta-banner-content h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-banner-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer { background: #111111; }

.footer-top { padding: 80px 0 72px; }

.footer-top-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
.footer-contact-item i {
  color: var(--gold-light);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 12px;
}

/* Footer link columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

/* Texas badge */
.footer-texas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(191, 13, 62, 0.12);
  border: 1px solid rgba(191, 13, 62, 0.25);
  padding: 7px 14px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texas-light);
  width: fit-content;
}
.footer-texas-badge i {
  font-size: 9px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-layout { grid-template-columns: 1fr; gap: 60px; }
  .services-left { position: static; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .kpi-header { grid-template-columns: 1fr; gap: 36px; padding-bottom: 56px; }
  .kpi-stats-row { grid-template-columns: repeat(2, 1fr); gap: 0; row-gap: 48px; }
  .kpi-stat:nth-child(3) { border-left: none; padding-left: 0; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; }
  .bento-tall { grid-column: span 2; grid-row: span 1; min-height: 320px; }
  .bento-wide { grid-column: span 2; }
  .bento-small { grid-column: span 1; }
  .bento-content-row { flex-direction: column; gap: 20px; }
  .main-nav { display: none; }
  .header-inner .btn { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { padding: 40px 40px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .industries-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .kpi-logos-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .kpi-logos { gap: 28px; }
  .kpi-stat { padding: 0 28px; }
  .kpi-stat:first-child { padding-left: 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-small { grid-column: span 1; grid-row: span 1; min-height: 280px; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-scroll-indicator { display: none; }
  .hero-headline { white-space: normal; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-right { display: none; }
  .trust-bar-inner { flex-direction: column; gap: 16px; }
  .kpi-section { padding: 56px 0 0; }
  .kpi-stats-row { grid-template-columns: 1fr 1fr; row-gap: 40px; padding: 40px 0; }
  .kpi-stat { padding: 0 20px; }
  .kpi-stat:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.18); padding-left: 20px; }
  .kpi-stat:first-child,
  .kpi-stat:nth-child(3) { border-left: none; padding-left: 0; }
  .industry-card { width: 270px; }
}
