/* =====================================================================
   Fast Forward Logistics — full site
   Palette:  ink #0B1F33 · steel #16324A · paper #F5F6F4
             signal amber #F2A104 · sea teal #2A9D8F · alert #D64545
   Type:     Barlow Semi Condensed (display) · Inter (body) · IBM Plex Mono (codes)
   ===================================================================== */

:root {
  --ink: #0b1f33;
  --ink-2: #0f2a44;
  --steel: #16324a;
  --steel-2: #24475f;
  --paper: #f5f6f4;
  --paper-2: #ffffff;
  --line: #dfe3e6;
  --line-dk: rgba(255, 255, 255, 0.14);
  --muted: #5c6b78;
  --muted-dk: #9fb2c2;
  --amber: #f2a104;
  --amber-dk: #d98e00;
  --teal: #2a9d8f;
  --alert: #d64545;
  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 26px 60px -30px rgba(11, 31, 51, 0.42);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1160px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 50, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 50, 74, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 0, #000, transparent 80%);
}

/* ---------- image placeholders (swap for <img> later) ---------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: linear-gradient(
    135deg,
    rgba(22, 50, 74, 0.08),
    rgba(22, 50, 74, 0.03)
  );
  border: 1.5px dashed rgba(22, 50, 74, 0.22);
  display: grid;
  place-items: center;
  color: var(--steel);
  min-height: 80px;
}
.ph::after {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  opacity: 0.7;
  text-align: center;
  padding: 0 10px;
}
.ph[data-size]::after {
  content: attr(data-label) " · " attr(data-size);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: shimmer 2.6s var(--ease) infinite;
}
@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}
.ph.on-dark {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--muted-dk);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}
.ph.on-dark::after {
  color: var(--muted-dk);
}

/* ---------- shared building blocks ---------- */
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin: 0 0 16px;
}
.eyebrow.light {
  color: var(--amber);
}
.section {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 52px);
}
.section-head {
  max-width: 640px;
  margin: 0 0 clamp(36px, 5vw, 56px);
}
.section-head.narrow {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.section-lead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  border: 0;
  transition:
    transform 0.12s,
    background 0.2s,
    box-shadow 0.2s;
}
.btn svg {
  transition: transform 0.2s;
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn:active {
  transform: translateY(1px);
}
.btn-amber {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 12px 26px -12px rgba(242, 161, 4, 0.7);
}
.btn-amber:hover {
  background: var(--amber-dk);
}
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover {
  background: var(--steel);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.hidden {
  display: none !important;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================ NAV ============================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 52px);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    padding 0.3s;
}
.topbar.scrolled {
  background: rgba(245, 246, 244, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--amber);
  flex-shrink: 0;
}
.brand-name {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.brand-name em {
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
}
/* nav sits over dark hero until scrolled */
.topbar:not(.scrolled) .brand-name {
  color: #fff;
}
.topbar:not(.scrolled) .brand-name em {
  color: var(--muted-dk);
}
.topbar:not(.scrolled) .topnav a {
  color: rgba(255, 255, 255, 0.85);
}
.topbar:not(.scrolled) .topnav a:hover {
  color: #fff;
}
.topbar:not(.scrolled) .nav-toggle span {
  background: #fff;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topnav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.topnav a:hover {
  color: var(--ink);
}
.nav-cta {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--amber);
  color: var(--ink) !important;
  padding: 9px 18px;
  border-radius: 8px;
}
.nav-cta:hover {
  background: var(--amber-dk);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: 120px clamp(18px, 5vw, 52px) 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media .ph-hero {
  width: 100%;
  height: 118%;
  border-radius: 0;
  border: 0;
  min-height: 0;
  background: linear-gradient(
    135deg,
    var(--steel) 0%,
    var(--ink) 55%,
    #061626 100%
  );
}
.hero-media .ph-hero::before {
  animation-duration: 4s;
  opacity: 0.6;
}
.hero-media .ph-hero::after {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 18, 32, 0.55) 0%,
    rgba(6, 18, 32, 0.35) 40%,
    rgba(6, 18, 32, 0.85) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding-bottom: 80px;
}
.hero-title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 9vw, 104px);
  line-height: 0.94;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.hero-title .accent {
  color: var(--amber);
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  line-height: 1.55;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* port ticker */
.ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  background: rgba(6, 18, 32, 0.4);
  backdrop-filter: blur(4px);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker-track span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  padding: 14px 26px;
  white-space: nowrap;
  position: relative;
}
.ticker-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* ============================ TRUST ============================ */
.trust {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 52px) 0;
  text-align: center;
}
.trust-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}
.ph-logo {
  height: 52px;
  opacity: 0.75;
}
.ph-logo::before {
  display: none;
}

/* ============================ STATS ============================ */
.stats {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 26px 12px;
  border-radius: var(--r);
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stat-num {
  display: block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -1px;
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ============================ SERVICES ============================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 60px -30px rgba(11, 31, 51, 0.5);
}
.ph-card {
  border-radius: 0;
  border: 0;
  border-bottom: 1px dashed rgba(22, 50, 74, 0.18);
  aspect-ratio: 16/10;
  min-height: 0;
}
.card:hover .ph-card::before {
  animation-duration: 1.6s;
}
.card-body {
  padding: 24px;
}
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(242, 161, 4, 0.14);
  color: var(--amber-dk);
  margin-bottom: 14px;
}
.card-body h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 8px;
}
.card-body p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.card-link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.card-link:hover {
  color: var(--amber-dk);
}

