/* ============================================================
   PREMIUM LOGISTICS REDESIGN — Deep Navy + Gold System
   Replaces the previous redesign.css. All existing class names
   (.hero, .btn-primary, .stats-card, .nav-link, .track-btn, ...)
   are preserved and restyled for a high-end look. New premium
   components (.pr-marquee, .pr-map, .pr-counter, .pr-bar, ...)
   are added. Original saved as redesign.backup.css.
   ============================================================ */

:root {
  /* Navy family */
  --abyss:     #07182E;
  --midnight:  #0A2540;
  --deepnavy:  #0F2A47;
  --slatenavy: #1E3A5F;   /* legacy brand navy */
  --mistnavy:  #2C4A6B;

  /* Gold accent family */
  --champagne: #F5D98B;
  --gold:      #C9A227;
  --antique:   #A8821C;
  --brass:     #7A5F12;

  /* Neutrals */
  --white:     #FFFFFF;
  --mist:      #F7F9FC;
  --cloud:     #EEF2F7;
  --steel:     #6A7282;
  --graphite:  #364153;
  --ink:       #101828;

  /* Functional */
  --signal:    #16A34A;
  --ember:     #DC2626;
  --amber:     #D97706;

  /* Legacy aliases (kept so any stray refs still work) */
  --clr-primary:        var(--midnight);
  --clr-primary-light:  var(--mistnavy);
  --clr-accent:         var(--gold);
  --clr-accent-hover:   var(--antique);
  --clr-gold:           var(--gold);
  --clr-text:           var(--graphite);
  --clr-text-light:     var(--steel);
  --clr-white:          var(--white);

  --header-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Display + body font stacks (Sora loaded in the page head) */
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body { font-family: var(--font-body); color: var(--graphite); background: var(--white); }

h1, h2, h3, h4, .hero-title, .stat-number, .page-header-title, .pr-counter {
  font-family: var(--font-display);
}

/* Accessible focus ring — gold, visible everywhere */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ─── Reveal-on-scroll utility (paired with premium.js) ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─── Layered background helpers ─── */
.bg-grid-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 80%);
          mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 80%);
}
.bg-dots-light { background-image: radial-gradient(rgba(30,58,95,.10) 1px, transparent 1px); background-size: 24px 24px; }
.gold-glow::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 82% 28%, rgba(201,162,39,.20), transparent 42%);
}

/* ─── Animation keyframe library ─── */
@keyframes float { 0%,100% { transform: translate3d(0,0,0) rotate(0); } 50% { transform: translate3d(0,-22px,0) rotate(2deg); } }
@keyframes floatX { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(18px,-12px,0); } }
@keyframes pr-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes goldPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,.6); }
  70%  { box-shadow: 0 0 0 14px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}
@keyframes shimmer { 0% { background-position: -150% 0; } 100% { background-position: 250% 0; } }
@keyframes dashFlow { to { stroke-dashoffset: -1000; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes hubBlink { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .55; } }

/* Floating logistics glyphs (added to hero via premium.js / markup) */
.pr-float {
  position: absolute; width: 70px; height: 70px; opacity: .14;
  color: var(--champagne); pointer-events: none; z-index: 1;
}
.pr-float svg { width: 100%; height: 100%; }

/* Decorative eyebrow rule */
/* ============================================================
   STICKY HEADER + NAVIGATION (premium)
   ============================================================ */

#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), height var(--transition);
  background: linear-gradient(180deg, rgba(7,24,46,.55), rgba(7,24,46,0));
  backdrop-filter: blur(0);
}
#site-header.scrolled {
  height: 68px;
  background: rgba(10,37,64,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -12px rgba(7,24,46,.5);
  border-bottom: 1px solid rgba(245,217,139,.18);
}

.site-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: var(--header-height);
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .site-header-inner { padding: 0 40px; } }

.site-logo { display: flex; align-items: center; flex-shrink: 0; z-index: 1; text-decoration: none; }
.site-logo img { height: 52px; width: auto; max-width: 180px; object-fit: contain; display: block; transition: filter var(--transition); filter: drop-shadow(0 1px 3px rgba(0,0,0,.25)); }
#site-header.scrolled .site-logo img { filter: drop-shadow(0 1px 3px rgba(0,0,0,.25)); }

/* Desktop nav */
.desktop-nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-item { position: relative; }

.nav-link {
  position: relative;
  display: flex; align-items: center; gap: 4px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.82); text-decoration: none; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap; cursor: pointer; background: none; border: none; font-family: inherit;
}
.nav-link::after { /* gold underline grows on hover */
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link:focus-visible { color: #fff; background: rgba(255,255,255,.07); }
.nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); }
#site-header.scrolled .nav-link { color: rgba(255,255,255,.9); }
.nav-link svg { transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px; background: var(--white);
  border-radius: 14px; box-shadow: 0 24px 50px -16px rgba(7,24,46,.4);
  border: 1px solid var(--cloud); padding: 8px; z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, transform .28s ease, visibility .22s;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--white);
  border-left: 1px solid var(--cloud); border-top: 1px solid var(--cloud);
}
.nav-dropdown a {
  display: block; padding: 11px 16px; font-size: 14px; font-weight: 500;
  color: var(--graphite); text-decoration: none; border-radius: 9px;
  transition: background .15s, color .15s, padding-left .15s;
}
.nav-dropdown a:hover { background: var(--mist); color: var(--midnight); padding-left: 22px; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; z-index: 1; }

