/* PartsConnect — Landing Page styles */

:root {
  --navy-900: #0A1628;
  --navy-800: #0F1E36;
  --navy-700: #142847;
  --navy-600: #1E3A5F;
  --navy-500: #2A4D7A;

  --orange-600: #E8590C;
  --orange-500: #FF6B1A;
  --orange-400: #FF8742;
  --orange-300: #FFA570;
  --orange-50:  #FFF1E6;

  --steel-50:  #F5F7FA;
  --steel-100: #EAEEF3;
  --steel-200: #D5DCE5;
  --steel-300: #B4BFCC;
  --steel-400: #8896A8;
  --steel-500: #5D6B7E;
  --steel-600: #3F4A5C;
  --steel-700: #2A3242;

  --green-500: #16A34A;
  --green-50:  #E6F4EA;
  --wa-green:  #25D366;
  --wa-dark:   #128C7E;
  --amber-500: #F59E0B;
  --red-500:   #DC2626;
  --blue-500:  #2563EB;
  --purple-500: #7C3AED;
  --teal-500:  #0D9488;

  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --bg-dark: var(--navy-900);

  --fg: #0A1628;
  --fg-muted: #5D6B7E;
  --fg-faint: #8896A8;

  --border: #EAEEF3;
  --border-strong: #D5DCE5;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 12px;
  --r-xl: 18px;

  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06), 0 1px 3px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08), 0 2px 4px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 16px 40px rgba(10, 22, 40, 0.12), 0 4px 12px rgba(10, 22, 40, 0.06);
  --shadow-orange: 0 8px 24px rgba(232, 89, 12, 0.25);

  --container: 1200px;
  --header-h: 68px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.text-orange { color: var(--orange-500); }
.text-orange-light { color: var(--orange-400); }

/* Type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-600);
  font-family: var(--font-mono);
}
.eyebrow.on-dark { color: var(--orange-400); }
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--orange-500); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,107,26,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,107,26,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,26,0.04); }
}

.h-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0;
}
.h-section {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
}
.h-card {
  font-size: 20px; line-height: 1.25;
  letter-spacing: -0.01em; font-weight: 600;
  margin: 0;
}
.lede {
  font-size: 19px; line-height: 1.55;
  color: var(--fg-muted);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}
.lede strong { color: var(--fg); font-weight: 600; }
.mono { font-family: var(--font-mono); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 120ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-primary {
  background: var(--orange-500); color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { background: var(--steel-100); }
.btn-outline {
  border: 1px solid var(--border-strong);
  background: white; color: var(--fg);
}
.btn-outline:hover { border-color: var(--steel-400); }
.btn-arrow { transition: transform 200ms ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.site-header .container {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.02em; font-size: 18px;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  position: relative;
  background: rgba(10,22,40,0.08);
  border: 1px solid rgba(10,22,40,0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
  transform: translateY(-50%);
}
.logo-mark::before { left: 5px; }
.logo-mark::after { right: 5px; }
.logo-center {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-500);
}
.logo-mark-reel {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}
.logo-word { color: var(--navy-900); }
.logo-word .accent { color: var(--orange-500); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; font-size: 14.5px;
  color: var(--steel-600);
  border-radius: var(--r-md);
  transition: color 150ms ease, background-color 150ms ease;
}
.nav a:hover { color: var(--fg); background: var(--steel-100); }

.header-cta { display: flex; align-items: center; gap: 8px; }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 100px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,22,40,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,22,40,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 60% at 70% 50%, black, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(255,107,26,0.10), transparent 60%),
    radial-gradient(800px 400px at -10% 100%, rgba(42,77,122,0.08), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy h1 .accent {
  position: relative;
  color: var(--orange-500);
}
.hero-copy h1 .accent::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  bottom: 4px; height: 12px;
  background: var(--orange-500);
  opacity: 0.16;
  z-index: -1;
  transform: skewX(-8deg);
}
.hero-copy .lede { margin-bottom: 32px; }
.hero-actions {
  display: flex; gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-trust { color: var(--fg-faint); font-size: 13px; }
.badge-row { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--steel-600); font-weight: 500;
}
.trust-badge .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-50); color: var(--green-500);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}

/* Hero search demo */
.hero-anim {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: end;
}
.search-demo {
  position: relative;
}
.sd-window {
  background: white;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(10,22,40,0.18), 0 0 0 1px var(--border);
  overflow: hidden;
}
.sd-toolbar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  background: var(--steel-50);
  border-bottom: 1px solid var(--border);
}
.sd-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--steel-300);
}
.sd-dot.r { background: #FF5F57; }
.sd-dot.y { background: #FEBC2E; }
.sd-dot.g { background: #28C840; }
.sd-url {
  margin-left: 14px;
  font-size: 11px;
  color: var(--steel-500);
  letter-spacing: 0.02em;
}
.sd-search {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--steel-500);
}
.sd-input {
  font-size: 16px; font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  min-width: 4ch;
}
.sd-caret {
  width: 2px; height: 18px;
  background: var(--orange-500);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.sd-kbd {
  margin-left: auto;
  font-size: 11px;
  background: var(--steel-100);
  color: var(--steel-600);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
}

.sd-results {
  padding: 8px 8px 4px;
}
.sd-result {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  transition: background-color 200ms ease;
  animation: result-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.sd-result:hover { background: var(--steel-50); }
.sr1 { animation-delay: 0.4s; }
.sr2 { animation-delay: 0.7s; }
.sr3 { animation-delay: 1.0s; }
@keyframes result-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.sd-thumb {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.sd-thumb::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1.5px solid var(--orange-500);
}
.sd-thumb::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--orange-500);
}
.sd-thumb.t2::before { background: var(--navy-600); }
.sd-thumb.t3::before { background: var(--steel-700); }
.sd-shop {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}
.sd-meta {
  font-size: 10.5px;
  color: var(--fg-faint);
  letter-spacing: 0.02em;
}
.sd-meta .dist { color: var(--steel-600); font-weight: 600; }
.sd-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-600);
  margin-right: 8px;
}
.sd-wa {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--wa-green);
  color: white;
  display: grid; place-items: center;
  transition: transform 120ms ease, background-color 200ms ease;
}
.sd-wa:hover { background: var(--wa-dark); transform: scale(1.05); }
.sd-wa-pulse {
  animation: wa-pulse 1s ease-in-out;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.3); }
}
.sd-foot {
  padding: 10px 14px 14px;
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
}

