/* ============================================================
   TITAN MOVERS — Design System
   Modern dark premium · Logistics SaaS aesthetic
   ============================================================ */

/* ----- 1. Design Tokens ----------------------------------- */
:root {
  /* Background layers (dark mode) */
  --bg-base: #0A0E1A;
  --bg-surface: #111729;
  --bg-elevated: #1A2238;
  --bg-overlay: #232B45;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;
  --text-quaternary: #475569;

  /* Brand */
  --brand-navy: #001F5C;
  --brand-navy-light: #3D5CB8;
  --brand-navy-glow: rgba(61, 92, 184, 0.18);
  --brand-gold: #C69C6D;
  --brand-gold-light: #DDB689;
  --brand-gold-deep: #A8825A;
  --brand-gold-glow: rgba(198, 156, 109, 0.22);

  /* Semantic */
  --success: #10B981;
  --success-bg: rgba(16, 185, 129, 0.12);
  --success-border: rgba(16, 185, 129, 0.3);
  --info: #3B82F6;
  --info-bg: rgba(59, 130, 246, 0.12);
  --info-border: rgba(59, 130, 246, 0.3);
  --warning: #F59E0B;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --warning-border: rgba(245, 158, 11, 0.3);
  --error: #EF4444;
  --error-bg: rgba(239, 68, 68, 0.12);
  --error-border: rgba(239, 68, 68, 0.3);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Menlo', 'Consolas', monospace;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows (dark mode) */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-glow-gold: 0 0 32px rgba(198, 156, 109, 0.18);

  /* Spacing */
  --container-max: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-pad-y: clamp(4rem, 9vw, 7rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
}

/* ----- 2. Reset & Base ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* SVG defaults — never stretch to fill container. Size is set by HTML attrs OR specific CSS rules. */
svg {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease-out); }
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
}
input { font: inherit; font-family: inherit; }

::selection { background: var(--brand-gold); color: var(--bg-base); }

/* Scrollbar (subtle, dark) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-overlay); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--border-strong); }

/* ----- 3. Layout primitives ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad-y); position: relative; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.section-title em {
  font-style: normal;
  color: var(--brand-gold);
}

.section-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 580px;
}

/* ----- 4. Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  white-space: nowrap;
  transition: all var(--duration) var(--ease-out);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--duration) var(--ease-out); }
.btn:hover svg { transform: translateX(2px); }

.btn-primary {
  background: var(--brand-gold);
  color: var(--bg-base);
}
.btn-primary:hover {
  background: var(--brand-gold-light);
  box-shadow: 0 8px 20px rgba(198, 156, 109, 0.25);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-default);
}
.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--border-strong);
}

.btn-outline-gold {
  background: transparent;
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}
.btn-outline-gold:hover {
  background: var(--brand-gold);
  color: var(--bg-base);
}

.btn-large { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-small { padding: 0.625rem 1rem; font-size: 0.8125rem; }

/* ----- 5. Navigation ------------------------------------ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--duration) var(--ease-out);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 68px;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-icon {
  width: 26px;
  height: 30px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text__name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-text__sub {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-top: 3px;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}
.site-nav__menu a {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
}
.site-nav__menu a:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}
.nav-burger:hover { background: var(--bg-elevated); }
.nav-burger svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .site-nav__menu { display: none; }
  .site-nav__cta { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ----- 6. Hero ----------------------------------------- */
.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  /* Ambient gold glow */
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(198, 156, 109, 0.12) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  /* Subtle grid */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center;
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 90%);
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 90%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.4rem 0.875rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.hero__title-accent {
  color: var(--brand-gold); /* fallback if background-clip text not supported */
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 50%, var(--brand-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 540px;
}
@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; gap: 1.25rem; }
}
.hero__stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}

/* Tracking card on the right */
.track-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.track-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(198, 156, 109, 0.4), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.track-card__header {
  margin-bottom: 1.5rem;
}
.track-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.875rem;
}
.track-card__eyebrow svg { width: 14px; height: 14px; }

.track-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.track-card__description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.track-card__form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.track-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: border-color var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.track-input:focus-within {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--brand-gold-glow);
}
.track-input svg {
  width: 18px;
  height: 18px;
  color: var(--text-tertiary);
  flex-shrink: 0;
}
.track-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.track-input input::placeholder {
  color: var(--text-quaternary);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.track-help {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}
.track-help code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 1px 6px;
  background: var(--bg-elevated);
  color: var(--brand-gold);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

/* ----- 7. Stats Strip ---------------------------------- */
.stats-strip {
  border-block: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding-block: 2rem;
}
@media (min-width: 768px) { .stats-strip__inner { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border-subtle);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border-subtle); padding-bottom: 1.5rem; }
  .stat-item:nth-child(n+3) { padding-top: 1.5rem; }
}
.stat-item__icon {
  width: 22px;
  height: 22px;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}