/* Track button → premium gold */
.track-btn {
  position: relative; overflow: hidden;
  display: none; align-items: center; gap: 8px;
  background: linear-gradient(180deg, var(--champagne), var(--gold));
  color: var(--abyss);
  padding: 11px 24px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-decoration: none;
  box-shadow: 0 10px 24px -10px rgba(201,162,39,.7);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.track-btn::after {
  content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 55%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-160%); transition: transform .6s ease;
}
.track-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(201,162,39,.85); }
.track-btn:hover::after { transform: translateX(160%); }
@media (min-width: 1024px) { .track-btn { display: flex; } }

/* Hamburger → navy premium */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; background: var(--midnight); color: var(--champagne);
  border: 1px solid rgba(245,217,139,.3); border-radius: 10px; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hamburger:hover { background: var(--deepnavy); transform: scale(1.04); }
.hamburger span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger span + span { margin-top: 4px; }
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* re-added eyebrow utility */
.eyebrow-rule { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow-rule::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ============================================================
   MOBILE DRAWER (premium)
   ============================================================ */

.nav-drawer {
  position: fixed; top: 0; right: 0; width: 340px; max-width: 86vw; height: 100%;
  background: var(--white); z-index: 10000;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(7,24,46,.25); overflow-y: auto;
  display: flex; flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--cloud);
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--midnight);
}
.nav-drawer-close {
  width: 38px; height: 38px; border: none; background: var(--mist); color: var(--graphite);
  border-radius: 10px; font-size: 24px; line-height: 1; cursor: pointer; transition: background .2s;
}
.nav-drawer-close:hover { background: var(--cloud); }
.nav-drawer-body { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; font-size: 15px; font-weight: 600; color: var(--graphite);
  text-decoration: none; border-radius: 10px; cursor: pointer; background: none; border: none;
  font-family: inherit; text-align: left; transition: background .2s, color .2s;
}
.drawer-link:hover, .drawer-link:focus-visible { background: var(--mist); color: var(--midnight); }
.drawer-link .arrow { color: var(--gold); transition: transform .2s; font-size: 18px; }
.drawer-sub { flex-direction: column; padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.drawer-sub.open { max-height: 320px; padding: 4px 0 8px; }
.drawer-sub a {
  display: block; padding: 11px 16px 11px 32px; font-size: 14px; color: var(--steel);
  text-decoration: none; border-radius: 8px; transition: background .15s, color .15s;
}
.drawer-sub a:hover { background: var(--mist); color: var(--midnight); }
.drawer-cta {
  margin-top: 16px; text-align: center; padding: 14px; border-radius: 12px;
  background: linear-gradient(180deg, var(--champagne), var(--gold)); color: var(--abyss);
  font-weight: 700; text-decoration: none; letter-spacing: .03em;
}
.nav-overlay { position: fixed; inset: 0; background: rgba(7,24,46,.5); backdrop-filter: blur(4px); z-index: 9999; display: none; }
.nav-overlay.open { display: block; }

/* ============================================================
   HERO (premium layered navy + gold)
   ============================================================ */

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(120% 120% at 80% 10%, var(--deepnavy) 0%, var(--midnight) 45%, var(--abyss) 100%);
}
/* keep the existing background video if present, darken it into the palette */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(.7) contrast(1.05); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(115deg, rgba(7,24,46,.94) 0%, rgba(10,37,64,.78) 45%, rgba(7,24,46,.86) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .55;
}

.hero-content { position: relative; z-index: 3; width: 100%; max-width: 1280px; margin: 0 auto; padding: 120px 24px 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 380px; } }

/* Compact hero on mobile — shorter than full viewport so content sits near the top */
@media (max-width: 767px) {
  .hero { min-height: 82vh; min-height: 82svh; }
  .hero-content { padding: 96px 20px 56px; }
}
@media (max-width: 480px) {
  .hero { min-height: 78vh; min-height: 78svh; }
  .hero-content { padding: 88px 18px 44px; }
}

.hero-text { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(245,217,139,.28);
  padding: 7px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--champagne); margin-bottom: 24px; animation: fadeInUp .6s ease forwards;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s ease-in-out infinite; }