/* Animated Cursor */
.animated-cursor {
  position: absolute;
  left: 50%;
  top: 20%;
  font-size: 28px;
  pointer-events: none;
  z-index: 10;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.animated-cursor.moving {
  /* Position will be set by JS */
}
.animated-cursor.clicking {
  animation: cursor-click 0.3s ease;
}
@keyframes cursor-click {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.85); }
}

/* WhatsApp Phone Frame */
.wa-phone-frame {
  background: #000;
  border-radius: 24px;
  padding: 12px 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  animation: phone-appear 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes phone-appear {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.wa-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}
.wa-phone-notch::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

/* WhatsApp Chat View */
.wa-chat-view {
  background: #ECE5DD;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.wa-chat-view::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px);
  pointer-events: none;
  opacity: 0.3;
}
.wa-chat-header {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.wa-chat-back {
  font-size: 20px;
  cursor: pointer;
  opacity: 0.9;
}
.wa-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.wa-chat-avatar svg {
  width: 100%;
  height: 100%;
}
.wa-chat-info {
  flex: 1;
}
.wa-chat-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.wa-chat-status {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 4px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.wa-chat-icons {
  display: flex;
  gap: 16px;
  font-size: 18px;
  opacity: 0.9;
}
.wa-messages-container {
  position: relative;
  background: #ECE5DD;
}
.wa-date-badge {
  text-align: center;
  padding: 12px 0 16px;
}
.date-pill {
  font-size: 11px;
  color: #667;
  font-weight: 500;
  background: rgba(255,255,255,0.9);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.wa-messages {
  padding: 0 12px 16px;
  min-height: 200px;
  max-height: 320px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.wa-messages::-webkit-scrollbar {
  width: 4px;
}
.wa-messages::-webkit-scrollbar-track {
  background: transparent;
}
.wa-messages::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}
.wa-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.3);
}
.wa-msg {
  max-width: 75%;
  padding: 7px 10px 6px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 13.5px;
  line-height: 1.4;
  position: relative;
  animation: msg-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
@keyframes msg-pop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.wa-msg-out {
  background: #D9FDD3;
  margin-left: auto;
  border-bottom-right-radius: 3px;
}
.wa-msg-out::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 13px 8px;
  border-color: transparent transparent #D9FDD3 transparent;
}
.wa-msg-in {
  background: white;
  margin-right: auto;
  border-bottom-left-radius: 3px;
}
.wa-msg-in::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 13px 0;
  border-color: transparent white transparent transparent;
}
.wa-msg-text {
  margin-bottom: 2px;
}
.wa-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 2px;
}
.wa-msg-time {
  font-size: 10px;
  color: #667;
  opacity: 0.8;
}
.wa-msg-check {
  font-size: 11px;
  color: #53bdeb;
  font-weight: 600;
}
.msg-1 { animation-delay: 0.2s; }
.msg-2 { animation-delay: 0.3s; }
.msg-3 { animation-delay: 0.4s; }
.msg-4 { animation-delay: 0.2s; }
.msg-5 { animation-delay: 0.3s; }
.wa-price-highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange-600);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wa-price-highlight::before {
  content: '💰';
  font-size: 16px;
}
.wa-confirm-badge {
  background: linear-gradient(135deg, var(--green-500), #22c55e);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}
.wa-location-pin {
  font-size: 11px;
  color: #667;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.wa-input-area {
  background: #F7F7F7;
  padding: 12px 16px;
  border-top: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-typing-indicator {
  display: flex;
  gap: 3px;
  align-items: center;
}
.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--steel-500);
  border-radius: 50%;
  animation: typing-bounce 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-8px); opacity: 1; }
}
.wa-typing-text {
  font-size: 12px;
  color: var(--steel-600);
  font-style: italic;
}

