/* ============================================================
   TRUXPRO LOGISTICS — DESIGN SYSTEM
   Concept: "The Route Line" — a highway/route motif (dashed lines,
   mile-marker numerals, mono data type) ties the brand to what the
   company actually does: plan a route, move cargo, deliver on time.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  /* Color */
  --white:        #FFFFFF;
  --off-white:    #F5F7FA;
  --line:         #E2E7EE;
  --ink:          #0F2138;      /* primary text / near-black navy */
  --ink-soft:     #4A5A70;      /* secondary text */
  --route-blue:   #173E72;      /* brand primary */
  --route-blue-d: #0C2547;      /* brand primary, dark */
  --amber:        #E9821D;      /* accent / CTA — signal amber */
  --amber-d:      #C76A0F;
  --teal:         #257A6D;      /* live/tracking accent, used sparingly */
  --amber-tint:   #FDF1E4;
  --blue-tint:    #EDF2F9;

  /* Type */
  --f-display: 'Big Shoulders Display', sans-serif;
  --f-body: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
  --f-mono: 'IBM Plex Mono', monospace;

  /* Layout */
  --maxw: 1240px;
  --radius: 10px;
  --shadow: 0 12px 30px -12px rgba(15,33,56,0.16);
  --shadow-sm: 0 4px 14px -6px rgba(15,33,56,0.14);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 84px; }
body{
  margin:0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
.container{ max-width: var(--maxw); margin:0 auto; padding: 0 24px; }

h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: var(--route-blue-d);
}
h1{ font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight:800; }
h2{ font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3{ font-size: 1.4rem; text-transform:none; letter-spacing:0; }
p{ margin:0 0 16px; color: var(--ink-soft); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-d);
  background: var(--amber-tint);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px; border-radius:50%;
  background: var(--amber);
}