.hero-title {
  font-size: clamp(2.1rem, 5vw, 4rem); font-weight: 800; line-height: 1.06;
  color: var(--white); letter-spacing: -.02em; margin-bottom: 22px;
  animation: fadeInUp .6s ease .1s forwards; opacity: 0;
}
.hero-title .highlight {
  background: linear-gradient(100deg, var(--champagne), var(--gold) 60%, #f59e0b);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.75;
  color: rgba(255,255,255,.78); margin-bottom: 36px; max-width: 560px;
  animation: fadeInUp .6s ease .2s forwards; opacity: 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeInUp .6s ease .3s forwards; opacity: 0; }

/* Primary → premium gold gradient with shimmer */
.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, var(--champagne), var(--gold));
  color: var(--abyss);
  padding: 15px 32px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 0 12px 28px -10px rgba(201,162,39,.7);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 55%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.6), transparent);
  transform: translateX(-160%); transition: transform .6s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(201,162,39,.85); }
.btn-primary:hover::after { transform: translateX(160%); }

/* Secondary → ghost with gold hover */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 15px 32px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  border: 1.5px solid rgba(245,217,139,.4);
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--champagne); background: rgba(201,162,39,.1); transform: translateY(-2px); }

/* ============================================================
   HERO STATS CARD (premium glass) — numbers now animate via premium.js
   ============================================================ */

.hero-stats { display: none; }
@media (min-width: 768px) { .hero-stats { display: block; } }

.stats-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(245,217,139,.18);
  border-radius: 22px; padding: 34px 30px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
  animation: fadeInUp .6s ease .4s forwards; opacity: 0;
}
.stats-card::before { /* top gold hairline accent */
  content: ""; position: absolute; top: 0; left: 30px; right: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); border-radius: 2px;
}
.stats-card-title {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  color: var(--champagne); margin-bottom: 22px; font-family: var(--font-display);
}
.stat-item {
  display: flex; align-items: center; gap: 14px; padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.stat-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,217,139,.14); color: var(--champagne);
}
.stat-icon.red { background: rgba(220,38,38,.16); color: #fca5a5; }
.stat-icon.blue { background: rgba(59,130,246,.16); color: #93c5fd; }
.stat-icon.green { background: rgba(22,163,74,.16); color: #86efac; }
.stat-info { flex: 1; }
.stat-number {
  font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.15;
  font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.62); }

/* ============================================================
   TRACK & TRACE BAR (premium)
   ============================================================ */

.hero-track { margin-top: 34px; animation: fadeInUp .6s ease .5s forwards; opacity: 0; }
.track-box {
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  backdrop-filter: blur(18px); border: 1px solid rgba(245,217,139,.18);
  border-radius: 18px; padding: 22px 26px;
}
@media (min-width: 640px) { .track-box { padding: 26px 30px; } }
.track-tabs { display: flex; gap: 24px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.track-tab {
  padding: 8px 0 11px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.5); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer; font-family: inherit;
  transition: color .2s, border-color .2s;
}
.track-tab.active { color: var(--champagne); border-bottom-color: var(--gold); }
.track-form { display: flex; gap: 10px; flex-direction: column; }
@media (min-width: 480px) { .track-form { flex-direction: row; } }
.track-input {
  flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(245,217,139,.2);
  border-radius: 12px; padding: 13px 16px; font-size: 14px; color: var(--white); outline: none;
  transition: border-color .2s, background .2s; font-family: inherit;
}
.track-input::placeholder { color: rgba(255,255,255,.42); }
.track-input:focus { border-color: var(--gold); background: rgba(255,255,255,.13); }
.track-submit {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(180deg, var(--champagne), var(--gold));
  color: var(--abyss); border: none; border-radius: 12px; padding: 13px 26px;
  font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; font-family: inherit;
  box-shadow: 0 10px 22px -10px rgba(201,162,39,.7);
  transition: transform var(--transition), box-shadow var(--transition);
}
.track-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -12px rgba(201,162,39,.85); }
.track-links { display: flex; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.track-links a { font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.track-links a:hover { color: var(--champagne); }
.track-error {
  margin-top: 12px; padding: 10px 14px; border-radius: 10px;
  background: rgba(220,38,38,.18); border: 1px solid rgba(220,38,38,.35);
  color: #fca5a5; font-size: 13px;
}

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }
.scroll-mouse { width: 22px; height: 36px; border: 2px solid rgba(245,217,139,.5); border-radius: 12px; position: relative; }
.scroll-mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: pr-scroll-dot 1.6s ease-in-out infinite; }
@keyframes pr-scroll-dot { 0% { opacity: 1; transform: translate(-50%,0); } 100% { opacity: 0; transform: translate(-50%,12px); } }

/* ============================================================
   NEW PREMIUM COMPONENTS (.pr-*)
   ============================================================ */

/* Trust logo marquee */
.pr-marquee { position: relative; overflow: hidden; background: var(--abyss); padding: 26px 0; border-top: 1px solid rgba(245,217,139,.14); border-bottom: 1px solid rgba(245,217,139,.14); }
.pr-marquee::before, .pr-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.pr-marquee::before { left: 0; background: linear-gradient(90deg, var(--abyss), transparent); }
.pr-marquee::after { right: 0; background: linear-gradient(270deg, var(--abyss), transparent); }
.pr-marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: pr-marquee 32s linear infinite; }
.pr-marquee:hover .pr-marquee-track { animation-play-state: paused; }
.pr-marquee-item { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: .04em; color: rgba(255,255,255,.4); white-space: nowrap; transition: color .3s; display: inline-flex; align-items: center; gap: 10px; }
.pr-marquee-item::before { content: "◆"; color: var(--gold); opacity: .6; font-size: 12px; }
.pr-marquee-item:hover { color: rgba(255,255,255,.9); }