/* Success State */
.success-state {
  padding: 24px 20px;
  text-align: center;
  animation: success-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes success-appear {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-500);
  color: white;
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 700;
  animation: success-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}
@keyframes success-bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.success-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 20px;
}
.success-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.success-stat {
  background: var(--steel-50);
  border-radius: var(--r-md);
  padding: 12px 8px;
  animation: stat-slide 0.4s ease backwards;
}
.success-stat:nth-child(1) { animation-delay: 0.3s; }
.success-stat:nth-child(2) { animation-delay: 0.4s; }
.success-stat:nth-child(3) { animation-delay: 0.5s; }
@keyframes stat-slide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.success-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-600);
  margin-bottom: 4px;
}
.success-stat-label {
  font-size: 10px;
  color: var(--steel-600);
  letter-spacing: 0.05em;
}
.success-customer {
  background: linear-gradient(135deg, var(--green-50), var(--orange-50));
  border-radius: var(--r-lg);
  padding: 16px;
  animation: customer-appear 0.5s ease 0.6s backwards;
}
@keyframes customer-appear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.success-customer-icon {
  font-size: 36px;
  margin-bottom: 8px;
  animation: emoji-bounce 1s ease-in-out 0.8s infinite;
}
@keyframes emoji-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.success-customer-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-500);
}

/* Floating WhatsApp message */
.float-wa {
  position: absolute;
  bottom: -28px; right: -32px;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: 0 12px 32px rgba(10,22,40,0.16), 0 0 0 1px var(--border);
  padding: 12px 14px;
  display: flex; gap: 10px;
  align-items: center;
  max-width: 240px;
  animation: float-bob 4s ease-in-out infinite;
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.wa-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--wa-green);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.wa-head {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--fg-faint);
  margin-bottom: 2px;
  text-transform: uppercase;
}
.wa-bubble {
  font-size: 12.5px;
  color: var(--fg);
  font-weight: 500;
}

/* Floating timer chip */
.float-timer {
  position: absolute;
  top: -18px; left: -28px;
  background: var(--navy-900);
  color: white;
  padding: 10px 16px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: tilt 6s ease-in-out infinite;
}
@keyframes tilt {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(2deg) translateY(-2px); }
}
.ft-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--orange-400);
  font-weight: 700;
}
.ft-num {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Sections */
section { padding: 100px 0; position: relative; }
.section-head {
  text-align: center; max-width: 760px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .lede { margin: 16px auto 0; }

/* 5-step Flow */
.flow { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.flow-line {
  position: absolute;
  left: 10%; right: 10%; top: 88px;
  height: 2px;
  background: var(--steel-200);
  border-radius: 1px;
  z-index: 0;
}
.flow-line-fill {
  position: absolute;
  left: 10%; top: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  border-radius: 1px;
  width: 0;
  z-index: 0;
  animation: flow-fill 5s ease-in-out infinite;
}
@keyframes flow-fill {
  0% { width: 0; }
  90%, 100% { width: 80%; }
}
.flow-step {
  position: relative; z-index: 1;
  text-align: center; padding: 0 8px;
}
.flow-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange-600);
  margin-bottom: 18px;
}
.flow-icon-wrap {
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.flow-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border-strong);
  color: var(--navy-900);
  display: grid; place-items: center;
  transition: all 300ms ease;
  position: relative;
}
.flow-icon svg { width: 24px; height: 24px; }
.flow-step:hover .flow-icon {
  border-color: var(--orange-500);
  color: var(--orange-600);
  transform: scale(1.06);
  box-shadow: var(--shadow-orange);
}
.flow-icon-wa {
  background: var(--wa-green);
  color: white;
  border-color: var(--wa-green);
}
.flow-step:hover .flow-icon-wa {
  border-color: var(--wa-dark); color: white;
  background: var(--wa-dark);
}
.flow-icon-final {
  background: var(--green-500);
  color: white;
  border-color: var(--green-500);
}
.flow-step:hover .flow-icon-final {
  border-color: var(--green-500); color: white;
}
.flow-title {
  font-size: 17px; font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.flow-body, .flow-quote {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0 0 12px;
  max-width: 22ch;
  margin-inline: auto;
}
.flow-quote {
  font-style: italic;
  color: var(--fg);
}
.flow-quote .mono { font-style: normal; color: var(--orange-600); font-weight: 600; }
.flow-meta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  background: white;
  color: var(--steel-600);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid var(--border-strong);
}