/* ============================ PROCESS ============================ */
.process {
  position: relative;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: s;
}
.step {
  position: relative;
  padding: 26px 20px 24px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.step::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -12px;
  width: 12px;
  height: 2px;
  background: var(--line);
}
.step:last-child::after {
  display: none;
}
.step-no {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-dk);
  background: rgba(242, 161, 4, 0.13);
  padding: 5px 10px;
  border-radius: 7px;
}
.step h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  margin: 16px 0 8px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ============================ NETWORK / SPLIT ============================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.split-media {
  position: relative;
}
.ph-map {
  aspect-ratio: 4/3;
  border-radius: var(--r);
}
.float-badge {
  position: absolute;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -18px rgba(11, 31, 51, 0.6);
}
.float-badge-1 {
  left: -10px;
  bottom: 24px;
  text-align: left;
}
.float-badge-1 .fb-num {
  display: block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--amber);
  line-height: 1;
}
.float-badge-1 .fb-label {
  font-size: 12px;
  color: var(--muted-dk);
  letter-spacing: 0.3px;
}
.float-badge-2 {
  right: -10px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
}
.fb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(42, 157, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 157, 143, 0);
  }
}
.check-list {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--teal);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ============================ TRACKING ============================ */
.tracking-section {
  position: relative;
}
.searchBlock {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}
.tracker {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 640px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.field {
  flex: 1;
  min-width: 230px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 16px 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(11, 31, 51, 0.08);
}
.field-label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
#trackInput {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
}
#trackInput::placeholder {
  color: #b9c2ca;
  font-weight: 500;
}
.track-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.1s;
}
.track-btn:hover {
  background: var(--steel);
}
.track-btn:active {
  transform: translateY(1px);
}
.track-btn svg {
  transition: transform 0.2s;
}
.track-btn:hover svg {
  transform: translateX(3px);
}
.demo-hints {
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  max-width: 640px;
}
.demo-hints button {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(22, 50, 74, 0.06);
  border: 1px solid var(--line);
  color: var(--steel);
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.demo-hints button em {
  color: var(--amber-dk);
  font-style: normal;
  margin-left: 4px;
}
.demo-hints button:hover {
  background: rgba(242, 161, 4, 0.12);
  border-color: var(--amber);
}

.state {
  margin-top: 28px;
  padding: 40px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-align: center;
  box-shadow: var(--shadow);
}
.state h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.state p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.state code {
  font-family: "IBM Plex Mono", monospace;
  background: rgba(22, 50, 74, 0.08);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 0.92em;
}
.spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto 16px;
  border: 3px solid var(--line);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.result {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

/* ---- head: tracking number + status + big ETA (FedEx-style) ---- */
.track-head {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 22px;
  background: var(--ink);
  background-image: radial-gradient(
    120% 140% at 100% 0%,
    var(--ink-2),
    var(--ink) 60%
  );
  color: #fff;
  border-radius: var(--r);
  padding: clamp(22px, 4vw, 30px);
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.th-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.th-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-dk);
  margin: 0;
}
.th-number {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: clamp(22px, 4vw, 30px);
  margin: 0;
}
.th-eta {
  text-align: right;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 180px;
}
.eta-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 4px;
}
.eta-date {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
.eta-year {
  font-size: 12.5px;
  color: var(--muted-dk);
  margin: 6px 0 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--ink);
}
.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.status-pill.s-live {
  background: var(--amber);
}
.status-pill.s-done {
  background: var(--teal);
  color: #fff;
}
.status-pill.s-alert {
  background: var(--alert);
  color: #fff;
}
.status-pill.s-neutral {
  background: #cfd8de;
}

/* ---- alert banner ---- */
.alert-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(214, 69, 69, 0.1);
  border: 1px solid rgba(214, 69, 69, 0.35);
  color: #a52d2d;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
}
.alert-banner svg {
  color: var(--alert);
  flex-shrink: 0;
}

/* ---- progress stepper ---- */
.progress-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(26px, 4vw, 38px) clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}
.stepper {
  position: relative;
  display: flex;
  gap: 8px;
}
.s-track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 23px;
  height: 3px;
  transform: translateY(-50%);
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.s-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 1.1s var(--ease);
}
.stp {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.stp-ic {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--line);
  color: var(--muted-dk);
  transition: transform 0.3s var(--ease);
}
.stp-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2px;
  max-width: 11ch;
}
.stp.done .stp-ic {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.stp.done .stp-label {
  color: var(--ink);
}
.stp.active .stp-ic {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  box-shadow: 0 0 0 6px rgba(242, 161, 4, 0.2);
  animation: stepPulse 2s infinite;
}
.stp.active .stp-label {
  color: var(--ink);
  font-weight: 700;
}
@keyframes stepPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 161, 4, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(242, 161, 4, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 161, 4, 0);
  }
}

/* ---- from / to ---- */
.fromto {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.ft {
  flex: 1;
  min-width: 0;
}
.ft-to {
  text-align: right;
}
.ft-role {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin: 0 0 4px;
}
.ft-place {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  line-height: 1.25;
}
.ft-when {
  font-size: 12.5px;
  color: var(--muted);
  margin: 5px 0 0;
  font-family: "IBM Plex Mono", monospace;
}
.ft-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(242, 161, 4, 0.14);
  color: var(--amber-dk);
  flex-shrink: 0;
}