/* Animated counters + progress bars */
.pr-counter { font-family: var(--font-display); font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -.02em; line-height: 1; }
.pr-bar { height: 5px; background: rgba(255,255,255,.14); border-radius: 999px; overflow: hidden; }
.pr-bar > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--champagne)); border-radius: 999px; transition: width 1.5s cubic-bezier(.4,0,.2,1); }
.pr-bar.in > i { width: var(--fill, 80%); }

/* Section helpers */
.pr-section { position: relative; padding: 96px 24px; }
.pr-section.dark { background: var(--midnight); color: #fff; }
.pr-section.abyss { background: var(--abyss); color: #fff; }
.pr-section.mist { background: var(--mist); }
@media (min-width: 1024px) { .pr-section { padding: 110px 40px; } }
.pr-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--brass); }
.pr-section.dark .pr-eyebrow, .pr-section.abyss .pr-eyebrow { color: var(--champagne); }
.pr-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.pr-title { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 700; line-height: 1.12; letter-spacing: -.015em; color: var(--ink); margin-top: 14px; }
.pr-section.dark .pr-title, .pr-section.abyss .pr-title { color: #fff; }
.pr-lead { font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.7; color: var(--steel); max-width: 760px; margin-top: 16px; }
.pr-section.dark .pr-lead, .pr-section.abyss .pr-lead { color: rgba(255,255,255,.72); }

/* Metrics band */
.pr-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 24px; margin-top: 52px; }
@media (min-width: 768px) { .pr-metrics { grid-template-columns: repeat(4, 1fr); } }
.pr-metric .pr-counter { font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--ink); }
.pr-section.dark .pr-metric .pr-counter, .pr-section.abyss .pr-metric .pr-counter { color: #fff; }
.pr-metric .pr-suffix { color: var(--gold); }
.pr-metric .pr-label { font-size: 14px; color: var(--steel); margin-top: 6px; }
.pr-section.dark .pr-metric .pr-label, .pr-section.abyss .pr-metric .pr-label { color: rgba(255,255,255,.65); }
.pr-metric .pr-bar { margin-top: 14px; }

/* Premium depth card (freight solutions / industries) */
.pr-card { position: relative; border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid var(--cloud); transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s ease; }
.pr-card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -22px rgba(7,24,46,.35); }
.pr-card .pr-card-media { position: relative; overflow: hidden; }
.pr-card .pr-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); display: block; }

/* Icon chip */
.pr-chip { width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: var(--abyss); color: var(--champagne); transition: background .35s ease, color .35s ease, transform .35s ease; }
.pr-card:hover .pr-chip { background: linear-gradient(180deg, var(--champagne), var(--gold)); color: var(--abyss); transform: translateY(-3px); }

/* ============================================================
   GLOBAL REACH MAP (signature animated section)
   ============================================================ */
.pr-map-wrap { position: relative; margin-top: 48px; border-radius: 24px; overflow: hidden; background: radial-gradient(100% 100% at 50% 0%, rgba(15,42,71,.6), var(--abyss)); border: 1px solid rgba(245,217,139,.12); padding: 40px; min-height: 440px; }
.pr-map-svg { width: 100%; height: auto; display: block; opacity: .95; }
.pr-map-svg .dot { fill: rgba(255,255,255,.05); }
.pr-map-svg .hub { fill: var(--gold); transform-origin: center; transform-box: fill-box; animation: hubBlink 2.6s ease-in-out infinite; }
.pr-map-svg .hub-glow { fill: var(--gold); opacity: .18; }
.pr-map-svg .arc { fill: none; stroke: var(--champagne); stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 5 9; opacity: .8; animation: dashFlow 4s linear infinite; }
.pr-map-svg .arc-2 { animation-delay: -1.3s; stroke: rgba(245,217,139,.6); }
.pr-map-svg .arc-3 { animation-delay: -2.6s; stroke: rgba(245,217,139,.45); }
.pr-map-hubs { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 28px; }
.pr-map-hub { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500; }
.pr-map-hub i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,.2); }
@media (max-width: 767px) { .pr-map-wrap { padding: 22px; min-height: 320px; } }

/* ============================================================
   INTERIOR PAGE SUB-HEADER (premium)
   ============================================================ */