/* RFQ callout */
.rfq-callout {
  margin-top: 72px;
  background: var(--navy-900);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.rfq-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 250px at 0% 0%, rgba(255,107,26,0.12), transparent 60%);
  pointer-events: none;
}
.rfq-left {
  display: flex; gap: 24px; align-items: flex-start;
  position: relative;
  z-index: 1;
}
.rfq-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  background: var(--orange-500);
  color: white;
  display: grid; place-items: center;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-orange);
}
.rfq-icon svg { width: 26px; height: 26px; }
.rfq-eyebrow {
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--orange-400);
  font-weight: 700;
  margin-bottom: 8px;
}
.rfq-title {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
  color: white;
}
.rfq-body {
  font-size: 15px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 50ch;
}
.rfq-viz { position: relative; z-index: 1; }
.rfq-fan {
  position: relative;
  height: 140px;
}
.rfq-source {
  position: absolute;
  left: 8%; top: 50%;
  transform: translateY(-50%);
  background: var(--orange-500);
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-orange);
  z-index: 2;
}
.rfq-rays {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.rfq-rays path {
  fill: none;
  stroke: var(--orange-400);
  stroke-width: 1.2;
  stroke-dasharray: 3 5;
  opacity: 0.5;
  animation: ray-dash 1.5s linear infinite;
}
@keyframes ray-dash { to { stroke-dashoffset: -16; } }
.rfq-targets {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50%;
}
.rfq-target {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  margin-left: auto;
  animation: target-flash 2.5s ease-in-out infinite;
}
.rt1 { animation-delay: 0.0s; }
.rt2 { animation-delay: 0.3s; }
.rt3 { animation-delay: 0.6s; }
.rt4 { animation-delay: 0.9s; }
@keyframes target-flash {
  0%, 100% { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
  50% { background: rgba(255,107,26,0.2); border-color: var(--orange-400); }
}

/* Supplier win section */
.supplier-win {
  background:
    linear-gradient(180deg, rgba(245,247,250,0.92), rgba(255,255,255,1)),
    radial-gradient(800px 300px at 50% 0%, rgba(255,107,26,0.08), transparent 65%);
  border-bottom: 1px solid var(--border);
}
.supplier-win-head { margin-bottom: 36px; }
.supplier-win-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.supplier-win-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-height: 214px;
  display: flex;
  flex-direction: column;
}
.supplier-win-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  opacity: 0.9;
}
.supplier-win-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.supplier-win-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.supplier-win-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 34ch;
}
.supplier-win-card:nth-child(1) .supplier-win-num,
.supplier-win-card:nth-child(2) .supplier-win-num,
.supplier-win-card:nth-child(3) .supplier-win-num {
  animation: supplier-pop 5.5s ease-in-out infinite;
}
.supplier-win-card:nth-child(2) .supplier-win-num { animation-delay: 0.25s; }
.supplier-win-card:nth-child(3) .supplier-win-num { animation-delay: 0.5s; }
@keyframes supplier-pop {
  0%, 70%, 100% { transform: scale(1); box-shadow: none; }
  80% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(255,107,26,0.12); }
}
.supplier-win-footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, white, var(--steel-50));
  box-shadow: var(--shadow-sm);
}
.supplier-win-footer-copy {
  font-size: 18px;
  line-height: 1.35;
  color: var(--fg);
}
.supplier-win-footer-copy strong { color: var(--orange-600); }