/* ---- two columns: facts + history ---- */
.track-cols {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: start;
}
.facts-card,
.history-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}
.facts-card h3,
.history-card h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.facts-card h3::after,
.history-card h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.fact {
  min-width: 0;
}
.fact-k {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}
.fact-v {
  font-size: 14.5px;
  font-weight: 500;
  margin: 0;
  line-height: 1.35;
  word-break: break-word;
}
.fact-v.mono {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ---- travel history (grouped by date) ---- */
.history {
  display: grid;
  gap: 22px;
}
.hist-group {
}
.hist-date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.hist-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hist-event {
  position: relative;
  display: grid;
  grid-template-columns: 56px 18px 1fr;
  align-items: start;
  padding-bottom: 18px;
}
.hist-event:last-child {
  padding-bottom: 0;
}
.he-time {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: var(--muted);
  padding-top: 1px;
}
.he-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-top: 4px;
  background: var(--paper-2);
  border: 2.5px solid var(--line);
  justify-self: center;
}
.hist-event::before {
  content: "";
  position: absolute;
  left: calc(56px + 8px);
  top: 16px;
  bottom: -2px;
  width: 2px;
  background: var(--line);
}
.hist-event:last-child::before {
  display: none;
}
.hist-event.latest .he-dot {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(242, 161, 4, 0.18);
}
.he-body {
  padding-left: 12px;
}
.he-desc {
  font-weight: 600;
  font-size: 14.5px;
  margin: 0 0 2px;
}
.he-loc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.hist-empty {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 820px) {
  .track-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .th-eta {
    text-align: left;
    padding-left: 0;
    border-left: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    width: 100%;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  /* vertical stepper on mobile */
  .stepper {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .s-track {
    display: none;
  }
  .stp {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 10px 0;
    position: relative;
  }
  .stp:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 46px;
    bottom: -2px;
    width: 2px;
    background: var(--line);
  }
  .stp.done:not(:last-child)::after {
    background: var(--teal);
  }
  .stp-label {
    max-width: none;
    font-size: 15px;
  }
  .fromto {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: left;
  }
  .ft-to {
    text-align: left;
  }
  .ft-arrow {
    transform: rotate(90deg);
  }
  .hist-event {
    grid-template-columns: 48px 16px 1fr;
  }
  .hist-event::before {
    left: calc(48px + 7px);
  }
}

/* ============================ WHY / FEATURES ============================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  padding: 28px;
  border-radius: var(--r);
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.feature:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}
.feature-ic {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--amber);
  margin-bottom: 16px;
}
.feature h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.feature p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* ============================ TESTIMONIALS ============================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: var(--ink);
  background-image: radial-gradient(
    120% 130% at 0 0,
    var(--ink-2),
    var(--ink) 55%
  );
  color: #fff;
  border-radius: var(--r);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  flex: 1;
  position: relative;
}
.quote-card blockquote::before {
  content: "“";
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 60px;
  color: var(--amber);
  line-height: 0;
  position: absolute;
  top: 14px;
  left: -4px;
  opacity: 0.5;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
}
.ph-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  min-height: 0;
}
.ph-avatar::after {
  font-size: 8px;
}
.quote-card figcaption strong {
  display: block;
  font-size: 14.5px;
}
.quote-card figcaption span {
  display: block;
  font-size: 12.5px;
  color: var(--muted-dk);
}

/* ============================ CTA ============================ */
.cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--ink);
  background-image: radial-gradient(
    120% 120% at 100% 0,
    var(--steel),
    var(--ink) 55%
  );
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 52px);
}
.cta-title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 6vw, 58px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin: 0 0 34px;
}
.quote-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quote-form input,
.quote-form select {
  width: 100%;
  padding: 15px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.quote-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.quote-form select {
  color: rgba(255, 255, 255, 0.7);
}
.quote-form select option {
  color: var(--ink);
}
.quote-form input:focus,
.quote-form select:focus {
  outline: 0;
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.1);
}
.qf-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: 4px 0 0;
}
.qf-note.ok {
  color: var(--teal);
  font-weight: 600;
}

