/* ================================================
   TrackBizz — Website Stylesheet
   Colors: Pure Black #000000 | Orange #F97316 | White #FFFFFF
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #0A0A0A;
  --primary-dark: #000000;
  --primary-light: #2D2D2D;
  --accent: #F97316;
  --accent-dark: #e06410;
  --white: #FFFFFF;
  --text: #111111;
  --text-light: #555555;
  --text-muted: #888888;
  --bg-light: #F4F4F4;
  --bg-gray: #F8F8F8;
  --border: #E0E0E0;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.10);
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.22);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --max-width: 1180px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-light); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title { color: var(--text); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 580px; }
.center { text-align: center; }
.center .section-subtitle { margin: 0 auto; }

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Navigation ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand span { color: var(--accent); }
.navbar-logo {
  height: 82px;
  width: auto;
  display: block;
}
.navbar-logo-white {
  height: 82px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-menu a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 2px;
}
.navbar-menu a:hover, .navbar-menu a.active { color: var(--primary); }
.navbar-menu a:hover::after, .navbar-menu a.active::after { width: 100%; }
.navbar-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-circle-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-circle-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-badge span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 1.8s infinite; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 380px; margin: 0 auto; }
.hero-main-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-main-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-main-card-icon {
  width: 48px; height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-main-card-icon svg { width: 24px; height: 24px; color: var(--primary); }
.hero-main-card-title { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.hero-main-card-sub { font-size: 0.78rem; color: var(--text-muted); }
.tracking-steps { display: flex; flex-direction: column; gap: 14px; }
.tracking-step {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  position: relative;
}
.step-dot.done { background: #22c55e; }
.step-dot.active { background: var(--accent); box-shadow: 0 0 0 3px rgba(249,115,22,0.25); animation: pulse 1.8s infinite; }
.step-dot.active::before, .step-dot.done::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--white);
}
.tracking-step-label { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.tracking-step-time { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-float-card.card-1 { bottom: -20px; right: -30px; }
.hero-float-card.card-2 { top: -16px; left: -24px; }
.hero-float-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon.green { background: #dcfce7; color: #16a34a; }
.hero-float-icon.orange { background: #fff7ed; color: var(--accent); }
.hero-float-icon svg { width: 16px; height: 16px; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-num { font-size: 1.15rem; font-weight: 800; color: var(--primary); display: block; }
.trust-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ---- Section ---- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-gray); }
.section-dark { background: var(--primary); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark .section-label { color: rgba(255,255,255,0.7); }
.section-dark .section-label { color: var(--accent); }

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; }
.service-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--border);
}

/* ---- Why TrackBizz ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
}
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature {
  display: flex;
  gap: 18px;
}
.why-feature-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.why-feature-icon svg { width: 22px; height: 22px; }
.why-feature h3 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.why-feature p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.why-visual-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
}
.wa-mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}
.wa-avatar {
  width: 40px; height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.wa-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.wa-status { font-size: 0.75rem; color: #25D366; }
.wa-messages { display: flex; flex-direction: column; gap: 12px; }
.wa-bubble {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 85%;
  position: relative;
}
.wa-bubble.incoming {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-radius: 2px 12px 12px 12px;
}
.wa-bubble.outgoing {
  background: #005c4b;
  color: rgba(255,255,255,0.9);
  align-self: flex-end;
  border-radius: 12px 2px 12px 12px;
}
.wa-time { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 4px; text-align: right; }
.wa-bubble.incoming .wa-time { text-align: left; }

/* ---- How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
}
.step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.step-number {
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.step-card h3 { color: var(--text); margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: 0.85rem; }

/* ---- Carriers ---- */
.carriers-section { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.carriers-label { text-align: center; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.carriers-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.carrier-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}
.carrier-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 80px 0;
}
.cta-banner .container { text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ---- Footer ---- */
.footer {
  background: var(--primary-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-name span { color: var(--accent); }
.footer-brand-name svg { width: 34px; height: 34px; }
.footer p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social:hover { background: var(--accent); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.footer h4 { color: var(--white); font-size: 0.92rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 15px; height: 15px; }
.footer-contact-text { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer-contact-text a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact-text a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ---- WhatsApp Float ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: floatIn 0.5s ease 1.5s both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; color: white; }
.wa-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-width: 0;
  border-left-color: var(--text);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---- About Page ---- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-visual {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.story-stat-icon {
  width: 44px; height: 44px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.story-stat-icon svg { width: 22px; height: 22px; }
.story-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.story-stat-lbl { font-size: 0.8rem; color: var(--text-muted); }
.award-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: white;
}
.award-card-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.award-card-sub { font-size: 0.8rem; opacity: 0.85; }
.story-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.story-content h2 { margin-bottom: 1.25rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.value-icon {
  width: 52px; height: 52px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
}
.team-info { padding: 20px; }
.team-name { font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 0.82rem; color: var(--text-muted); }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail-value { color: var(--white); font-size: 0.9rem; font-weight: 500; }
.contact-detail-value a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.contact-detail-value a:hover { color: var(--accent); }
.wa-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 28px;
  transition: all var(--transition);
}
.wa-cta-btn:hover { background: #20ba5a; transform: translateY(-2px); }
.wa-cta-btn svg { width: 20px; height: 20px; }

/* ---- Form ---- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 { color: var(--text); margin-bottom: 6px; }
.form-card > p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,60,110,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ---- Map Placeholder ---- */
.map-placeholder {
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  margin-top: 40px;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--primary); opacity: 0.4; }
.map-placeholder p { font-size: 0.88rem; }

/* ---- Creative Track Section ---- */
.track-section {
  position: relative;
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #222222 100%);
  padding: 88px 0;
  overflow: hidden;
}
.track-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.track-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.track-gradient-text {
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.track-form { display: flex; flex-direction: column; gap: 14px; }
.track-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.track-input-icon {
  position: absolute;
  left: 18px;
  width: 20px; height: 20px;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 2;
}
.track-input-wrap input {
  width: 100%;
  padding: 16px 18px 16px 50px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}
.track-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }
.track-input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15), 0 0 24px rgba(249,115,22,0.1);
}
.track-input-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 0 rgba(249,115,22,0);
  transition: box-shadow 0.3s;
  pointer-events: none;
}
.track-btn {
  border-radius: var(--radius-sm) !important;
  justify-content: center;
  font-size: 1rem !important;
  padding: 15px 28px !important;
  box-shadow: 0 4px 24px rgba(249,115,22,0.35);
}
.track-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
.track-or::before, .track-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.track-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(37,211,102,0.1);
  border: 1.5px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-sm);
  color: #25D366;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s;
}
.track-wa-btn:hover {
  background: rgba(37,211,102,0.18);
  border-color: #25D366;
  transform: translateY(-2px);
}
.track-wa-btn svg { width: 20px; height: 20px; }

