/* ═══════════════════════════════════════════════════════════════
   NEXTPACK USA — PREMIUM B2B WEBSITE
   style.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Colors */
  --navy:         #091524;
  --navy-mid:     #0E1E30;
  --navy-dark:    #060E18;
  --teal:         #00BFA6;
  --teal-light:   rgba(0,191,166,0.1);
  --teal-border:  rgba(0,191,166,0.25);
  --blue-accent:  #1C72D8;
  --blue-light:   rgba(28,114,216,0.08);
  --amber:        #E69C00;
  --amber-light:  rgba(230,156,0,0.1);
  --red-light:    rgba(220,50,50,0.08);
  --purple-light: rgba(120,60,200,0.08);

  --white:    #FFFFFF;
  --gray-50:  #F8F9FB;
  --gray-100: #F1F3F6;
  --gray-200: #E2E6EC;
  --gray-300: #C8D0DA;
  --gray-400: #98A7B8;
  --gray-500: #6B7C90;
  --gray-600: #4A5A6E;
  --gray-700: #2E3D50;
  --gray-800: #1A2738;

  /* Typography */
  --font-serif: 'Georgia', 'Times New Roman', 'Palatino Linotype', serif;
  --font-sans:  'Trebuchet MS', 'Gill Sans', 'Segoe UI', Tahoma, sans-serif;
  --font-mono:  'Courier New', 'Lucida Console', monospace;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* Section vertical rhythm */
  --section-pad: 112px;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --border:    1px solid var(--gray-200);
  --border-dark: 1px solid rgba(255,255,255,0.08);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 16px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);

  /* Transitions */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --t-fast:  0.15s;
  --t-med:   0.3s;
  --t-slow:  0.5s;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
/* Prevent nav images from ever escaping their container */
.site-nav img { max-height: 100%; width: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
table { border-collapse: collapse; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Section base ──────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal-border);
}
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.12;
}
.section-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}
.section-sub-left {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 520px;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(9,21,36,0.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 4px 20px rgba(9,21,36,0.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border: 1px solid var(--gray-300);
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--gray-50);
}
.btn-nav {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}
.btn-nav:hover {
  background: var(--teal);
  box-shadow: 0 4px 16px rgba(0,191,166,0.3);
}
.btn-large { padding: 18px 40px; font-size: 16px; }
.btn-arrow { font-size: 15px; transition: transform var(--t-fast) var(--ease); }
.btn-ghost:hover .btn-arrow { transform: translateY(2px); }

/* ─── Reveal animation ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.site-nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ─── Nav Logo (icon + CSS text — no JPEG sizing issues) ─────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-text em {
  font-style: italic;
  color: var(--teal);
}

/* ─── Footer Logo (same pattern, white text on dark bg) ─────── */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.footer-logo-img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}
.footer-logo-wordmark {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.footer-logo-wordmark em {
  font-style: italic;
  color: var(--teal);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--t-med) var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t-fast) var(--ease);
}
/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  border-top: var(--border);
  gap: 2px;
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-cta { margin-top: 16px; text-align: center; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 70% 55% at 65% 50%, rgba(0,191,166,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 5% 85%, rgba(28,114,216,0.08) 0%, transparent 55%),
    linear-gradient(175deg, #091524 0%, #0B1C2E 100%);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Dot texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Hero left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: pulse-dot 2.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--teal); }
  50%       { opacity: 0.5; box-shadow: 0 0 18px var(--teal); }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal);
}
.hero-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,191,166,0.35);
}
.hero .btn-primary:hover {
  background: #00d4b8;
  box-shadow: 0 6px 32px rgba(0,191,166,0.5);
  transform: translateY(-2px);
}
.hero .btn-ghost {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.hero .btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ht-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.ht-check { color: var(--teal); font-size: 10px; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.sh-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: sh-scroll 2s ease-in-out infinite;
}
@keyframes sh-scroll {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.4; }
}
.sh-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ─── HERO RIGHT — Dashboard ────────────────────────────────── */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-shell {
  width: 100%;
  max-width: 500px;
  background: #0D1E30;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 1px rgba(0,191,166,0.12),
    0 40px 100px rgba(0,0,0,0.5),
    0 12px 32px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.dashboard-shell::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(0,191,166,0.35), rgba(28,114,216,0.15), transparent 55%);
  z-index: -1;
}
.dash-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dots { display: flex; gap: 6px; }
.dd {
  width: 9px; height: 9px; border-radius: 50%;
}
.dd.r { background: #FF5F57; }
.dd.y { background: #FEBC2E; }
.dd.g { background: #28C840; }
.dash-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}
.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--teal);
  letter-spacing: 0.08em;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s infinite;
}
.dash-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }

/* KPI cards */
.dash-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.kpi-card {
  background: #091524;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 10px 8px;
  display: flex; flex-direction: column; gap: 3px;
  position: relative; overflow: hidden;
}
.kpi-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px; border-radius: 0 0 10px 10px;
}
.kpi-teal::after { background: var(--teal); }
.kpi-blue::after { background: var(--blue-accent); }
.kpi-amber::after { background: var(--amber); }
.kpi-label {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.kpi-val {
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.kpi-sub { font-size: 8.5px; color: rgba(255,255,255,0.3); }
.kpi-delta { font-size: 8.5px; font-family: var(--font-mono); color: var(--teal); margin-top: 1px; }
.kpi-delta.up { color: var(--teal); }

/* WH bars in dash */
.dash-section-label {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
  margin-bottom: 4px;
}
.dash-wh-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.wh-card {
  background: #091524;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; padding: 10px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.wh-top { display: flex; align-items: center; gap: 5px; }
.wh-pin { font-size: 10px; }
.wh-name { font-size: 11px; font-weight: 700; color: var(--white); flex: 1; }
.wh-badge {
  font-family: var(--font-mono);
  font-size: 7px; padding: 2px 6px; border-radius: 20px;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(0,191,166,0.1); color: var(--teal);
  border: 1px solid rgba(0,191,166,0.2);
}
.wh-bar-row { display: flex; align-items: center; gap: 8px; }
.wh-bar-num { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.4); min-width: 28px; }
.wh-track { flex: 1; height: 3px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.wh-fill { height: 100%; border-radius: 3px; }

/* Inventory table in dash */
.dash-inv-card {
  background: #091524;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; overflow: hidden;
}
.inv-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.inv-title { font-size: 10px; font-weight: 700; color: var(--white); letter-spacing: 0.03em; }
.inv-time { font-family: var(--font-mono); font-size: 7.5px; color: rgba(255,255,255,0.2); }
.inv-table { padding: 0; }
.inv-row {
  display: grid; grid-template-columns: 2fr 0.8fr 0.7fr 1fr;
  padding: 7px 12px; gap: 4px; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 9.5px; color: rgba(255,255,255,0.7);
}
.inv-row:last-child { border-bottom: none; }
.inv-header { background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.05); }
.inv-header span { font-family: var(--font-mono); font-size: 7.5px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.08em; }
.inv-qty { font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: var(--white); }
.inv-loc { font-family: var(--font-mono); font-size: 8.5px; color: rgba(255,255,255,0.3); }
.inv-status {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 7.5px; padding: 2px 6px; border-radius: 20px;
  font-family: var(--font-mono); letter-spacing: 0.04em; width: fit-content;
}
.inv-status::before { content: ''; width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; }
.inv-status.ok { background: rgba(0,191,166,0.1); color: var(--teal); border: 1px solid rgba(0,191,166,0.2); }
.inv-status.ok::before { background: var(--teal); }
.inv-status.warn { background: rgba(230,156,0,0.1); color: #E69C00; border: 1px solid rgba(230,156,0,0.25); }
.inv-status.warn::before { background: #E69C00; }
.inv-status.transit { background: rgba(28,114,216,0.12); color: #5AA8FF; border: 1px solid rgba(28,114,216,0.25); }
.inv-status.transit::before { background: #5AA8FF; }

/* Forecast in dash */
.dash-forecast {
  background: linear-gradient(135deg, rgba(0,191,166,0.08), rgba(9,21,36,0.6));
  border: 1px solid rgba(0,191,166,0.14);
  border-radius: 10px; padding: 10px 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.forecast-left { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.forecast-badge {
  font-family: var(--font-mono); font-size: 7.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 2px;
}
.forecast-text { font-size: 10px; font-weight: 700; color: var(--white); line-height: 1.3; }
.forecast-sub { font-size: 8px; color: rgba(255,255,255,0.3); margin-top: 1px; }
.sparkline { display: flex; align-items: flex-end; gap: 3px; height: 28px; flex-shrink: 0; }
.sp { width: 5px; border-radius: 2px 2px 0 0; background: rgba(0,191,166,0.2); }
.sp.hi { background: var(--teal); }

/* Floating badge */
.hero-float-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: #0D1E30;
  border: 1px solid rgba(0,191,166,0.22);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.45);
  z-index: 10;
  animation: float-badge 4.5s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.fb-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(0,191,166,0.1);
  border: 1px solid rgba(0,191,166,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.fb-top { font-size: 11.5px; font-weight: 700; color: var(--white); white-space: nowrap; }
.fb-bot { font-size: 9px; color: var(--teal); font-family: var(--font-mono); letter-spacing: 0.06em; margin-top: 1px; }

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--gray-50);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 32px 0;
}
.tb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.tb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
  text-align: center;
}
.tb-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tb-label {
  font-size: 12px;
  color: var(--gray-400);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tb-div {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   PROBLEM
   ══════════════════════════════════════════════════════════════ */
.problem { background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--t-med) var(--ease), transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-300);
}
.pc-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pc-icon-wrap svg { width: 22px; height: 22px; }
.pc-red    { background: var(--red-light); color: #DC3232; }
.pc-amber  { background: var(--amber-light); color: var(--amber); }
.pc-blue   { background: var(--blue-light); color: var(--blue-accent); }
.pc-purple { background: var(--purple-light); color: #7038C8; }
.pc-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pc-copy { font-size: 14px; line-height: 1.7; color: var(--gray-500); }

/* ══════════════════════════════════════════════════════════════
   SYSTEM
   ══════════════════════════════════════════════════════════════ */
.system { background: var(--gray-50); }
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sys-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.sys-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--t-med) var(--ease);
}
.sys-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.sys-card:hover::before { background: var(--teal); }
.sys-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.sys-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
}
.sys-icon svg { width: 28px; height: 28px; }
.sys-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.sys-copy { font-size: 14px; line-height: 1.72; color: var(--gray-500); }

/* ══════════════════════════════════════════════════════════════
   APP SECTION
   ══════════════════════════════════════════════════════════════ */
.app-section { background: var(--navy); overflow: hidden; position: relative; }
.app-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
}
.app-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-left {
  display: flex; flex-direction: column; gap: 28px;
}
.app-section .section-eyebrow { color: var(--teal); }
.app-section .section-headline { color: var(--white); }
.app-section .section-sub-left { color: rgba(255,255,255,0.55); }
.app-features { display: flex; flex-direction: column; gap: 20px; }
.af-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.af-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}
.af-title {
  font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.af-copy { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.5); }
.app-platform-note {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

/* App mockup */
.app-right { display: flex; justify-content: center; }
.app-mockup-frame {
  width: 100%;
  max-width: 440px;
  background: #0D1E30;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 1px rgba(0,191,166,0.1),
    var(--shadow-xl);
  overflow: hidden;
  position: relative;
}
.app-mockup-frame::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(0,191,166,0.3), rgba(28,114,216,0.12), transparent 55%);
  z-index: -1;
}
.amf-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.amf-dots { display: flex; gap: 5px; }
.amd { width: 8px; height: 8px; border-radius: 50%; }
.amd.r { background: #FF5F57; }
.amd.y { background: #FEBC2E; }
.amd.g { background: #28C840; }
.amf-title { font-family: var(--font-mono); font-size: 9.5px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }
.amf-status {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 8.5px; color: var(--teal);
}
.amf-live {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); animation: pulse-dot 2s infinite;
}
.amf-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.amf-section-head {
  display: flex; justify-content: space-between; align-items: center;
}
.amf-sh-text { font-size: 13px; font-weight: 700; color: var(--white); }
.amf-sh-loc { font-size: 11px; color: rgba(255,255,255,0.4); }
.amf-big-num { display: flex; flex-direction: column; gap: 3px; }
.amf-bn-val { font-family: var(--font-mono); font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.amf-bn-label { font-size: 11px; color: rgba(255,255,255,0.35); font-family: var(--font-mono); }
.amf-alloc-label {
  font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 4px;
}
.amf-alloc-track {
  height: 6px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden; display: flex;
}
.amf-alloc-fill-orl {
  width: 60%; background: var(--teal); height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 6px; color: var(--navy); font-weight: 700;
}
.amf-alloc-fill-mia {
  width: 38%; background: var(--blue-accent); height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 6px; color: var(--white); font-weight: 700;
  opacity: 0.8;
}
.amf-sku-list {
  background: rgba(0,0,0,0.2);
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.amf-sku-row {
  display: grid; grid-template-columns: 2fr 0.8fr 1fr;
  padding: 8px 12px; gap: 4px; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.amf-last { border-bottom: none; }
.amf-sku-name { font-size: 10px; color: rgba(255,255,255,0.75); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.amf-sku-qty { font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: var(--white); }
.amf-status-ok  { font-size: 8.5px; color: var(--teal); font-family: var(--font-mono); }
.amf-status-warn { font-size: 8.5px; color: #E69C00; font-family: var(--font-mono); }
.amf-status-tr   { font-size: 8.5px; color: #5AA8FF; font-family: var(--font-mono); }
.amf-action-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.amf-btn-pill {
  background: var(--teal); color: var(--navy);
  padding: 9px 12px; border-radius: 7px;
  font-size: 11px; font-weight: 700; text-align: center;
  letter-spacing: 0.02em;
}
.amf-btn-outline {
  background: transparent; color: rgba(255,255,255,0.6);
  padding: 9px 12px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px; font-weight: 600; text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   WAREHOUSE
   ══════════════════════════════════════════════════════════════ */
.warehouse { background: var(--gray-50); }
.warehouse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.wh-location-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.wh-location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.whlc-marker {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 24px;
}
.whlc-marker svg { width: 24px; height: 24px; }
.whlc-marker-alt {
  background: var(--blue-light);
  border-color: rgba(28,114,216,0.2);
  color: var(--blue-accent);
}
.whlc-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.whlc-city {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.03em;
  margin-bottom: 4px; line-height: 1;
}
.whlc-region {
  font-size: 13px; color: var(--gray-400);
  font-family: var(--font-mono); letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.whlc-copy { font-size: 15px; line-height: 1.75; color: var(--gray-500); margin-bottom: 24px; }
.whlc-features { display: flex; flex-wrap: wrap; gap: 8px; }
.whlc-feat {
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 5px 12px; border-radius: 20px;
  background: var(--gray-100); color: var(--gray-600);
  border: 1px solid var(--gray-200);
  letter-spacing: 0.04em;
}
.whlc-cost-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--navy);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(0,191,166,0.2);
}
.whlc-cost-alt { background: var(--navy); color: #5AA8FF; border-color: rgba(28,114,216,0.25); }
.wh-callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex; align-items: center; gap: 24px;
  color: var(--white);
}
.whc-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(0,191,166,0.1);
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.whc-icon svg { width: 24px; height: 24px; }
.whc-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.whc-copy { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   COMPARISON
   ══════════════════════════════════════════════════════════════ */
.comparison { background: var(--white); }
.comp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: var(--border);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-table thead tr {
  background: var(--navy);
}
.comp-table th {
  padding: 18px 28px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-align: left;
}
.comp-th-feature { color: rgba(255,255,255,0.4); width: 34%; }
.comp-th-old { color: rgba(255,255,255,0.5); width: 33%; }
.comp-th-new { color: var(--teal); width: 33%; }
.comp-table tbody tr {
  border-bottom: var(--border);
  transition: background var(--t-fast) var(--ease);
}
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--gray-50); }
.comp-feature {
  padding: 18px 28px;
  font-size: 14px; font-weight: 600;
  color: var(--navy);
}
.comp-no {
  padding: 18px 28px;
  font-size: 14px; color: var(--gray-400);
}
.comp-yes {
  padding: 18px 28px;
  font-size: 14px; color: var(--navy); font-weight: 500;
}
.comp-x { color: #DC3232; margin-right: 6px; font-weight: 700; }
.comp-check { color: var(--teal); margin-right: 6px; font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════════════════════════ */
.process { background: var(--gray-50); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.process-step {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--t-med) var(--ease);
}
.process-step:hover { background: var(--gray-50); }
.ps-num-wrap { margin-bottom: 20px; }
.ps-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.12em;
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  padding: 4px 10px; border-radius: 20px;
  display: inline-block;
}
.ps-title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.ps-copy { font-size: 14px; line-height: 1.72; color: var(--gray-500); }
.process-cta-note {
  text-align: center;
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 40px;
  padding: 20px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  display: inline-block;
  width: 100%;
  box-shadow: var(--shadow-sm);
}
.process-cta-note strong { color: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   FOUNDER
   ══════════════════════════════════════════════════════════════ */
.founder { background: var(--white); }
.founder-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.founder-left {
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}
.founder-portrait {
  width: 200px;
  height: 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  border: 3px solid var(--white);
  outline: 1px solid var(--gray-200);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-trust-pills {
  display: flex; flex-direction: column; gap: 8px;
  width: 100%;
}
.ftp {
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: var(--border);
  color: var(--gray-600);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
}
.ftp::before { content: '✓'; color: var(--teal); font-weight: 700; }
.founder-right { display: flex; flex-direction: column; gap: 24px; }
.founder-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.025em;
  color: var(--navy); line-height: 1.2;
}
.founder-copy {
  font-size: 16px; line-height: 1.8;
  color: var(--gray-500);
}
.founder-copy strong { color: var(--navy); font-weight: 700; }
.founder-sig {
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 20px;
  border-top: var(--border);
}
.fs-name {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.01em;
}
.fs-title { font-size: 13px; color: var(--gray-500); }
.fs-location {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--teal);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════ */
.final-cta {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,191,166,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 100%, rgba(28,114,216,0.07) 0%, transparent 50%);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}
.fcta-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  text-align: center;
}
.fcta-eyebrow { color: var(--teal); }
.fcta-eyebrow::before,
.fcta-eyebrow::after { background: rgba(0,191,166,0.2); }
.fcta-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--white); line-height: 1.1;
  margin-bottom: 20px;
}
.fcta-copy {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.fcta-actions { margin-bottom: 20px; }
.final-cta .btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 28px rgba(0,191,166,0.35);
}
.final-cta .btn-primary:hover {
  background: #00d4b8;
  box-shadow: 0 8px 40px rgba(0,191,166,0.5);
  transform: translateY(-2px);
}
.fcta-note {
  font-size: 13px; color: rgba(255,255,255,0.3);
  font-family: var(--font-mono); letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.fcta-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.fcta-trust-item {
  font-size: 13px; color: rgba(255,255,255,0.4);
  font-family: var(--font-mono); letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }


.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-locations { display: flex; flex-direction: column; gap: 4px; }
.footer-locations span { font-size: 12px; font-family: var(--font-mono); color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.footer-nav-col { display: flex; flex-direction: column; gap: 10px; }
.fn-heading {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer-nav-col a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color var(--t-fast) var(--ease);
}
.footer-nav-col a:hover { color: var(--white); }
.footer-cta-link {
  color: var(--teal) !important;
  font-weight: 600;
}
.footer-contact-note { font-size: 13px; color: rgba(255,255,255,0.3); font-family: var(--font-mono); letter-spacing: 0.04em; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-ein { color: rgba(255,255,255,0.15); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .system-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }
  .hero-right { order: -1; }
  .dashboard-shell { max-width: 100%; }
  .hero-float-badge { display: none; }

  .app-inner { grid-template-columns: 1fr; gap: 56px; }
  .warehouse-grid { grid-template-columns: 1fr; }

  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-left { flex-direction: row; align-items: flex-start; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 16px; }

  .hero-inner { padding: 48px 16px 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-bar .tb-inner { gap: 0; }
  .tb-item { padding: 14px 20px; }
  .tb-div { height: 1px; width: 80%; margin: 0 auto; }

  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .system-grid { grid-template-columns: 1fr; gap: 16px; }

  .warehouse-grid { grid-template-columns: 1fr; }
  .wh-location-card { padding: 28px 24px; }

  .comp-table { font-size: 12px; }
  .comp-feature, .comp-no, .comp-yes { padding: 14px 16px; }
  .comp-table th { padding: 14px 16px; }

  .process-steps { grid-template-columns: 1fr; }

  .founder-left { flex-direction: column; }
  .founder-portrait { width: 140px; height: 170px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .fcta-trust-row { flex-direction: column; gap: 12px; }
  .fcta-actions .btn-large { width: 100%; justify-content: center; font-size: 14px; padding: 16px 24px; }
}

/* ══════════════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════════════ */
@media print {
  .site-nav, .hero-right, .scroll-hint { display: none; }
  .section { padding: 32px 0; }
  body { font-size: 12pt; }
}