/* ============================ FOOTER ============================ */
.footer {
  position: relative;
  z-index: 1;
  background: #081521;
  color: var(--muted-dk);
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) clamp(18px, 5vw, 52px) 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer .brand-name {
  color: #fff;
}
.footer .brand-name em {
  color: var(--muted-dk);
}
.footer .brand-mark {
  background: rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 34ch;
}
.footer-col h4 {
  color: #fff;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--muted-dk);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--amber);
}
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px clamp(18px, 5vw, 52px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
}
.mode-badge {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(242, 161, 4, 0.15);
  color: var(--amber);
  font-weight: 600;
}
.mode-badge.live {
  background: rgba(42, 157, 143, 0.18);
  color: var(--teal);
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 960px) {
  .cards,
  .feature-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step::after {
    display: none;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-media {
    order: -1;
  }
  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .topnav {
    position: fixed;
    inset: 64px 12px auto 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 12px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }
  .topnav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .topbar:not(.scrolled) .topnav a {
    color: var(--muted);
  }
  .topbar:not(.scrolled) .topnav .nav-cta {
    color: var(--ink) !important;
  }
  .topnav a {
    padding: 12px 10px;
    border-radius: 8px;
  }
  .topnav a:hover {
    background: rgba(22, 50, 74, 0.05);
  }
  .nav-toggle {
    display: flex;
    z-index: 60;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards,
  .feature-grid,
  .quote-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .qf-row {
    grid-template-columns: 1fr;
  }
  .rh-top {
    flex-direction: column;
  }
  .float-badge-1 {
    left: 0;
  }
  .float-badge-2 {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .ticker-track {
    animation: none;
  }
}

/* ============================================================
   FedEx-style tracking result
   ============================================================ */
.fx {
  display: grid;
  gap: 22px;
}

/* --- headline --- */
.fx-head {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(22px, 3.5vw, 32px);
  box-shadow: var(--shadow);
  border-left: 6px solid var(--muted-dk);
}
.fx-head.fx-tone-live {
  border-left-color: var(--amber);
}
.fx-head.fx-tone-done {
  border-left-color: var(--teal);
}
.fx-head.fx-tone-alert {
  border-left-color: var(--alert);
}
.fx-status-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.fx-status-date {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5.5vw, 46px);
  line-height: 1;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
  color: var(--ink);
}
.fx-tone-done .fx-status-date {
  color: var(--teal);
}
.fx-tone-alert .fx-status-date {
  color: var(--alert);
}
.fx-status-sub {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--steel);
  margin: 0;
}
.fx-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted-dk);
  flex-shrink: 0;
}
.fx-tone-live .fx-dot {
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(242, 161, 4, 0.5);
  animation: pulse 2s infinite;
}
.fx-tone-done .fx-dot {
  background: var(--teal);
}
.fx-tone-alert .fx-dot {
  background: var(--alert);
  box-shadow: 0 0 0 0 rgba(214, 69, 69, 0.5);
  animation: pulse 2s infinite;
}
.fx-idcard {
  text-align: right;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fx-id-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}
.fx-id-no {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: 0.5px;
  margin: 0 0 4px;
  color: var(--ink);
}
.fx-id-service {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* --- stepper --- */
.fx-stepper {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(26px, 4vw, 38px) clamp(18px, 4vw, 44px) clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
  position: relative;
}
.fx-track {
  position: absolute;
  left: calc(clamp(18px, 4vw, 44px) + 27px);
  right: calc(clamp(18px, 4vw, 44px) + 27px);
  top: calc(clamp(26px, 4vw, 38px) + 27px);
  height: 4px;
  background: var(--line);
  border-radius: 4px;
}
.fx-progress {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 1.1s var(--ease);
}
.fx-stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 1;
}
.fx-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.fx-ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  border: 2.5px solid var(--line);
  color: var(--muted-dk);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    background 0.3s,
    color 0.3s;
}
.fx-ic svg {
  width: 24px;
  height: 24px;
}
.fx-stage-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2px;
}
.fx-stage.done .fx-ic {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}
.fx-stage.done .fx-stage-label {
  color: var(--steel);
}
.fx-stage.current .fx-ic {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
  transform: scale(1.14);
  box-shadow: 0 0 0 6px rgba(242, 161, 4, 0.18);
}
.fx-stage.current .fx-stage-label {
  color: var(--ink);
  font-weight: 700;
}
.fx-stage.current.alert .fx-ic {
  border-color: var(--alert);
  background: var(--alert);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(214, 69, 69, 0.18);
}

/* --- body: history + facts --- */
.fx-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  align-items: start;
}
.fx-h {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fx-h::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.fx-history-wrap,
.fx-facts-wrap {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}
.fx-day {
  margin-bottom: 22px;
}
.fx-day:last-child {
  margin-bottom: 0;
}
.fx-day-head {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--amber-dk);
  font-weight: 600;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.fx-evt {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 10px 0;
  position: relative;
}
.fx-evt + .fx-evt {
  border-top: 1px solid rgba(22, 50, 74, 0.06);
}
.fx-evt-time {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--muted);
  padding-top: 1px;
}
.fx-evt-main {
  position: relative;
  padding-left: 22px;
}
.fx-evt-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2.5px solid var(--line);
}
.fx-evt.current .fx-evt-main::before {
  border-color: var(--amber);
  background: var(--amber);
}
.fx-evt-desc {
  font-weight: 600;
  font-size: 14.5px;
  margin: 0 0 2px;
  color: var(--ink);
}
.fx-evt.current .fx-evt-desc {
  color: var(--ink);
}
.fx-evt-loc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* --- facts --- */
.fx-route {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  margin-bottom: 24px;
  background: var(--paper);
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
}
.fx-route-pt {
  flex: 1;
  min-width: 0;
}
.fx-route-to {
  text-align: right;
}
.fx-route-role {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin-bottom: 4px;
}
.fx-route-pt strong {
  display: block;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--ink);
}
.fx-route-party {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.fx-route-arrow {
  width: 20px;
  height: 20px;
  color: var(--muted-dk);
  flex-shrink: 0;
  margin-top: 16px;
}
.fx-facts {
  margin: 0;
  display: grid;
  gap: 0;
}
.fx-fact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(22, 50, 74, 0.06);
}
.fx-fact:last-child {
  border-bottom: 0;
}
.fx-fact dt {
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}
.fx-fact dd {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  word-break: break-word;
}
.fx-fact dd.mono {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.3px;
}