.stat-item__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-item__label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: 0.3rem;
}

/* ----- 8. Services ------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 0%, rgba(198, 156, 109, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
  z-index: -1;
}
.service-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--brand-gold);
}
.service-card__icon-wrap svg { width: 22px; height: 22px; }

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.service-card__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-quaternary);
  letter-spacing: 0.05em;
}

/* ----- 9. Coverage ------------------------------------ */
.coverage__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .coverage__inner { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}

.coverage__intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media (max-width: 480px) { .coverage-list { grid-template-columns: 1fr; } }

.region-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease-out);
}
.region-pill:hover {
  border-color: var(--brand-gold);
  background: var(--bg-elevated);
}
.region-pill__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}
.region-pill__code {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
}

/* ----- 10. Pillars ----------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }

.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease-out);
}
.pillar-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}

.pillar-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(198, 156, 109, 0.18), rgba(198, 156, 109, 0.05));
  border: 1px solid var(--brand-gold-glow);
  color: var(--brand-gold);
}
.pillar-card__icon-wrap svg { width: 24px; height: 24px; }

.pillar-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.pillar-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ----- 11. About ------------------------------------ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) { .about__inner { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }

.about__quote {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-left: 3px solid var(--brand-gold);
  border-radius: var(--radius-lg);
}
.about__body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.about__sign {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--brand-gold);
  font-weight: 600;
}

/* ----- 12. Contact ---------------------------------- */
.contact {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .contact__inner { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

.contact__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.contact__title em {
  font-style: normal;
  color: var(--brand-gold);
}

.contact__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
}

.contact-channels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease-out);
}
.contact-channel:hover {
  border-color: var(--brand-gold);
  transform: translateX(2px);
}

.contact-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--brand-gold);
  flex-shrink: 0;
}
.contact-channel__icon svg { width: 18px; height: 18px; }

.contact-channel__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.15rem;
}
.contact-channel__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-channel__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}

/* ----- 13. Footer ----------------------------------- */
.site-footer {
  padding-block: 3.5rem 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-base);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .site-footer__main { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}

.site-footer__brand-text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 360px;
}

.site-footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
}
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.site-footer__col a:hover { color: var(--text-primary); }

.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ============================================================
   TRACKING PAGE (refined v2.1 — proportions tightened)
   ============================================================ */

.tracking-page { padding-top: 68px; }

/* ----- Tracking header --------------------------------- */
.tracking-header {
  padding-block: 2.25rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.tracking-header::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(198, 156, 109, 0.07), transparent 70%);
  pointer-events: none;
}

.tracking-header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb svg { width: 12px; height: 12px; }

.tracking-header__title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  line-height: 1.2;
}

.tracking-header__code {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--brand-gold);
  letter-spacing: 0.04em;
  padding: 0.3rem 0.625rem;
  background: var(--bg-elevated);
  border: 1px solid var(--brand-gold-glow);
  border-radius: var(--radius-sm);
}
.tracking-header__code svg { width: 12px; height: 12px; }

/* ----- Status banner ---------------------------------- */
.status-banner {
  padding-block: 1.75rem;
}

.status-banner__card {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  border-left-width: 3px;
  box-shadow: var(--shadow-sm);
}
.status-banner__card.success { border-left-color: var(--success); }
.status-banner__card.info { border-left-color: var(--info); }
.status-banner__card.warning { border-left-color: var(--warning); }
.status-banner__card.error { border-left-color: var(--error); box-shadow: 0 0 0 1px var(--error-border), var(--shadow-sm); }

.status-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.status-banner__card.success .status-banner__icon { background: var(--success-bg); color: var(--success); }
.status-banner__card.info .status-banner__icon { background: var(--info-bg); color: var(--info); }
.status-banner__card.warning .status-banner__icon { background: var(--warning-bg); color: var(--warning); }
.status-banner__card.error .status-banner__icon { background: var(--error-bg); color: var(--error); }
.status-banner__icon svg { width: 18px; height: 18px; }

.status-banner__text { flex: 1; min-width: 0; }
.status-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.35rem;
}
.status-banner__title {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}
.status-banner__time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .status-banner__card { flex-direction: column; align-items: flex-start; padding: 1.125rem 1.25rem; gap: 0.875rem; }
  .status-banner__icon { width: 36px; height: 36px; }
}

/* ----- Shipment data card ---------------------------- */
.shipment-data { padding-block: 0 2rem; }