:focus-visible{ outline: 3px solid var(--amber); outline-offset: 2px; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--amber); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--amber-d); }
.btn-outline{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover{ background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-ghost{ background: transparent; color: var(--route-blue); border-color: var(--route-blue); }
.btn-ghost:hover{ background: var(--route-blue); color: var(--white); }
.btn-block{ width:100%; }

/* ============ HEADER ============ */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height: 78px;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo-mark{ width:34px; height:34px; flex-shrink:0; }
.logo-text{
  font-family: var(--f-display);
  font-weight:800; font-size:1.5rem;
  color: var(--route-blue-d);
  letter-spacing: 0.01em;
  line-height:1;
}
.logo-text span{ color: var(--amber); }
.logo-sub{ font-family: var(--f-mono); font-size:0.62rem; letter-spacing:0.16em; color: var(--ink-soft); text-transform:uppercase; display:block; margin-top:2px;}

.nav-links{ display:flex; align-items:center; gap:4px; }
.nav-links a{
  padding: 10px 13px; font-weight:600; font-size:0.9rem;
  color: var(--ink); border-radius:6px; position:relative;
  white-space: nowrap;
}
.nav-links a:hover{ color: var(--route-blue); }
.nav-actions{ display:flex; align-items:center; gap:12px; }
.nav-phone{
  display:flex; align-items:center; gap:8px;
  font-family: var(--f-mono); font-weight:600; font-size:0.9rem;
  color: var(--route-blue-d);
}
.nav-phone svg{ width:18px; height:18px; stroke: var(--amber); }
.menu-toggle{ display:none; background:none; border:0; padding:8px; }
.menu-toggle svg{ width:26px; height:26px; }

@media (max-width: 1180px){
  /* backdrop-filter on .site-header creates a CSS "containing block" for any
     position:fixed descendant, which trapped the mobile menu inside the
     78px-tall header instead of letting it cover the screen. Dropping the
     blur on mobile (where it isn't needed anyway) fixes the stuck menu. */
  .site-header{ backdrop-filter:none; background: var(--white); }
  .nav-links{
    position: fixed; inset: 78px 0 0 0; background: var(--white);
    flex-direction:column; align-items:stretch; padding: 12px 24px 24px;
    transform: translateY(-8px); opacity:0; pointer-events:none;
    transition: all .2s ease; overflow-y:auto; z-index:400;
  }
  .nav-links.open{ transform:none; opacity:1; pointer-events:auto; }
  .nav-links a{ padding:14px 6px; border-bottom:1px solid var(--line); }
  .nav-phone{ display:none; }
  .menu-toggle{ display:block; }
}

/* ============ HERO ============ */
.hero{
  position:relative; overflow:hidden;
  background: linear-gradient(180deg, var(--route-blue-d) 0%, var(--route-blue) 100%);
  color: var(--white);
  padding: 96px 0 0;
}
.hero .container{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items:center;
  padding-bottom: 70px;
}
.hero-eyebrow{
  font-family: var(--f-mono); font-size:0.78rem; letter-spacing:0.16em;
  text-transform:uppercase; color: var(--amber);
  display:flex; align-items:center; gap:10px; margin-bottom:22px;
}
.hero-eyebrow::before{ content:""; width:34px; height:2px; background: var(--amber); }
.hero h1{ color: var(--white); margin-bottom:20px; }
.hero p.lead{ color: rgba(255,255,255,0.82); font-size:1.12rem; max-width:520px; margin-bottom:32px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; }

.hero-stats{
  display:grid; grid-template-columns: repeat(3,1fr); gap:0;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
}
.hero-stat b{
  display:block; font-family: var(--f-mono); font-size:1.7rem; font-weight:600;
  color: var(--white);
}
.hero-stat span{ font-size:0.78rem; color: rgba(255,255,255,0.65); text-transform:uppercase; letter-spacing:0.06em; }

.hero-visual{ position:relative; aspect-ratio: 4/5; border-radius:18px; overflow:hidden; }
.route-graphic{ width:100%; height:100%; display:block; }

/* Real photo, if images/hero-photo.jpg exists, sits on top of the route
   graphic and covers it automatically (see onload/onerror below). */
.hero-photo{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center; display:block;
}

.hero-photo-note{
  position:absolute; inset:auto 0 0 0; text-align:center;
  font-family: var(--f-mono); font-size:0.68rem; color: rgba(255,255,255,0.55);
  background: rgba(12,37,71,0.55); padding:6px 0;
}

/* moving truck along dashed route */
.route-dash{
  stroke-dasharray: 10 10;
  animation: dash-move 2.4s linear infinite;
}
@media (prefers-reduced-motion: reduce){ .route-dash{ animation:none; } }
@keyframes dash-move{ to{ stroke-dashoffset: -40; } }

/* ============ SECTIONS shared ============ */
section{ padding: 96px 0; }
.section-alt{ background: var(--off-white); }
.section-head{ max-width: 720px; margin-bottom: 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ font-size:1.06rem; }

/* ============ ABOUT ============ */
.about-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:64px; align-items:start; }
.about-copy p{ font-size:1.02rem; }
.about-highlights{ display:grid; gap:18px; margin-top: 8px; }
.about-highlight{ display:flex; gap:14px; padding:18px; background:var(--white); border:1px solid var(--line); border-radius: var(--radius); }
.about-highlight .num{ font-family: var(--f-mono); color: var(--amber); font-weight:600; font-size:0.85rem; flex-shrink:0; }

/* ============ SERVICES ============ */
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{ box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon{
  width:54px; height:54px; border-radius:10px; background: var(--blue-tint);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.service-icon svg{ width:28px; height:28px; stroke: var(--route-blue); }
.service-card h3{ font-family: var(--f-display); text-transform:uppercase; font-size:1.3rem; color:var(--route-blue-d); }
.service-list{ margin-top: 18px; display:grid; gap:10px; }
.service-list li{ display:flex; gap:10px; font-size:0.92rem; color: var(--ink-soft); }
.service-list li::before{ content:"—"; color: var(--amber); flex-shrink:0; }

/* ============ INDUSTRIES ============ */
.industries-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.industry-card{
  padding: 24px 20px; border-radius: var(--radius); background: var(--white);
  border:1px solid var(--line); text-align:left;
}
.industry-card .ic{ width:36px; height:36px; margin-bottom:14px; stroke: var(--amber); }
.industry-card h4{ font-family: var(--f-body); text-transform:none; font-size:1rem; font-weight:700; margin-bottom:6px; color:var(--ink); }
.industry-card p{ font-size:0.86rem; margin:0; }

/* ============ PROCESS (route line) ============ */
.process{ position:relative; }
.process-track{
  position:relative; display:grid; grid-template-columns: repeat(4,1fr); gap:0;
  margin-top: 40px;
}
.process-line{
  position:absolute; top:26px; left:6%; right:6%; height:2px;
  background-image: linear-gradient(to right, var(--line) 0 10px, transparent 10px 20px);
  background-size: 20px 2px; z-index:0;
}
.process-step{ position:relative; z-index:1; padding: 0 18px; text-align:left; }
.process-marker{
  width:52px; height:52px; border-radius:50%; background: var(--route-blue-d);
  color: var(--white); font-family: var(--f-mono); font-weight:600; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  box-shadow: 0 0 0 6px var(--white);
}
.process-step:nth-child(1) .process-marker{ background: var(--amber); }
.process-step h4{ font-size:1.05rem; margin-bottom:8px; color: var(--route-blue-d); }
.process-step p{ font-size:0.9rem; }

@media (max-width: 900px){
  .process-track{ grid-template-columns:1fr; gap:32px; }
  .process-line{ display:none; }
}

/* ============ GALLERY ============ */
.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 30px; }
.gfilter{
  padding: 9px 18px; border-radius:999px; border:1px solid var(--line);
  background: var(--white); font-size:0.86rem; font-weight:600; color: var(--ink-soft);
  transition: all .15s ease;
}
.gfilter.active, .gfilter:hover{ background: var(--route-blue-d); color:var(--white); border-color: var(--route-blue-d); }

.gallery-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px;
}
.gitem{
  position:relative; overflow:hidden; border-radius: 8px; cursor:pointer;
  background: var(--blue-tint);
}
.gitem img{ width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.gitem:hover img{ transform: scale(1.06); }
.gitem .gcap{
  position:absolute; left:0; right:0; bottom:0; padding: 10px 12px 8px;
  background: linear-gradient(to top, rgba(12,37,71,0.82), transparent);
  color:var(--white); font-size:0.78rem; font-weight:600;
  opacity:0; transition: opacity .2s ease;
}
.gitem:hover .gcap{ opacity:1; }
.gitem.tall{ grid-row: span 2; }
.gitem.wide{ grid-column: span 2; }
.gallery-empty{
  grid-column: 1/-1; text-align:center; padding: 60px 20px; color: var(--ink-soft);
  border:1.5px dashed var(--line); border-radius: var(--radius); font-family: var(--f-mono); font-size:0.85rem;
}
.gallery-more{ text-align:center; margin-top: 34px; }

@media (max-width: 980px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows:160px; } }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; background: rgba(10,20,35,0.92); z-index:1000;
  display:none; align-items:center; justify-content:center; padding: 40px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width: 92vw; max-height: 82vh; border-radius:8px; }