@media (max-width: 860px) {
  .fx-body {
    grid-template-columns: 1fr;
  }
  .fx-facts-wrap {
    order: -1;
  }
}
@media (max-width: 560px) {
  .fx-head {
    flex-direction: column;
  }
  .fx-idcard {
    text-align: left;
    padding-left: 0;
    border-left: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .fx-ic {
    width: 44px;
    height: 44px;
  }
  .fx-ic svg {
    width: 20px;
    height: 20px;
  }
  .fx-stage-label {
    font-size: 10.5px;
  }
  .fx-track {
    left: calc(clamp(18px, 4vw, 44px) + 22px);
    right: calc(clamp(18px, 4vw, 44px) + 22px);
    top: calc(clamp(26px, 4vw, 38px) + 22px);
  }
  .fx-evt {
    grid-template-columns: 52px 1fr;
    gap: 10px;
  }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* --- logo slot (set SITE.logo in main.js) --- */
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
@media (max-width: 560px) {
  .brand-logo {
    height: 30px;
  }
}

/* --- real <img> photos inside service cards & trust bar --- */
.card > img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-bottom: 1px dashed rgba(22, 50, 74, 0.18);
}
.trust-logos img {
  max-height: 58px;
  width: 100%;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(0.2);
  transition:
    opacity 0.2s,
    filter 0.2s;
}
.trust-logos img:hover {
  opacity: 1;
  filter: none;
}
.quote-card figcaption img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.split-media > img {
  width: 100%;
  border-radius: var(--r);
  display: block;
}

/* --- active nav item --- */
.topnav a.active {
  color: var(--ink);
  position: relative;
}
.topnav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.topbar:not(.scrolled) .topnav a.active {
  color: #fff;
}
@media (max-width: 640px) {
  .topnav a.active::after {
    display: none;
  }
  .topnav a.active {
    background: rgba(242, 161, 4, 0.12);
  }
}

/* --- sub-page banner --- */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  background-image: radial-gradient(
    120% 150% at 100% 0,
    var(--steel),
    var(--ink) 60%
  );
  padding: calc(92px + clamp(24px, 5vw, 56px)) clamp(18px, 5vw, 52px)
    clamp(40px, 6vw, 68px);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 75% 20%, #000, transparent 72%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}
.breadcrumb {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted-dk);
  margin: 0 0 14px;
}
.breadcrumb a {
  color: var(--muted-dk);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--amber);
}

/* --- services teaser CTA row --- */
.section-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* --- generic light form fields (Quote + Contact) --- */
.q-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(22px, 3.5vw, 34px);
  box-shadow: var(--shadow);
}
.q-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.q-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.q-field.full {
  grid-column: 1 / -1;
}
.q-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.2px;
}
.q-field label .req {
  color: var(--amber-dk);
}
.q-field input,
.q-field select,
.q-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.q-field textarea {
  resize: vertical;
  min-height: 92px;
}
.q-field input:focus,
.q-field select:focus,
.q-field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(11, 31, 51, 0.08);
}
.q-actions {
  margin-top: 20px;
}
.q-error {
  margin-top: 16px;
  background: rgba(214, 69, 69, 0.1);
  border: 1px solid rgba(214, 69, 69, 0.4);
  color: #9d2b2b;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
}

/* --- quote page layout + estimate --- */
.quote-layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 30px;
  align-items: start;
}
.quote-aside {
  display: grid;
  gap: 18px;
}
.aside-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}
.aside-card h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 14px;
}
.aside-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: a;
}
.aside-steps li {
  position: relative;
  padding-left: 38px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.aside-steps li::before {
  counter-increment: a;
  content: counter(a);
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}
.aside-card.dark {
  background: var(--ink);
  color: #fff;
  background-image: radial-gradient(
    120% 130% at 0 0,
    var(--ink-2),
    var(--ink) 55%
  );
}
.aside-card.dark h3 {
  color: #fff;
}
.aside-contact {
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.aside-contact a {
  color: var(--amber);
  text-decoration: none;
}
.aside-contact span {
  color: var(--muted-dk);
}

.q-estimate {
  margin-top: 22px;
  border: 1px solid var(--teal);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: rise 0.5s var(--ease);
}
.q-est-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--ink);
  background-image: radial-gradient(
    120% 140% at 100% 0,
    var(--steel),
    var(--ink) 60%
  );
  color: #fff;
  padding: 24px 26px;
}
.q-est-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 6px;
}
.q-est-price {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1;
  margin: 0 0 8px;
}
.q-est-note {
  font-size: 12.5px;
  color: var(--muted-dk);
  margin: 0;
}
.q-est-ref {
  text-align: right;
}
.q-est-ref span {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-dk);
}
.q-est-ref strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  color: var(--amber);
}
.q-est-facts {
  margin: 0;
  padding: 20px 26px;
  background: var(--paper-2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 20px;
}
.q-est-facts div {
  min-width: 0;
}
.q-est-facts dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.q-est-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.q-est-thanks {
  margin: 0;
  padding: 16px 26px;
  background: rgba(42, 157, 143, 0.08);
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--steel);
}