/* Features */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(340px, auto);
  gap: 20px;
}
.feat {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: border-color 200ms ease, transform 250ms ease, box-shadow 250ms ease;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.feat:hover {
  border-color: var(--steel-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feat-big { grid-column: span 2; }

.feat-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange-600);
  margin-bottom: 12px;
}
.feat-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.feat-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 22px;
  max-width: 42ch;
}
.feat-vis {
  flex: 1;
  background: var(--steel-50);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 140px;
}

/* Cross-reference vis */
.feat-vis-cross {
  gap: 18px;
  flex-wrap: wrap;
}
.cross-input {
  background: white;
  border: 2px solid var(--orange-500);
  color: var(--orange-600);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
}
.cross-arrow {
  color: var(--steel-400);
  display: grid;
  place-items: center;
}
.cross-arrow svg { width: 20px; height: 20px; }
.cross-out {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 280px;
}
.cross-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  animation: cross-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.pill-oem {
  background: var(--orange-50);
  color: var(--orange-600);
  border: 1px solid var(--orange-300);
  animation-delay: 0.2s;
}
.pill-alt {
  background: white;
  color: var(--steel-600);
  border: 1px solid var(--border-strong);
}
.feat-vis-cross .pill-alt:nth-of-type(1) { animation-delay: 0.4s; }
.feat-vis-cross .pill-alt:nth-of-type(2) { animation-delay: 0.55s; }
.feat-vis-cross .pill-alt:nth-of-type(3) { animation-delay: 0.7s; }
.feat-vis-cross .pill-alt:nth-of-type(4) { animation-delay: 0.85s; }
@keyframes cross-in {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Product card */
.feat-vis-product { padding: 16px; }
.prod-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  box-shadow: var(--shadow-sm);
}
.prod-photo {
  width: 64px; height: 64px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--steel-50);
}
.prod-photo svg {
  width: 56px; height: 56px;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.prod-meta { flex: 1; min-width: 0; }
.prod-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.prod-spec { font-size: 10px; color: var(--fg-faint); margin-bottom: 6px; letter-spacing: 0.02em; }
.prod-price { font-size: 14px; font-weight: 700; color: var(--orange-600); }

/* Fitment list */
.feat-vis-fitment {
  padding: 14px;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  justify-content: center;
}
.fitment-row {
  display: grid;
  grid-template-columns: 60px 1fr 70px 18px;
  gap: 10px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 12px;
  animation: fit-in 0.5s ease backwards;
}
.fitment-row:nth-child(1) { animation-delay: 0.1s; }
.fitment-row:nth-child(2) { animation-delay: 0.2s; }
.fitment-row:nth-child(3) { animation-delay: 0.3s; }
@keyframes fit-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
.fit-make { font-size: 10px; font-weight: 700; color: var(--steel-500); }
.fit-model { font-weight: 600; }
.fit-year { font-size: 10px; color: var(--fg-faint); text-align: right; }
.fit-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-500);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}