.lightbox-cap{ position:absolute; bottom:30px; left:0; right:0; text-align:center; color:#fff; font-family: var(--f-mono); font-size:0.85rem; }
.lightbox-close, .lightbox-nav{
  position:absolute; background: rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.3);
  color:#fff; width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.lightbox-close{ top:24px; right:24px; }
.lightbox-nav.prev{ left:24px; top:50%; transform:translateY(-50%); }
.lightbox-nav.next{ right:24px; top:50%; transform:translateY(-50%); }
.lightbox-close:hover, .lightbox-nav:hover{ background: rgba(255,255,255,0.22); }

/* ============ CLIENTS ============ */
.clients-strip{
  display:grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items:center;
}
.client-logo{
  border:1px solid var(--line); border-radius: var(--radius); background: var(--white);
  height: 92px; display:flex; align-items:center; justify-content:center; padding: 14px;
  filter: grayscale(1); opacity:0.7; transition: all .2s ease;
}
.client-logo:hover{ filter:none; opacity:1; box-shadow: var(--shadow-sm); }
.client-logo span{ font-family: var(--f-mono); font-size:0.72rem; color: var(--ink-soft); text-align:center; }
.clients-note{ margin-top:26px; text-align:center; font-size:0.86rem; color: var(--ink-soft); font-family: var(--f-mono); }

@media (max-width: 980px){ .clients-strip{ grid-template-columns: repeat(3,1fr); } }

/* ============ LEADERSHIP / WHY ============ */
.leader-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items:center; }
.leader-card{
  background: var(--route-blue-d); color:var(--white); border-radius: var(--radius);
  padding: 40px; position:relative; overflow:hidden;
}
.leader-card::before{
  content:""; position:absolute; inset:0; opacity:0.08;
  background-image: repeating-linear-gradient(135deg, #fff 0 2px, transparent 2px 22px);
}
.leader-list{ display:grid; gap:14px; margin-top:22px; }
.leader-list li{ display:flex; gap:12px; font-size:0.94rem; color: var(--ink-soft); }
.leader-list li::before{ content:"✓"; color: var(--teal); font-weight:700; flex-shrink:0; }

.why-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.why-card{ padding: 8px; }
.why-card .num{ font-family: var(--f-mono); color: var(--amber); font-size:0.85rem; margin-bottom:10px; display:block; }
.why-card h3{ font-size:1.15rem; margin-bottom:8px; }
.why-card p{ font-size:0.92rem; }

/* ============ CONTACT ============ */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info{ display:grid; gap:22px; align-content:start; }
.contact-item{ display:flex; gap:16px; }
.contact-item .ic{
  width:44px; height:44px; border-radius:9px; background: var(--amber-tint); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.contact-item .ic svg{ width:22px; height:22px; stroke: var(--amber-d); }
.contact-item h4{ font-family: var(--f-body); text-transform:none; font-size:0.98rem; margin-bottom:4px; }
.contact-item p{ margin:0; font-size:0.92rem; }
.map-wrap{ margin-top: 10px; border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); }
.map-wrap iframe{ width:100%; height:220px; border:0; display:block; }

.form-card{ background: var(--off-white); border:1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:0.84rem; font-weight:600; margin-bottom:7px; color: var(--ink); }
.field input, .field select, .field textarea{
  width:100%; padding: 12px 14px; border-radius:7px; border:1px solid var(--line);
  font-family: var(--f-body); font-size:0.94rem; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--route-blue); box-shadow: 0 0 0 3px var(--blue-tint); }