/* --- contact page --- */
.contact-layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 52px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 16px;
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow);
}
.contact-row .ci-ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--amber);
}
.contact-row h4 {
  margin: 0 0 4px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.contact-row p,
.contact-row a {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
}
.contact-row a:hover {
  color: var(--amber-dk);
}
.map-ph {
  margin-top: 6px;
}
.map-ph.ph {
  aspect-ratio: 16/7;
  border-radius: var(--r);
}

/* --- admin page --- */
.admin-note {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 52px);
  margin-top: -18px;
}
.admin-note-inner {
  background: rgba(242, 161, 4, 0.1);
  border: 1px solid rgba(242, 161, 4, 0.4);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--steel);
}
.admin-note-inner strong {
  color: var(--ink);
}
.admin-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(18px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}
.admin-panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}
.admin-panel h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 4px;
}
.admin-panel .panel-sub {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 20px;
}
.ev-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0 10px;
}
.ev-head h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0;
}
#eventRows {
  display: grid;
  gap: 8px;
}
.ev-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr auto;
  gap: 8px;
  align-items: center;
}
.ev-row input {
  padding: 9px 10px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  background: var(--paper);
  min-width: 0;
}
.ev-row input:focus {
  outline: 0;
  border-color: var(--ink);
}
.ev-del {
  border: 0;
  background: rgba(214, 69, 69, 0.12);
  color: var(--alert);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}
.ev-del:hover {
  background: rgba(214, 69, 69, 0.22);
}
.btn-sm {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--steel);
}
.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.admin-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  align-items: center;
}

.admin-list {
  display: grid;
  gap: 12px;
}
.admin-list h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 4px;
}
.admin-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  box-shadow: 0 12px 28px -22px rgba(11, 31, 51, 0.5);
}
.admin-item-tn {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 2px;
}
.admin-item-lane {
  font-size: 13px;
  color: var(--steel);
  margin: 0 0 4px;
}
.admin-item-meta {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-item-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ai-btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--steel);
  cursor: pointer;
}
.ai-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.ai-danger {
  color: var(--alert);
  border-color: rgba(214, 69, 69, 0.3);
}
.ai-danger:hover {
  background: rgba(214, 69, 69, 0.1);
  border-color: var(--alert);
  color: var(--alert);
}
.admin-empty {
  color: var(--muted);
  font-size: 14px;
  padding: 18px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--r-sm);
}
.admin-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 52px) clamp(40px, 6vw, 64px);
}
.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.pill {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 5px;
  background: #e4e8eb;
  color: var(--steel);
}
.pill-in_transit,
.pill-customs,
.pill-out_for_delivery {
  background: rgba(242, 161, 4, 0.16);
  color: var(--amber-dk);
}
.pill-delivered {
  background: rgba(42, 157, 143, 0.16);
  color: var(--teal);
}
.pill-delayed,
.pill-exception {
  background: rgba(214, 69, 69, 0.14);
  color: var(--alert);
}
#adminFlash {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow);
  z-index: 80;
  transition: transform 0.35s var(--ease);
}
#adminFlash.show {
  transform: translate(-50%, 0);
}

@media (max-width: 860px) {
  .quote-layout,
  .contact-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .q-est-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .q-grid {
    grid-template-columns: 1fr;
  }
  .ev-row {
    grid-template-columns: 1fr 1fr;
  }
  .ev-row .ev-desc {
    grid-column: 1 / -1;
  }
  .q-est-head {
    flex-direction: column;
  }
  .q-est-ref {
    text-align: left;
  }
}

/* ============================================================
   EXTRA CONTENT (FAQ, prose, lane cards)
   ============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.prose p strong {
  color: var(--ink);
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}
.faq details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: "IBM Plex Mono", monospace;
  color: var(--amber-dk);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* lane cards reuse .feature-grid/.feature; add a transit tag */
.lane-tag {
  display: inline-block;
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--amber-dk);
  background: rgba(242, 161, 4, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
}

/* --- admin form section titles --- */
.form-section-title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--amber-dk);
  margin: 26px 0 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.form-section-title:first-of-type {
  margin-top: 18px;
}
.tn-readonly {
  background: rgba(11, 31, 51, 0.04) !important;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.5px;
  cursor: default;
}

/* --- sender/receiver in shipment list --- */
.admin-item-parties {
  display: grid;
  gap: 3px;
  margin: 4px 0;
}
.admin-party {
  font-size: 12.5px;
  color: var(--steel);
}
.admin-party:first-child {
  color: var(--muted);
}

/* ============================================================
   MULTI-STEP QUOTE FORM (index.html CTA)
   ============================================================ */
.quote-form {
  max-width: 580px;
  margin: 0 auto;
}

/* step wrapper — only one .qf-step visible at a time */
.qf-step {
  display: none;
}
.qf-step.active {
  display: grid;
  gap: 12px;
  animation: qfIn 0.35s var(--ease);
}
@keyframes qfIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* step indicator */
.qf-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 22px;
}
.qf-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.qf-step-dot.active {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.qf-step-dot.done {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.qf-step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  max-width: 40px;
}
.qf-step-line.done {
  background: var(--teal);
}

/* rows */
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.qf-row.single {
  grid-template-columns: 1fr;
}

/* field wrapper (label + input) */
.qf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.qf-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.qf-field input,
.qf-field select,
.qf-field textarea {
  padding: 11px 14px;
  border-radius: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.qf-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.qf-field select {
  color: rgba(255, 255, 255, 0.85);
}
.qf-field select option {
  color: var(--ink);
  background: #fff;
}
.qf-field textarea {
  resize: vertical;
  min-height: 72px;
  color: #fff;
}
.qf-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  outline: 0;
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.14);
}
/* error state */
.qf-field input.err,
.qf-field select.err,
.qf-field textarea.err {
  border-color: var(--alert) !important;
  background: rgba(214, 69, 69, 0.12) !important;
}
.qf-field .qf-err-msg {
  font-size: 11px;
  color: var(--alert);
  font-weight: 600;
  display: none;
  margin-top: 2px;
}
.qf-field.has-err .qf-err-msg {
  display: block;
}