.page-header { position: relative; padding: 130px 0 64px; background: radial-gradient(120% 120% at 80% 10%, var(--deepnavy) 0%, var(--midnight) 45%, var(--abyss) 100%); overflow: hidden; }
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
}
.page-header-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.page-header-label { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: var(--champagne); margin-bottom: 14px; }
.page-header-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.page-header-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.page-header-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.page-header-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.page-header-breadcrumb a:hover { color: #fff; }
.page-header-breadcrumb .sep { color: rgba(255,255,255,.25); font-size: 10px; }
.page-header-breadcrumb .active { color: var(--champagne); font-weight: 600; }

/* ============================================================
   PREMIUM FOOTER
   ============================================================ */
.pr-footer { position: relative; background: var(--abyss); color: rgba(255,255,255,.72); overflow: hidden; }
.pr-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(15,42,71,.7), transparent 60%),
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 100% 100%, 46px 46px, 46px 46px;
}
.pr-footer-top { position: relative; z-index: 1; padding: 72px 24px 56px; }
.pr-footer-inner { position: relative; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .pr-footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; } }

.pr-footer-brand { max-width: 380px; }
.pr-footer-logo img { height: 48px; width: auto; display: block; margin-bottom: 18px; }
.pr-footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); }

.pr-footer-nav { display: flex; flex-direction: column; gap: 11px; }
.pr-footer-heading { font-family: var(--font-display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--champagne); margin-bottom: 6px; }
.pr-footer-nav a { font-size: 14px; color: rgba(255,255,255,.62); text-decoration: none; transition: color .2s, padding-left .2s; }
.pr-footer-nav a:hover, .pr-footer-nav a:focus-visible { color: var(--champagne); padding-left: 4px; }

.pr-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.pr-footer-link-row { display: inline-flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.62); text-decoration: none; line-height: 1.55; transition: color .2s; }
.pr-footer-link-row svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.pr-footer-link-row:hover, .pr-footer-link-row:focus-visible { color: var(--champagne); }

.pr-footer-bottom { position: relative; z-index: 1; border-top: 1px solid rgba(245,217,139,.12); padding: 22px 24px; }
.pr-footer-bottom-row { display: flex; flex-direction: column; gap: 6px; justify-content: space-between; align-items: center; text-align: center; grid-template-columns: 1fr; }
.pr-footer-bottom-row span { font-size: 13px; color: rgba(255,255,255,.45); }
.pr-footer-built { color: rgba(245,217,139,.55) !important; letter-spacing: .04em; }
@media (min-width: 640px) { .pr-footer-bottom-row { flex-direction: row; text-align: left; } }

/* Back-to-top FAB */
.pr-back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 50px; height: 50px; border: none; border-radius: 14px;
  background: linear-gradient(180deg, var(--champagne), var(--gold)); color: var(--abyss);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(201,162,39,.7);
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.9);
  transition: opacity .35s ease, transform .35s cubic-bezier(.4,0,.2,1), visibility .35s, box-shadow .3s;
}
.pr-back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.pr-back-to-top:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 36px -12px rgba(201,162,39,.9); }
.pr-back-to-top:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

/* Legacy back-to-top fallback (older footer markup) — kept for safety */
.fixed.bottom-4.right-4 button { background: linear-gradient(180deg, var(--champagne), var(--gold)) !important; color: var(--abyss) !important; box-shadow: 0 12px 26px -10px rgba(201,162,39,.7); border-radius: 14px !important; }

/* spacing fix for content under fixed header */
body.has-hero .min-h-screen > section:first-of-type { padding-top: var(--header-height); }

/* ============================================================
   PREMIUM BODY COMPONENTS (homepage + interior pages)
   ============================================================ */

/* Content container */
.pr-container { position: relative; max-width: 1280px; margin: 0 auto; }

/* Section heading blocks */
.pr-head-center { max-width: 820px; margin: 0 auto; text-align: center; }
.pr-head-center .pr-lead { margin-left: auto; margin-right: auto; }
.pr-head-row { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .pr-head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; } .pr-head-row > div { max-width: 640px; } }
.pr-center { text-align: center; }
.pr-row-aside { max-width: 420px; margin-top: 0; }
@media (min-width: 768px) { .pr-row-aside { margin-top: 30px; text-align: right; } }

/* Card body content */
.pr-card-body { padding: 28px 26px; position: relative; }
.pr-card-title { font-family: var(--font-display); font-size: clamp(1.1rem, 1.4vw, 1.35rem); font-weight: 700; color: var(--ink); line-height: 1.3; letter-spacing: -.01em; }
.pr-card-title.lg { font-size: clamp(1.35rem, 2.4vw, 2rem); }
.pr-card-text { font-size: 14.5px; line-height: 1.7; color: var(--steel); margin-top: 10px; }
.pr-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brass); transition: gap .25s ease, color .25s ease; }
.pr-card:hover .pr-card-link { color: var(--antique); gap: 10px; }