.field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:0.78rem; color: var(--ink-soft); margin-top:14px; }

/* ============ CTA BAND ============ */
.cta-band{
  background: linear-gradient(120deg, var(--amber) 0%, var(--amber-d) 100%);
  color:var(--white); text-align:center; padding: 70px 0;
}
.cta-band h2{ color:var(--white); }
.cta-band p{ color: rgba(255,255,255,0.9); max-width:560px; margin: 0 auto 30px; }
.cta-band .btn-outline{ border-color: rgba(255,255,255,0.7); }

/* ============ FOOTER ============ */
.site-footer{ background: var(--route-blue-d); color: rgba(255,255,255,0.72); padding: 64px 0 26px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-logo .logo-text{ color:var(--white); }
.site-footer p{ color: rgba(255,255,255,0.62); font-size:0.9rem; }
.footer-col h5{ font-family: var(--f-mono); text-transform:uppercase; font-size:0.75rem; letter-spacing:0.1em; color: var(--amber); margin-bottom:18px; }
.footer-col ul{ display:grid; gap:11px; }
.footer-col a{ font-size:0.9rem; color: rgba(255,255,255,0.72); }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12); padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:0.82rem; color: rgba(255,255,255,0.5);
}

/* ============ generic page hero (careers/track) ============ */
.page-hero{
  background: linear-gradient(180deg, var(--route-blue-d), var(--route-blue));
  color:#fff; padding: 84px 0 60px; text-align:center;
}
.page-hero h1{ color:#fff; font-size: clamp(2.2rem,4.4vw,3.2rem); }
.page-hero p{ color: rgba(255,255,255,0.82); max-width:600px; margin: 0 auto; }

.track-card{
  max-width: 640px; margin: -60px auto 0; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; position:relative; z-index:5;
}
.track-input-row{ display:flex; gap:12px; }
.track-input-row input{ flex:1; padding:14px 16px; border-radius:7px; border:1px solid var(--line); font-family: var(--f-mono); }
.track-status{ margin-top:26px; padding:18px; border-radius:8px; background: var(--off-white); border:1px dashed var(--line); font-family: var(--f-mono); font-size:0.86rem; color: var(--ink-soft); text-align:center; }

/* ---- track result / message states ---- */
.track-msg{ margin-top:26px; padding:16px 18px; border-radius:8px; font-size:0.92rem; text-align:center; }
.track-msg-loading{ background:var(--off-white); border:1px dashed var(--line); color:var(--ink-soft); font-family:var(--f-mono); font-size:0.85rem; }
.track-msg-warn, .track-msg-notfound{ background:var(--amber-tint); border:1px solid #F2D2A6; color:var(--amber-d); }

.track-result{ margin-top:28px; padding-top:26px; border-top:1px solid var(--line); }
.track-result-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap; margin-bottom:26px; }
.track-status-pill{
  font-family: var(--f-mono); font-size:0.78rem; font-weight:600; letter-spacing:0.03em;
  color:var(--white); background: var(--route-blue); padding:8px 16px; border-radius:999px; white-space:nowrap;
}

.tstepper{ display:flex; justify-content:space-between; margin-bottom:30px; position:relative; }
.tstepper::before{
  content:""; position:absolute; top:6px; left:6%; right:6%; height:2px; background:var(--line); z-index:0;
}
.tstep{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; }
.tstep-dot{ width:14px; height:14px; border-radius:50%; background:var(--white); border:2px solid var(--line); }
.tstep-label{ font-family:var(--f-mono); font-size:0.66rem; letter-spacing:0.02em; text-transform:uppercase; color:var(--ink-soft); text-align:center; }
.tstep.done .tstep-dot{ background:var(--route-blue); border-color:var(--route-blue); }
.tstep.done .tstep-label{ color:var(--route-blue); }
.tstep.active .tstep-dot{ background:var(--amber); border-color:var(--amber); box-shadow:0 0 0 4px var(--amber-tint); }
.tstep.active .tstep-label{ color:var(--amber-d); font-weight:700; }

.track-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px 24px; }
.tlabel{ display:block; font-family:var(--f-mono); font-size:0.68rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--ink-soft); margin-bottom:4px; }
.tval{ display:block; font-weight:600; color:var(--ink); }
.tval a{ color:var(--route-blue); }
@media (max-width:560px){
  .track-grid{ grid-template-columns:1fr; }
  .tstep-label{ font-size:0.58rem; }
}