/* payment options */
.qf-payment-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.qf-pay-opt {
  display: none;
}
.qf-pay-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.qf-pay-label svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}
.qf-pay-opt:checked + .qf-pay-label {
  border-color: var(--amber);
  background: rgba(242, 161, 4, 0.15);
  color: #fff;
}
.qf-pay-opt:checked + .qf-pay-label svg {
  color: var(--amber);
}

/* form-level error banner */
.qf-banner-err {
  background: rgba(214, 69, 69, 0.18);
  border: 1px solid rgba(214, 69, 69, 0.5);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ffbaba;
  display: none;
}
.qf-banner-err.show {
  display: block;
  animation: qfIn 0.25s var(--ease);
}

/* nav row */
.qf-nav {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.qf-nav .btn-back {
  flex: 0 0 auto;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.qf-nav .btn-back:hover {
  border-color: #fff;
  color: #fff;
}
.qf-nav .btn-next,
.qf-nav .btn-submit {
  flex: 1;
  padding: 13px;
  border-radius: 10px;
  border: 0;
  background: var(--amber);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.qf-nav .btn-next:hover,
.qf-nav .btn-submit:hover {
  background: var(--amber-dk);
}

/* success state */
.qf-success {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: qfIn 0.4s var(--ease);
}
.qf-success.show {
  display: block;
}
.qf-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.2);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 2px solid var(--teal);
}
.qf-success-icon svg {
  color: var(--teal);
}
.qf-success h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.qf-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
}
.qf-success .ref-no {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--amber);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* service detail pages */
.svc-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: calc(92px + clamp(24px, 5vw, 56px)) clamp(18px, 5vw, 52px)
    clamp(40px, 6vw, 60px);
  background-image: radial-gradient(
    130% 160% at 100% 0,
    var(--steel),
    var(--ink) 60%
  );
}
.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 25%, #000, transparent 70%);
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
}
.svc-hero h1 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.svc-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}
.svc-detail-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) clamp(18px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: start;
}
.svc-body h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.svc-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.svc-body p:last-child {
  margin-bottom: 0;
}
.svc-includes {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow);
}
.svc-includes h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}
.svc-includes ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.svc-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--steel);
}
.svc-includes li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-cta-strip {
  background: var(--ink);
  padding: clamp(36px, 5vw, 56px) clamp(18px, 5vw, 52px);
  text-align: center;
  background-image: radial-gradient(
    120% 140% at 50% 0,
    var(--steel),
    var(--ink) 55%
  );
}
.svc-cta-strip h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.svc-cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 24px;
}
@media (max-width: 860px) {
  .svc-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .qf-row {
    grid-template-columns: 1fr;
  }
  .qf-payment-opts {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ALERT FLAG STAGES (injected between Customs and Delivered)
   ============================================================ */

/* flag stage icon — uses --flag-color CSS variable set inline */
.fx-stage.fx-stage-flag .fx-ic {
  border-color: var(--flag-color, #f2a104) !important;
  color: var(--flag-color, #f2a104) !important;
  background: color-mix(
    in srgb,
    var(--flag-color, #f2a104) 12%,
    #fff
  ) !important;
}
.fx-stage.fx-stage-flag.done .fx-ic {
  background: var(--flag-color, #f2a104) !important;
  border-color: var(--flag-color, #f2a104) !important;
  color: #fff !important;
}
.fx-stage.fx-stage-flag.current .fx-ic {
  background: var(--flag-color, #f2a104) !important;
  border-color: var(--flag-color, #f2a104) !important;
  color: #fff !important;
  box-shadow: 0 0 0 6px
    color-mix(in srgb, var(--flag-color, #f2a104) 22%, transparent) !important;
  transform: scale(1.14) !important;
}
.fx-stage.fx-stage-flag .fx-stage-label {
  color: var(--flag-color, #f2a104);
  font-weight: 700;
}

/* alert flags notice strip — shown below stepper */
.fx-flags-notice {
  display: grid;
  gap: 10px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.fx-flag-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--fc, #f2a104) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--fc, #f2a104) 30%, transparent);
}
.fx-flag-ic {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--fc, #f2a104);
  color: #fff;
}
.fx-flag-ic svg {
  width: 18px;
  height: 18px;
}
.fx-flag-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2px;
}
.fx-flag-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* wider stepper when flags are present — allow wrapping */
.fx-stages {
  flex-wrap: wrap;
  row-gap: 14px;
}

/* ── Team grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(11, 31, 51, 0.16);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--amber);
}
.team-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Timeline ── */
.timeline {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--line) 5%,
    var(--line) 95%,
    transparent
  );
}
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 0 0 36px;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.tl-year {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-dk);
  padding-top: 4px;
  text-align: right;
  flex-shrink: 0;
}
.tl-body {
  padding-left: 28px;
  position: relative;
}
.tl-body::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--amber);
}
.tl-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.tl-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 560px) {
  .timeline::before {
    left: 60px;
  }
  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .tl-year {
    font-size: 12px;
  }
}

/* ── Contact offices & map ── */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.office-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}
.office-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.office-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--amber);
  flex-shrink: 0;
}
.office-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.office-card .badge-main {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(242, 161, 4, 0.15);
  color: var(--amber-dk);
  padding: 2px 8px;
  border-radius: 4px;
}
.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted-dk);
  margin-bottom: 8px;
  line-height: 1.5;
}
.office-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--muted);
}
.map-embed {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 380px;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-placeholder {
  text-align: center;
  color: var(--muted);
}
.map-placeholder svg {
  color: var(--muted);
  margin-bottom: 10px;
}
.map-placeholder p {
  font-size: 14px;
}
@media (max-width: 860px) {
  .offices-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Map pulse animation (used in result.html Leaflet marker) ── */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 161, 4, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(242, 161, 4, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 161, 4, 0);
  }
}