/* Stock Opportunities */
.feat-vis-opportunities {
  flex-direction: column;
  gap: 12px;
  padding: 16px 14px;
}
.opp-header {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.opp-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.opp-period {
  font-size: 10px;
  color: var(--steel-500);
}
.opp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.opp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange-500);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  transition: all 200ms ease;
  animation: opp-slide-in 0.4s ease backwards;
}
.oi-1 { animation-delay: 0.1s; }
.oi-2 { animation-delay: 0.2s; }
.oi-3 { animation-delay: 0.3s; }
.oi-4 { animation-delay: 0.4s; }
@keyframes opp-slide-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.opp-item:hover {
  border-left-width: 4px;
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.opp-rank {
  font-size: 16px;
  font-weight: 700;
  color: var(--steel-400);
  font-family: var(--font-mono);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.opp-details {
  flex: 1;
  min-width: 0;
}
.opp-part {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 3px;
}
.opp-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--steel-600);
}
.opp-searches {
  font-weight: 600;
  color: var(--orange-600);
}
.opp-dot {
  opacity: 0.5;
}
.opp-time {
  opacity: 0.8;
}
.opp-badge {
  font-size: 9px;
  font-weight: 600;
  color: var(--red-500);
  background: rgba(220, 38, 38, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Channels */
.feat-vis-channels {
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.ch-bubble {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.ch-wa { color: var(--wa-dark); }
.ch-em { color: var(--blue-500); }
.ch-thread {
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Radar Animation */
.feat-vis-radar {
  padding: 10px;
}
.radar-container {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.05), transparent 70%);
  border-radius: 50%;
}
.radar-rings {
  position: absolute;
  inset: 0;
}
.radar-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50%;
}
.radar-ring:nth-child(1) {
  width: 60px;
  height: 60px;
}
.radar-ring:nth-child(2) {
  width: 110px;
  height: 110px;
}
.radar-ring:nth-child(3) {
  width: 160px;
  height: 160px;
}
.radar-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
  z-index: 3;
}
.radar-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  transform-origin: 0 0;
  animation: radar-spin 4s linear infinite;
  z-index: 1;
}
.radar-sweep::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(22, 163, 74, 0.3) 30deg,
    rgba(22, 163, 74, 0.1) 60deg,
    transparent 90deg
  );
  border-radius: 50%;
}
@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.radar-blip {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  z-index: 2;
  animation: blip-pulse 2s ease-in-out infinite;
}
.rb-1 { left: 55%; top: 25%; animation-delay: 0s; }
.rb-2 { left: 75%; top: 45%; animation-delay: 0.5s; }
.rb-3 { left: 60%; top: 70%; animation-delay: 1s; }
.rb-4 { left: 30%; top: 55%; animation-delay: 1.5s; }
@keyframes blip-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.7);
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(255, 107, 26, 0);
  }
}
.radar-labels {
  position: absolute;
  inset: 0;
}
.radar-label {
  position: absolute;
  font-size: 9px;
  color: var(--steel-600);
  font-weight: 600;
  background: white;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.radar-label.rl-1 { top: 50%; right: 15%; transform: translateY(-50%); }
.radar-label.rl-2 { top: 20%; right: 8%; }
.radar-label.rl-3 { top: 5%; left: 50%; transform: translateX(-50%); }

/* Network Spider Web */
.feat-vis-network {
  padding: 10px;
}
.network-svg {
  width: 100%;
  height: 200px;
}
.network-line {
  stroke: var(--orange-300);
  stroke-width: 1.5;
  opacity: 0.4;
  stroke-dasharray: 3 2;
}
.network-dot {
  fill: var(--orange-500);
  filter: drop-shadow(0 0 4px var(--orange-400));
}
.network-node circle {
  fill: white;
  stroke: var(--orange-500);
  stroke-width: 2;
  transition: all 200ms ease;
}
.network-node:hover circle {
  fill: var(--orange-50);
  stroke-width: 3;
}
.node-center circle {
  fill: var(--orange-500);
  stroke: var(--orange-600);
  stroke-width: 2.5;
}
.node-text {
  fill: white;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
}
.node-text-small {
  fill: var(--orange-600);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
}
.network-node {
  animation: network-node-appear 0.5s ease backwards;
}
.network-node:nth-child(3) { animation-delay: 0.1s; }
.network-node:nth-child(4) { animation-delay: 0.2s; }
.network-node:nth-child(5) { animation-delay: 0.3s; }
.network-node:nth-child(6) { animation-delay: 0.4s; }
.network-node:nth-child(7) { animation-delay: 0.5s; }
.network-node:nth-child(8) { animation-delay: 0.6s; }
@keyframes network-node-appear {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

/* Product + Fitment Compact */
.feat-vis-product-fit {
  flex-direction: column;
  gap: 12px;
  padding: 16px 12px;
}
.prod-card-compact {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.prod-photo-compact {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--steel-50);
}
.prod-photo-compact svg {
  width: 42px;
  height: 42px;
  animation: spin 12s linear infinite;
}
.prod-info-compact {
  flex: 1;
  min-width: 0;
}
.prod-name-compact {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--navy-900);
}
.prod-spec-compact {
  font-size: 9px;
  color: var(--fg-faint);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.prod-price-compact {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-600);
}
.fitment-list-compact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fit-item-compact {
  background: var(--steel-50);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  font-size: 10px;
  color: var(--steel-700);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fit-slide-in 0.4s ease backwards;
}
.fit-item-compact:nth-child(1) { animation-delay: 0.1s; }
.fit-item-compact:nth-child(2) { animation-delay: 0.2s; }
.fit-item-compact:nth-child(3) { animation-delay: 0.3s; }
@keyframes fit-slide-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.fit-item-compact::before {
  content: '✓';
  width: 14px;
  height: 14px;
  background: var(--green-50);
  color: var(--green-500);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  animation: checkmark-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.fit-item-compact:nth-child(1)::before { animation-delay: 0.2s; }
.fit-item-compact:nth-child(2)::before { animation-delay: 0.3s; }
.fit-item-compact:nth-child(3)::before { animation-delay: 0.4s; }
@keyframes checkmark-pop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.3) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* API Sync vis */
.feat-vis-api {
  flex-direction: column;
  gap: 14px;
  padding: 20px 16px;
}
.api-sync-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.api-source, .api-target {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.api-source-icon, .api-target-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.api-source-label, .api-target-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--steel-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.api-flow {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.api-product {
  background: white;
  border: 1.5px solid var(--orange-300);
  border-radius: 6px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: api-product-flow 3s ease-in-out infinite;
}
.ap-1 { animation-delay: 0s; }
.ap-2 { animation-delay: 1s; }
.ap-3 { animation-delay: 2s; }
@keyframes api-product-flow {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
  }
  10% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(30px) scale(0.8);
  }
}
.api-product-icon {
  font-size: 14px;
}
.api-product-code {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--orange-600);
}
.api-status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  padding: 6px 10px;
  background: var(--green-50);
  border-radius: 6px;
  border: 1px solid var(--green-200);
}
.api-status-icon {
  color: var(--green-500);
  font-weight: 700;
}
.api-status-text {
  color: var(--green-700);
  font-weight: 500;
}