/* Media fill for cards */
.pr-card .pr-card-media { aspect-ratio: 16 / 11; }
.pr-card:hover .pr-card-media img { transform: scale(1.07); }

/* Solutions grid */
.pr-solution-grid { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: 52px; }
@media (min-width: 640px) { .pr-solution-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pr-solution-grid { grid-template-columns: repeat(3, 1fr); } }
.pr-solution-grid .pr-card { text-decoration: none; }
.pr-solution-grid .pr-card .pr-card-body { padding: 26px 24px 30px; }

/* Industries grid */
.pr-industry-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 48px; }
@media (min-width: 640px) { .pr-industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pr-industry-grid { grid-template-columns: repeat(3, 1fr); } }

/* Process timeline (draws itself) */
.pr-timeline { position: relative; display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
@media (min-width: 900px) { .pr-timeline { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
/* connector line on desktop */
.pr-timeline::before {
  content: ""; position: absolute; top: 22px; left: 16.6%; right: 16.6%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,217,139,.35), rgba(245,217,139,.35), transparent);
  z-index: 0;
}
@media (max-width: 899px) { .pr-timeline::before { display: none; } }
.pr-step { position: relative; z-index: 1; }
.pr-step-num {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--abyss);
  background: linear-gradient(180deg, var(--champagne), var(--gold));
  box-shadow: 0 0 0 6px rgba(201,162,39,.12); margin-bottom: 20px; position: relative;
}
.pr-step-card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(245,217,139,.16); border-radius: 18px; padding: 28px 26px;
  backdrop-filter: blur(12px); transition: border-color .35s ease, transform .35s ease;
}
.pr-step-card:hover { border-color: rgba(245,217,139,.32); transform: translateY(-4px); }
.pr-step-card .pr-chip { margin-bottom: 18px; }
.pr-step-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.pr-step-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); }

/* Featured news article */
.pr-feature { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; margin-top: 48px; margin-bottom: 56px; }
@media (min-width: 768px) { .pr-feature { grid-template-columns: 1fr 1fr; gap: 44px; } }
.pr-feature-media { border-radius: 20px; overflow: hidden; aspect-ratio: 5 / 3; }
.pr-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pr-feature-body .pr-card-title { margin-top: 14px; }

/* News grid */
.pr-news-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 768px) { .pr-news-grid { grid-template-columns: repeat(3, 1fr); } }

/* Meta + pill */
.pr-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; font-size: 12.5px; color: var(--steel); }
.pr-pill { display: inline-flex; align-items: center; padding: 4px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: rgba(201,162,39,.14); color: var(--brass); }
.pr-pill.alt { background: rgba(30,58,95,.1); color: var(--slatenavy); }

/* Case studies */
.pr-case-grid { display: flex; gap: 22px; overflow-x: auto; margin-top: 48px; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.pr-case-grid::-webkit-scrollbar { height: 6px; }
.pr-case-grid::-webkit-scrollbar-thumb { background: rgba(201,162,39,.3); border-radius: 999px; }
@media (min-width: 900px) { .pr-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; } }
.pr-case { scroll-snap-align: start; min-width: 300px; }
@media (min-width: 900px) { .pr-case { min-width: 0; } }
.pr-case-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brass); margin-bottom: 14px; }
.pr-case-tag svg { color: var(--gold); }
.pr-case-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 9px; }
.pr-case-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--graphite); line-height: 1.5; }
.pr-case-list li i { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(180deg, var(--gold), var(--antique)); margin-top: 7px; flex-shrink: 0; }

/* Social row */
.pr-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.pr-social-btn {
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--champagne); background: rgba(255,255,255,.05); border: 1px solid rgba(245,217,139,.22);
  transition: background .3s ease, color .3s ease, transform .3s ease, border-color .3s ease;
}
.pr-social-btn:hover, .pr-social-btn:focus-visible { background: linear-gradient(180deg, var(--champagne), var(--gold)); color: var(--abyss); transform: translateY(-3px); border-color: transparent; }