.tracking-card-base {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.shipment-data__card {
  padding: 1.5rem 1.75rem;
}

.shipment-data__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.shipment-data__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.shipment-data__title svg { width: 14px; height: 14px; color: var(--brand-gold); flex-shrink: 0; }

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.625rem;
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.payment-pill svg { width: 11px; height: 11px; flex-shrink: 0; }

.shipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2rem;
}
@media (min-width: 600px) { .shipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .shipment-grid { grid-template-columns: repeat(3, 1fr); } }

.shipment-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.shipment-field__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.shipment-field__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.45;
  word-wrap: break-word;
}
.shipment-field__value.mono {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: var(--brand-gold);
}
.shipment-field__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-tertiary);
}

/* ----- Timeline -------------------------------------- */
.timeline-section { padding-block: 0 4rem; }

.timeline-card {
  padding: 1.5rem 1.75rem;
}

.timeline-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.timeline-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.timeline-card__title svg { width: 14px; height: 14px; color: var(--brand-gold); flex-shrink: 0; }

.timeline-card__count {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
  padding: 0.25rem 0.625rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
}

.timeline {
  display: flex;
  flex-direction: column;
}

.timeline__event {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 1.5rem;
}
.timeline__event:last-child { padding-bottom: 0; }

/* Connecting line */
.timeline__event::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  bottom: -4px;
  width: 2px;
  background: var(--border-default);
}
.timeline__event:last-child::before { display: none; }

/* Status dot */
.timeline__dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--text-tertiary);
  z-index: 1;
  transition: all var(--duration) var(--ease-out);
}
.timeline__event.success .timeline__dot { border-color: var(--success); background: var(--success); }
.timeline__event.info .timeline__dot { border-color: var(--info); background: var(--info); }
.timeline__event.warning .timeline__dot { border-color: var(--warning); background: var(--warning); }
.timeline__event.error .timeline__dot { border-color: var(--error); background: var(--error); }

/* Current (last) event — glow effect */
.timeline__event.current .timeline__dot {
  width: 12px;
  height: 12px;
  top: 3px;
  left: -1px;
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--brand-gold-glow), 0 0 14px var(--brand-gold-glow);
  animation: pulse-gold 2.4s var(--ease-smooth) infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 3px rgba(198, 156, 109, 0.22), 0 0 14px rgba(198, 156, 109, 0.22); }
  50% { box-shadow: 0 0 0 6px rgba(198, 156, 109, 0.08), 0 0 20px rgba(198, 156, 109, 0.3); }
}

.timeline__event-time {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.timeline__event-status {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.timeline__event.success .timeline__event-status { color: var(--success); }
.timeline__event.warning .timeline__event-status { color: var(--warning); }
.timeline__event.error .timeline__event-status { color: var(--error); }
.timeline__event.current .timeline__event-status { color: var(--brand-gold-light); }

.timeline__event-note {
  margin-top: 0.5rem;
  padding: 0.75rem 0.875rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--text-tertiary);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.timeline__event.warning .timeline__event-note {
  border-left-color: var(--warning);
  background: var(--warning-bg);
  color: var(--text-primary);
}
.timeline__event.error .timeline__event-note {
  border-left-color: var(--error);
  background: var(--error-bg);
  color: var(--text-primary);
}

.timeline__event-note-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.25rem;
}
.timeline__event.warning .timeline__event-note-label { color: var(--warning); }
.timeline__event.error .timeline__event-note-label { color: var(--error); }

/* ----- Tracking states (loading / empty / error / 404) ---- */
.tracking-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1rem 4.5rem;
}

.tracking-state__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.tracking-state__icon-wrap svg { width: 20px; height: 20px; }

.tracking-state__icon-wrap.spinner svg { animation: spin 1.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.tracking-state__icon-wrap.error { color: var(--error); border-color: var(--error-border); background: var(--error-bg); }

.tracking-state__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.tracking-state__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tracking-state__desc code {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  padding: 1px 6px;
  background: var(--bg-elevated);
  color: var(--brand-gold);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

.inline-search {
  width: 100%;
  max-width: 420px;
}
.inline-search .track-input svg { width: 16px; height: 16px; }

/* ----- Animations ---------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fadeUp 0.7s var(--ease-out) forwards; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.18s; }
.reveal-3 { animation-delay: 0.3s; }

/* ----- Mobile fine-tuning -------------------------------- */
@media (max-width: 600px) {
  .hero { padding-top: 7rem; padding-bottom: 4rem; }
  .track-card { padding: 1.5rem; }
  .shipment-data__card,
  .timeline-card { padding: 1.5rem 1.25rem; }
  .timeline__event { padding-left: 2rem; }
}