/* CSV Import vis */
.feat-vis-csv {
  flex-direction: column;
  gap: 12px;
  padding: 28px 20px;
}
.csv-icon {
  font-size: 48px;
  animation: csv-bounce 2s ease-in-out infinite;
}
@keyframes csv-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.csv-filename {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
}
.csv-progress {
  width: 100%;
  height: 6px;
  background: var(--steel-100);
  border-radius: 3px;
  overflow: hidden;
}
.csv-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  border-radius: 3px;
  animation: csv-upload 3s ease-in-out infinite;
}
@keyframes csv-upload {
  0% { width: 0; }
  70%, 100% { width: 100%; }
}
.csv-status {
  font-size: 11px;
  color: var(--steel-600);
  font-weight: 500;
}

/* Multi-search vis */
.feat-vis-multi {
  flex-direction: column;
  gap: 14px;
  padding: 20px 16px;
}
.multi-input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.multi-input-item {
  background: white;
  border: 1.5px solid var(--orange-300);
  color: var(--orange-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  animation: multi-item-appear 0.4s ease backwards;
}
.multi-input-item:nth-child(1) { animation-delay: 0.1s; }
.multi-input-item:nth-child(2) { animation-delay: 0.2s; }
.multi-input-item:nth-child(3) { animation-delay: 0.3s; }
@keyframes multi-item-appear {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.multi-input-more {
  background: var(--steel-100);
  color: var(--steel-600);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  animation: multi-item-appear 0.4s ease 0.4s backwards;
}
.multi-search-btn {
  background: var(--orange-500);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: var(--shadow-orange);
}
.multi-search-btn:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
}

/* Referral vis */
.feat-vis-referral {
  padding: 16px;
}
.referral-card {
  background: linear-gradient(135deg, var(--orange-50), var(--orange-100));
  border: 2px solid var(--orange-300);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  text-align: center;
}
.referral-icon {
  font-size: 36px;
  margin-bottom: 10px;
  animation: referral-wiggle 3s ease-in-out infinite;
}
@keyframes referral-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}
.referral-code {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-600);
  background: white;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid var(--orange-300);
}
.referral-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.referral-stat {
  background: white;
  border-radius: var(--r-sm);
  padding: 10px 8px;
  border: 1px solid var(--border);
}
.referral-stat-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.referral-stat-label {
  font-size: 10px;
  color: var(--steel-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* WooCommerce vis */
.feat-vis-woo {
  flex-direction: column;
  gap: 14px;
  padding: 28px 20px;
}
.woo-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.woo-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-md);
}
.woo-logo.pc {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--orange-500);
}
.woo-logo.wc {
  background: linear-gradient(135deg, #7f54b3, #96588a);
  color: white;
}
.woo-sync-icon {
  font-size: 24px;
  color: var(--orange-500);
  animation: woo-sync 2s ease-in-out infinite;
}
@keyframes woo-sync {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.woo-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--green-500);
  font-weight: 600;
}
.woo-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: woo-pulse 2s ease-in-out infinite;
}
@keyframes woo-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--green-500); }
  50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(22, 163, 74, 0); }
}