/* Pull-quote */
.pr-quote { position: relative; max-width: 920px; margin: 0 auto; text-align: center; }
.pr-quote-mark { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 7rem); line-height: .7; color: var(--gold); opacity: .35; margin-bottom: 10px; }
.pr-quote blockquote { font-size: clamp(1.05rem, 2.2vw, 1.5rem); line-height: 1.7; color: rgba(255,255,255,.85); margin: 0 0 26px; font-weight: 400; }
.pr-quote figcaption { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.pr-quote-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.pr-quote-role { font-size: 14px; color: var(--champagne); }
.pr-quote-portrait { display: none; }

/* Reveal stagger helper — apply inline style="--d:2" for delay */
.reveal[style*="--d"] { transition-delay: calc(var(--d) * 90ms); }

/* Split (image + body) layout — used on services / about / contact */
.pr-split { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .pr-split { grid-template-columns: 1fr 1fr; gap: 56px; } }
.pr-split.split-reveal .pr-split-media { order: 2; }
.pr-split-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--mist); }
.pr-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.4,0,.2,1); }
.pr-split:hover .pr-split-media img { transform: scale(1.04); }
.pr-split-body .pr-title.sm { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
.pr-split-body p { font-size: 16px; line-height: 1.75; color: var(--steel); margin-top: 14px; }
.pr-section.dark .pr-split-body p, .pr-section.abyss .pr-split-body p { color: rgba(255,255,255,.72); }
.pr-split-body .pr-lead { margin-top: 14px; }

/* Prose block (about/legal body copy) */
.pr-prose { margin-top: 24px; max-width: 820px; }
.pr-prose p { font-size: 16.5px; line-height: 1.85; color: var(--graphite); margin-bottom: 16px; }
.pr-prose h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink); margin: 28px 0 12px; }
.pr-prose section { padding-bottom: 8px; border-bottom: 1px solid var(--cloud); }
.pr-prose section:last-child { border-bottom: none; }
.pr-prose h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--slatenavy); margin: 18px 0 8px; }
.pr-prose ul { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.pr-prose ul li { position: relative; padding-left: 24px; font-size: 16px; line-height: 1.7; color: var(--steel); }
.pr-prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.pr-legal-contact { margin-top: 14px; background: var(--mist); border: 1px solid var(--cloud); border-left: 3px solid var(--gold); border-radius: 12px; padding: 20px 24px; }
.pr-legal-contact p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--graphite); }
.pr-legal-contact strong { color: var(--ink); font-family: var(--font-display); }

/* ===== Request-quote visual panel ===== */
.pr-quote-panel { position: relative; overflow: hidden; border-radius: 22px; padding: 48px 40px; min-height: 320px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(150deg, var(--midnight), var(--abyss)); border: 1px solid rgba(245,217,139,.18); }
.pr-quote-panel .pr-eyebrow, .pr-quote-panel .pr-title.sm { color: #fff; }
.pr-quote-panel .pr-lead { color: rgba(255,255,255,.72); }
.pr-quote-bullets { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 12px; }
.pr-quote-bullets li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.85); }
.pr-quote-bullets li i { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: rgba(201,162,39,.2); position: relative; }
.pr-quote-bullets li i::after { content: ""; width: 7px; height: 4px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); margin-top: -2px; }

/* CTA band (inline callout inside a section) */
.pr-cta-band {
  display: flex; flex-direction: column; gap: 30px; align-items: flex-start;
  background: linear-gradient(135deg, var(--deepnavy), var(--midnight));
  border: 1px solid rgba(245,217,139,.18); border-radius: 24px; padding: 44px 40px;
}
@media (min-width: 768px) { .pr-cta-band { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; } .pr-cta-band > div { max-width: 620px; } }
.pr-cta-band .pr-title.sm { color: #fff; }
.pr-cta-band .pr-lead { margin-top: 12px; }

/* ===== Contact page ===== */
.pr-hero-contact { background-image: linear-gradient(115deg, rgba(7,24,46,.93) 0%, rgba(10,37,64,.8) 50%, rgba(7,24,46,.9) 100%), url('images/contract-logistics.jpg'); background-size: cover; background-position: center; }
.pr-contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
@media (min-width: 640px) { .pr-contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pr-contact-grid { grid-template-columns: repeat(4, 1fr); } }
.pr-contact-card { text-align: center; }
.pr-contact-card .pr-chip { margin: 0 auto 18px; }
.pr-contact-value { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 16px; line-height: 1.4; margin: 6px 0 10px; }

.pr-contact-layout { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 1024px) { .pr-contact-layout { grid-template-columns: 1.15fr 0.85fr; gap: 44px; } }

.pr-form-card { background: #fff; border: 1px solid var(--cloud); border-radius: 22px; padding: 38px 34px; box-shadow: 0 30px 60px -34px rgba(7,24,46,.25); }
.pr-form { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.pr-form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) { .pr-form-row { grid-template-columns: 1fr 1fr; } }
.pr-field { display: flex; flex-direction: column; }
.pr-field label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.pr-field label span { color: var(--ember); }
.pr-field input, .pr-field select, .pr-field textarea {
  font-family: inherit; font-size: 14.5px; color: var(--graphite);
  background: var(--mist); border: 1px solid var(--cloud); border-radius: 12px;
  padding: 13px 15px; outline: none; transition: border-color .2s, background .2s, box-shadow .2s; width: 100%;
}
.pr-field input::placeholder, .pr-field textarea::placeholder { color: var(--steel); opacity: .7; }
.pr-field input:focus, .pr-field select:focus, .pr-field textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,162,39,.15); }
.pr-form-submit { width: 100%; justify-content: center; margin-top: 6px; }