/* ── result.html state cards (spinner-lg) ── */
.spinner-lg {
  width: 44px;
  height: 44px;
  border: 3px solid var(--line);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════════════════════════════
   GLOBAL MOBILE POLISH
══════════════════════════════════════════════════════ */
/* Prevent horizontal scroll on all pages */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Touch-friendly tap targets */
a,
button {
  min-height: 44px;
}
nav a,
.nav-cta,
.card-link,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Hero on very small screens */
@media (max-width: 400px) {
  .hero-title {
    font-size: clamp(28px, 9vw, 42px);
  }
  .tracker {
    flex-direction: column;
  }
  .tracker input {
    width: 100%;
    border-radius: 9px !important;
  }
  .track-btn {
    width: 100%;
    border-radius: 9px !important;
    justify-content: center;
  }
}

/* Service cards single column on very small */
@media (max-width: 380px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonial single column on mobile */
@media (max-width: 640px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Contact form full width on mobile */
@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

/* Tracking stepper wraps on mobile */
@media (max-width: 600px) {
  .fx-stages {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .fx-track {
    display: none;
  }
  .fx-body {
    grid-template-columns: 1fr;
  }
  .fx-facts {
    grid-template-columns: 1fr;
  }
}

/* Footer grid single column on mobile */
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Quote form steps on mobile */
@media (max-width: 480px) {
  .qf-payment-opts {
    grid-template-columns: 1fr;
  }
  .qf-steps-indicator {
    gap: 0;
  }
}

/* SVC detail pages */
@media (max-width: 640px) {
  .svc-detail-grid {
    padding: 24px 16px;
  }
  .svc-cta-strip {
    padding: 32px 16px;
  }
}

/* ── ON HOLD status ── */
.fx-tone-hold {
  background: linear-gradient(135deg, #7b1c1c, #c0392b);
}
.fx-tone-hold .fx-status-label {
  color: #ffd5d5;
}
.fx-tone-hold .fx-status-date {
  color: #fff;
}
.fx-tone-hold .fx-dot {
  background: #ff8080;
  animation: holdDot 1s ease infinite;
}
@keyframes holdDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.fx-hold-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff0f0;
  border: 2px solid #e74c3c;
  border-radius: var(--r);
  padding: 20px 22px;
  animation: holdFade 1.5s ease infinite alternate;
}
@keyframes holdFade {
  from {
    border-color: #e74c3c;
  }
  to {
    border-color: #ff8080;
  }
}
.fx-hold-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e74c3c;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.fx-hold-title {
  font-size: 17px;
  font-weight: 800;
  color: #c0392b;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.fx-hold-msg {
  font-size: 14px;
  color: #7b1c1c;
  line-height: 1.6;
  margin-bottom: 12px;
}
.fx-hold-cta {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}
.fx-hold-cta:hover {
  background: #c0392b;
}

/* ── New status badge colors on public tracking page ── */
.badge.invoice_issued {
  background: rgba(39, 174, 96, 0.12);
  color: #1a6b3a;
}
.badge.preparing_dispatch {
  background: rgba(52, 152, 219, 0.15);
  color: #1a5276;
}
.badge.in_warehouse {
  background: rgba(142, 68, 173, 0.12);
  color: #6c3483;
}
.badge.distribution {
  background: rgba(22, 160, 133, 0.15);
  color: #0e6655;
}
.badge.on_hold {
  background: rgba(214, 69, 69, 0.2);
  color: #c0392b;
  font-weight: 800;
  animation: holdPulse 1.5s ease infinite;
}
@keyframes holdPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

/* ── Current event highlight box ── */
.fx-current-event {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 0 0 4px;
}
.fx-current-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin-top: 4px;
  animation: pulse-ring 2s infinite;
}
.fx-current-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--amber);
  margin-bottom: 4px;
}
.fx-current-desc {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.fx-current-loc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.fx-current-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Upcoming events notice ── */
.fx-upcoming {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 157, 143, 0.08);
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--teal);
  margin: 4px 0;
}

/* ── Event status badge in travel history ── */
.fx-evt-status-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(42, 157, 143, 0.12);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

/* ── Dynamic stepper stage colors ── */
.fx-stage.current[style*="--stage-color"] .fx-ic {
  background: var(--stage-color, var(--amber));
  color: #fff;
}
.fx-stage.current[style*="--stage-color"] .fx-stage-label {
  color: var(--stage-color, var(--amber));
}