/* Radius vis */
.feat-vis-radius { padding: 0; }
.radius-stage {
  position: relative;
  width: 180px; height: 180px;
}
.rdot {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange-500);
  z-index: 4;
  box-shadow: 0 0 0 4px rgba(255,107,26,0.2);
}
.rring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed var(--orange-400);
  opacity: 0.5;
  animation: r-grow 3s ease-in-out infinite;
}
.rr-1 { width: 60px; height: 60px; animation-delay: 0s; }
.rr-2 { width: 110px; height: 110px; animation-delay: 0.5s; opacity: 0.35; }
.rr-3 { width: 170px; height: 170px; animation-delay: 1s; opacity: 0.2; }
@keyframes r-grow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: var(--o, 0.5); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}
.rlabel {
  position: absolute;
  font-size: 9.5px;
  letter-spacing: 0.05em;
  color: var(--steel-600);
  background: white;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.rl-1 { top: calc(50% - 30px); left: calc(50% + 18px); }
.rl-2 { top: calc(50% - 55px); left: calc(50% + 30px); }
.rl-3 { top: calc(50% - 88px); left: calc(50% + 38px); }

/* Network */
.network {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.network-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.network-copy h2 { margin: 14px 0 20px; }
.network-copy .lede { margin-bottom: 36px; }
.network-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.nstat {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 18px;
}
.nstat-num {
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.025em; line-height: 1;
  color: var(--navy-900);
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 8px;
}
.nstat-num .plus { color: var(--orange-500); }
.nstat-num .unit {
  font-size: 14px; font-weight: 600;
  color: var(--fg-muted); margin-left: 4px;
}
.nstat-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.network-map {
  background: var(--navy-900);
  border-radius: var(--r-xl);
  padding: 24px; position: relative;
  overflow: hidden;
}
.uae-map { width: 100%; height: auto; display: block; }
.emirate-dot { fill: var(--orange-500); }
.emirate-dot.ed1 { animation: ping 2s ease-out infinite; }
.emirate-dot.ed2 { animation: ping 2s ease-out infinite 0.3s; }
.emirate-dot.ed3 { animation: ping 2s ease-out infinite 0.6s; }
.emirate-dot.ed4 { animation: ping 2s ease-out infinite 0.9s; }
.emirate-dot.ed5 { animation: ping 2s ease-out infinite 1.2s; }
.emirate-dot.ed6 { animation: ping 2s ease-out infinite 1.5s; }
.emirate-dot.ed7 { animation: ping 2s ease-out infinite 1.8s; }
@keyframes ping {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 6px var(--orange-500)); }
}
.emirate-label {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.ring-pulse {
  transform-origin: 240px 200px;
  animation: ring-grow 3s ease-out infinite;
}
@keyframes ring-grow {
  0% { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}
.map-caption {
  margin-top: 18px; text-align: center;
  font-size: 11px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}

/* CTA */
.cta { background: var(--bg); padding: 120px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900) 60%);
  border-radius: var(--r-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative; overflow: hidden;
  color: white;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -10%, rgba(255,107,26,0.18), transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent);
  pointer-events: none;
}
.cta-card .container-inner { position: relative; z-index: 1; }
.cta-card .eyebrow { margin-bottom: 18px; }
.cta-card h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 16px;
}
.cta-card p {
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  margin: 0 auto 32px;
  font-size: 18px; line-height: 1.5;
}
.cta-actions { display: inline-flex; gap: 12px; }
.cta-card .btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.cta-card .btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  color: var(--fg-muted); font-size: 14px;
}
.footer .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer .copy { color: var(--fg-faint); font-size: 13px; }
.footer .links { display: flex; gap: 24px; }
.footer .links a:hover { color: var(--fg); }

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
.js .reveal.delay-1 { transition-delay: 80ms; }
.js .reveal.delay-2 { transition-delay: 160ms; }
.js .reveal.delay-3 { transition-delay: 240ms; }
.js .reveal.delay-4 { transition-delay: 320ms; }

/* Responsive */
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-big { grid-column: span 2; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-anim { justify-self: center; max-width: 480px; }
  .flow-track { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .flow-line, .flow-line-fill { display: none; }
  .rfq-callout { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .supplier-win-grid { grid-template-columns: 1fr; }
  .supplier-win-footer { flex-direction: column; align-items: flex-start; }
  .network-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav { display: none; }
  .cta-card { padding: 56px 32px; }
}
@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
  .feat-big { grid-column: span 1; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .flow-track { grid-template-columns: 1fr; }
  .network-stats { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: calc(var(--header-h) + 32px); }
  .header-cta .btn-ghost { display: none; }
  .footer .container { flex-direction: column; align-items: flex-start; }
  .float-wa { right: -12px; bottom: -12px; max-width: 200px; }
  .float-timer { left: -8px; }
}