.pr-contact-aside { display: flex; flex-direction: column; gap: 22px; }
.pr-map-embed { border-radius: 20px; overflow: hidden; border: 1px solid var(--cloud); box-shadow: 0 30px 60px -34px rgba(7,24,46,.25); min-height: 300px; }
.pr-map-embed iframe { display: block; }
.pr-office-card { background: #fff; border: 1px solid var(--cloud); border-radius: 20px; padding: 28px; }
.pr-office-row { display: flex; align-items: flex-start; gap: 14px; margin-top: 18px; }
.pr-office-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pr-office-row div { display: flex; flex-direction: column; }
.pr-office-row strong { font-size: 14px; color: var(--ink); font-family: var(--font-display); }
.pr-office-row span { font-size: 14px; color: var(--steel); line-height: 1.5; }

/* ===== FAQ page ===== */
.pr-faq-layout { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 1024px) { .pr-faq-layout { grid-template-columns: 320px 1fr; gap: 44px; } }
.pr-faq-side { display: flex; flex-direction: column; gap: 22px; position: sticky; }
@media (min-width: 1024px) { .pr-faq-side { position: sticky; top: 100px; } }
.pr-faq-card { background: #fff; border: 1px solid var(--cloud); border-radius: 20px; padding: 28px; box-shadow: 0 20px 40px -30px rgba(7,24,46,.2); }
.pr-faq-contact { display: flex; flex-direction: column; gap: 12px; margin: 18px 0 22px; }
.pr-faq-contact a, .pr-faq-contact span { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--graphite); text-decoration: none; line-height: 1.5; word-break: break-word; }
.pr-faq-contact svg { color: var(--gold); flex-shrink: 0; }
.pr-faq-contact a:hover { color: var(--antique); }
.pr-faq-cta { width: 100%; justify-content: center; }
.pr-faq-quicklinks { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.pr-faq-quicklinks a { font-size: 14px; color: var(--graphite); text-decoration: none; padding: 9px 12px; border-radius: 10px; transition: background .2s, color .2s, padding-left .2s; }
.pr-faq-quicklinks a:hover { background: var(--mist); color: var(--midnight); padding-left: 16px; }

.pr-faq-panel { background: #fff; border: 1px solid var(--cloud); border-radius: 22px; padding: 30px; box-shadow: 0 24px 50px -34px rgba(7,24,46,.22); }
@media (min-width: 640px) { .pr-faq-panel { padding: 38px; } }
.pr-faq-search { margin-bottom: 26px; }
.pr-faq-search label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brass); margin-bottom: 10px; }
.pr-faq-search-input { position: relative; display: flex; align-items: center; }
.pr-faq-search-input svg { position: absolute; left: 16px; color: var(--steel); pointer-events: none; }
.pr-faq-search-input input { width: 100%; font-family: inherit; font-size: 15px; color: var(--graphite); background: var(--mist); border: 1px solid var(--cloud); border-radius: 12px; padding: 14px 16px 14px 46px; outline: none; transition: border-color .2s, background .2s, box-shadow .2s; }
.pr-faq-search-input input::placeholder { color: var(--steel); }
.pr-faq-search-input input:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,162,39,.15); }
.pr-faq-list { display: flex; flex-direction: column; gap: 12px; }
.pr-faq-empty { font-size: 14px; color: var(--steel); margin-top: 16px; padding: 16px; background: var(--mist); border-radius: 12px; text-align: center; }
.pr-faq-empty-box { border: 1px dashed var(--cloud); background: var(--mist); padding: 24px; border-radius: 14px; font-size: 14px; color: var(--steel); }

/* ===== Track-order page ===== */
.pr-track-layout { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 1040px; margin: 0 auto; }
@media (min-width: 1024px) { .pr-track-layout { grid-template-columns: 1.4fr 0.6fr; gap: 36px; } }
.pr-form-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 6px; }
.pr-alert-error { display: flex; align-items: center; gap: 12px; margin: 18px 0; padding: 14px 18px; border-radius: 12px; background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.3); color: var(--ember); font-size: 14px; font-weight: 600; }

.pr-track-help { background: linear-gradient(160deg, var(--midnight), var(--abyss)); border: 1px solid rgba(245,217,139,.18); border-radius: 22px; overflow: hidden; height: fit-content; }
.pr-track-help-head { display: flex; align-items: center; gap: 12px; padding: 20px 26px; color: var(--champagne); font-family: var(--font-display); font-weight: 700; font-size: 17px; border-bottom: 1px solid rgba(245,217,139,.14); }
.pr-track-help-body { padding: 24px 26px; }
.pr-track-help-body .pr-card-text { color: rgba(255,255,255,.7); }
.pr-track-help-list { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
.pr-track-help-list .pr-office-row svg { color: var(--gold); }
.pr-track-help-list strong { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.pr-track-help-list span { color: rgba(255,255,255,.9); font-size: 14px; word-break: break-word; }

.pr-track-info { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1040px; margin: 48px auto 0; }
@media (min-width: 768px) { .pr-track-info { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   ACCESSIBILITY — reduced motion gate (always last)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .pr-marquee-track { animation: none !important; }
}