/* Demo Card */
.track-demo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.track-demo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #fbbf24, var(--accent));
  background-size: 200%;
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.track-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.track-demo-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.track-demo-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.track-demo-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
}
.track-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
}

/* Route Bar */
.track-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.07);
}
.track-city { text-align: center; flex-shrink: 0; }
.track-city-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  margin: 0 auto 6px;
}
.track-city-dot.origin { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.track-city-dot.dest { background: rgba(255,255,255,0.25); border: 2px solid rgba(255,255,255,0.3); }
.track-city-name { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.track-route-line {
  flex: 1;
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  margin-top: -10px;
}
.track-route-progress {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 72%;
  background: linear-gradient(90deg, #22c55e, var(--accent));
  border-radius: 4px;
}
.track-truck-icon {
  position: absolute;
  left: 68%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 0 4px rgba(249,115,22,0.2), 0 0 16px rgba(249,115,22,0.4);
  animation: truckBounce 1.8s ease-in-out infinite;
}
.track-truck-icon svg { width: 16px; height: 16px; }
@keyframes truckBounce {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-4px); }
}

/* Milestones */
.track-milestones { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.track-milestone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.3s;
}
.track-milestone.done {
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.12);
}
.track-milestone.active {
  background: rgba(249,115,22,0.08);
  border-color: rgba(249,115,22,0.2);
}
.track-milestone.pending { opacity: 0.4; }
.tm-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.track-milestone.done .tm-icon { background: rgba(34,197,94,0.15); color: #22c55e; }
.track-milestone.done .tm-icon svg { width: 14px; height: 14px; }
.track-milestone.active .tm-icon { background: rgba(249,115,22,0.15); color: var(--accent); }
.track-milestone.active .tm-icon svg { width: 16px; height: 16px; }
.track-milestone.pending .tm-icon { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); }
.track-milestone.pending .tm-icon svg { width: 14px; height: 14px; }
.pulse-ring {
  box-shadow: 0 0 0 0 rgba(249,115,22,0.4);
  animation: pulseRing 1.6s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
.tm-body { flex: 1; }
.tm-event { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.tm-detail { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.tm-time { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.35); flex-shrink: 0; }
.track-demo-footer { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px; }
.track-wa-notif {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Animations ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Utilities ---- */
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.bg-accent { background: var(--accent); }
.highlight { background: linear-gradient(180deg, transparent 55%, rgba(249,115,22,0.2) 55%); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .navbar-menu, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  /* Sections */
  .section { padding: 52px 0; }
  .page-hero { padding: 48px 0 36px; }
  .cta-banner { padding: 52px 0; }
  .carriers-section { padding: 40px 0; }
  /* Hero */
  .hero { min-height: auto; padding: 56px 0 48px; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px 28px; }
  /* Trust bar */
  .trust-bar .container { gap: 16px; }
  .trust-item { min-width: 130px; }
  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  /* Service mini stats */
  .service-mini-stat { flex-direction: column; gap: 10px; }
  /* Carriers */
  .carriers-grid { gap: 12px; }
  /* Track section */
  .track-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Cards */
  .form-card { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .story-visual { padding: 28px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  /* Sections */
  .section { padding: 40px 0; }
  .page-hero { padding: 36px 0 28px; }
  .cta-banner { padding: 40px 0; }
  /* Hero */
  .hero { padding: 44px 0 36px; }
  .hero-stats { gap: 12px 16px; }
  .hero-stats > div { min-width: calc(50% - 8px); }
  .hero-badge { font-size: 0.74rem; padding: 6px 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  /* Trust bar — 2-col */
  .trust-bar .container { gap: 10px; }
  .trust-item { width: calc(50% - 5px); min-width: unset; }
  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  /* Values */
  .values-grid { grid-template-columns: 1fr; }
  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  /* Track */
  .track-demo-card { padding: 20px 16px; }
  .track-route { padding: 12px; gap: 8px; }
  /* Footer */
  .footer { padding: 40px 0 0; }
}