.jobs-grid{ display:grid; gap:16px; }
.job-card{ display:flex; justify-content:space-between; align-items:center; gap:20px; padding:22px 26px; border:1px solid var(--line); border-radius: var(--radius); flex-wrap:wrap; }
.job-card h4{ font-size:1.05rem; margin-bottom:4px; }
.job-tag{ font-family: var(--f-mono); font-size:0.72rem; color: var(--amber-d); background: var(--amber-tint); padding:4px 10px; border-radius:999px; }

/* ============ responsive ============ */
@media (max-width: 1180px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; aspect-ratio: 16/10; }
  .about-grid, .leader-grid, .contact-grid{ grid-template-columns:1fr; gap:36px; }
  .services-grid{ grid-template-columns:1fr; }
  .industries-grid{ grid-template-columns: repeat(2,1fr); }
  .why-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  section{ padding: 64px 0; }
  .industries-grid{ grid-template-columns:1fr; }
  .hero-stats{ grid-template-columns:1fr; gap:16px; }
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .gallery-grid{ grid-template-columns:1fr; grid-auto-rows:220px; }
  .gitem.wide{ grid-column: span 1; }
}

/* Utility */
.skip-link{
  position:absolute; left:-999px; top:0; background:var(--amber); color:#fff;
  padding: 12px 18px; z-index:2000; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* Track shipment result states */
.track-msg{
  padding: 18px 20px; border-radius: 8px; font-size:0.92rem; text-align:center;
  border:1px dashed var(--line); background: var(--off-white); color: var(--ink-soft);
}
.track-msg-loading{ color: var(--route-blue); border-style:solid; border-color:var(--line); }
.track-msg-notfound, .track-msg-warn{ color: var(--amber-d); background: var(--amber-tint); border-color: var(--amber); border-style:solid; }

.track-result{
  text-align:left; background: var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding: 30px; margin-top: 6px;
}
.track-result-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap; margin-bottom:26px; }
.track-status-pill{
  font-family: var(--f-mono); font-size:0.78rem; font-weight:600; text-transform:uppercase;
  background: var(--teal); color:#fff; padding:8px 16px; border-radius:999px; letter-spacing:0.04em;
}

.tstepper{ display:flex; justify-content:space-between; position:relative; margin: 30px 0 34px; }
.tstepper::before{
  content:""; position:absolute; top:7px; left:5%; right:5%; height:2px;
  background-image: linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px);
  background-size: 16px 2px; z-index:0;
}
.tstep{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; }
.tstep-dot{ width:16px; height:16px; border-radius:50%; background: var(--white); border:2px solid var(--line); display:block; }
.tstep.done .tstep-dot{ background: var(--route-blue); border-color: var(--route-blue); }
.tstep.active .tstep-dot{ background: var(--amber); border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-tint); }
.tstep-label{ font-size:0.72rem; text-align:center; color: var(--ink-soft); font-weight:600; }
.tstep.done .tstep-label, .tstep.active .tstep-label{ color: var(--ink); }

.track-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.tlabel{ display:block; font-family: var(--f-mono); font-size:0.7rem; text-transform:uppercase; letter-spacing:0.06em; color: var(--ink-soft); margin-bottom:4px; }
.tval{ display:block; font-size:0.95rem; font-weight:600; color: var(--ink); }

@media (max-width:700px){
  .track-grid{ grid-template-columns: 1fr 1fr; }
  .tstep-label{ font-size:0.62rem; }
}