:root {
  --primary: #f37120;
  --primary-hover: #d95e10;
  --primary-light: rgba(243, 113, 32, 0.1);
  --secondary: #2563eb;
  --secondary-hover: #1d4ed8;
  --secondary-light: rgba(37, 99, 235, 0.1);
  
  --dark-bg: #0b1120;
  --dark-surface: #131d31;
  --dark-card: #1e293b;
  --light-bg: #f8fafc;
  --light-card: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-subtle: #94a3b8;
  
  --border-color: #e2e8f0;
  --border-color-dark: #334155;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -8px rgba(0, 0, 0, 0.06);
  --shadow-primary: 0 10px 25px -5px rgba(243, 113, 32, 0.35);

  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GSAP Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #fb923c, #3b82f6);
  z-index: 9999;
  box-shadow: 0 0 12px rgba(243, 113, 32, 0.8);
  pointer-events: none;
}

/* 3D Interactive Card Perspective Container */
.perspective-container {
  perspective: 1200px;
}

.will-animate-hero {
  will-change: transform, opacity;
}

/* Ambient Floating Glow Orbs */
.ambient-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.orb-orange {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(243, 113, 32, 0.4), transparent 70%);
  top: -100px;
  right: -50px;
}

.orb-blue {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
  bottom: -80px;
  left: -80px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--border-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(243, 113, 32, 0.45);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--dark-bg);
}

/* Top bar banner */
.top-notice-bar {
  background-color: var(--dark-bg);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-notice-links {
  display: flex;
  gap: 20px;
}

.top-notice-links a:hover {
  color: var(--primary);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 2px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-brand:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-cta-mobile {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--dark-bg);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 50px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(243, 113, 32, 0.09), transparent 50%),
              radial-gradient(circle at 15% 85%, rgba(37, 99, 235, 0.06), transparent 50%),
              #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(243, 113, 32, 0.2);
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.55;
}

/* ==========================================================================
   Apple-Style Scrollytelling Canvas Animation
   ========================================================================== */
.scrolly-section {
  position: relative;
  height: 100vh;
  background-color: var(--dark-bg);
  z-index: 20;
}

/* Navbar floating over the canvas */
.navbar-over-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11, 17, 32, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.4s ease;
}

.navbar-over-canvas .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar-over-canvas .nav-link:hover {
  color: var(--primary);
}

.navbar-over-canvas .logo-brand img {
  filter: brightness(0) invert(1);
}

.scrolly-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1120;
}

#sequence-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}

.scrolly-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 17, 32, 0.1) 0%, rgba(11, 17, 32, 0.75) 100%),
              linear-gradient(180deg, rgba(11, 17, 32, 0.5) 0%, transparent 25%, transparent 75%, rgba(11, 17, 32, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.scrolly-content-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  pointer-events: none;
}

.scrolly-step {
  position: absolute;
  max-width: 480px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 34px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(30px);
  pointer-events: auto;
}

.scrolly-phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(243, 113, 32, 0.15);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(243, 113, 32, 0.3);
}

.scrolly-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.scrolly-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.scrolly-indicator-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.scrolly-step-dot {
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}

.scrolly-step-dot:hover:not(.active) {
  color: #e2e8f0;
}

.scrolly-step-dot.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(243, 113, 32, 0.6);
}

.scrolly-step-dot span {
  opacity: 0.85;
  font-weight: 800;
}

@media (max-width: 768px) {
  .scrolly-content-container {
    padding: 0 20px;
    align-items: flex-end;
    padding-bottom: 90px;
  }
  .scrolly-step {
    max-width: 100%;
    padding: 24px 20px;
  }
  .scrolly-heading {
    font-size: 1.4rem;
  }
  .scrolly-text {
    font-size: 0.85rem;
  }
}

/* Fast Multi-Tracking Card */
.tracking-card {
  background: #ffffff;
  padding: 22px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
  position: relative;
}

.tracking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-bg);
  margin-bottom: 14px;
}

.tracking-card-header .title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tracking-card-header .material-symbols-outlined {
  color: var(--primary);
}

.multi-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #f1f5f9;
  padding: 3px 10px;
  border-radius: var(--border-radius-full);
}

.tracking-form {
  display: flex;
  gap: 10px;
}

.tracking-input-wrapper {
  position: relative;
  flex: 1;
}

.tracking-input-wrapper .material-symbols-outlined {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.tracking-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-full);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.tracking-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.tracking-hint {
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin-top: 8px;
  display: block;
}

.hero-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
}

.hero-badge-item .material-symbols-outlined {
  color: #10b981;
  font-size: 20px;
}

/* Visual Mockup Card */
.visual-card-main {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-card-main::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(243, 113, 32, 0.25), transparent 70%);
}

.fleet-status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.route-preview {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.route-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.route-step:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(243, 113, 32, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.step-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

.step-info p {
  font-size: 0.8rem;
  color: #94a3b8;
}

.pod-preview-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px dashed rgba(16, 185, 129, 0.4);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.pod-preview-badge .material-symbols-outlined {
  color: #10b981;
}

.floating-stat-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  color: var(--dark-bg);
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-color);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logos / Trust Strip */
.trust-strip {
  background-color: #ffffff;
  padding: 36px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}

.trust-logo-item {
  font-weight: 800;
  font-size: 1.15rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.trust-logo-item:hover {
  color: var(--text-main);
  transform: translateY(-2px);
}

/* Common Section Layout */
.section {
  padding: 68px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Solutions by Audience (Inspired by SpeedX & UniUni) */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.audience-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(243, 113, 32, 0.35);
}

.audience-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.audience-card:hover .audience-icon {
  background: var(--primary);
  color: #ffffff;
}

.audience-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 12px;
}

.audience-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  flex-grow: 1;
}

.audience-points {
  margin-bottom: 26px;
}

.audience-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 10px;
  font-weight: 600;
}

.audience-points li .material-symbols-outlined {
  color: #10b981;
  font-size: 18px;
}

/* Comprehensive Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(243, 113, 32, 0.4);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.06);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 24px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li .material-symbols-outlined {
  color: #10b981;
  font-size: 18px;
}

.service-card .btn {
  width: 100%;
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* Why Nextsend / Core Pillars */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: left;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card .why-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark-bg);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: #ffffff;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--dark-bg), #1e293b);
  color: white;
  padding: 76px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* DSP & Driver Section (Inspired by UniUni DSP / SpeedX Driver) */
.dsp-section {
  background-color: #ffffff;
}

.dsp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dsp-box {
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dsp-box-primary {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: white;
}

.dsp-box-secondary {
  background: #f8fafc;
  border: 1.5px solid var(--border-color);
  color: var(--dark-bg);
}

.dsp-box-tertiary {
  background: linear-gradient(145deg, #18181b, #27272a);
  color: white;
  border: 1px solid rgba(243, 113, 32, 0.35);
  position: relative;
  overflow: hidden;
}

.dsp-box-tertiary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(243, 113, 32, 0.22), transparent 70%);
  pointer-events: none;
}

.dsp-box-tertiary p {
  color: #cbd5e1;
}

.dsp-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.dsp-box p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.dsp-box-secondary p {
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 18px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.client-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-bg);
}

.client-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 44px;
  align-items: start;
}

.contact-info-card {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-method {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 4px;
}

.contact-method p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form-card {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

/* Tracking Modal & Result */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 17, 32, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: var(--border-radius-lg);
  padding: 36px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: #f1f5f9;
  color: var(--dark-bg);
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-brand img {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  height: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.newsletter-input-group {
  display: flex;
  margin-top: 16px;
}

.newsletter-input-group input {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-full) 0 0 var(--border-radius-full);
  color: white;
  outline: none;
  font-family: inherit;
  flex: 1;
}

.newsletter-input-group button {
  border-radius: 0 var(--border-radius-full) var(--border-radius-full) 0;
  padding: 0 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dsp-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Header & Navigation */
  .top-notice-bar {
    display: none;
  }
  
  .nav-container {
    height: 64px;
  }

  .logo-brand img {
    height: 32px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .navbar-over-canvas .menu-toggle {
    color: #ffffff;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-color);
    gap: 14px;
    z-index: 1001;
  }

  .navbar-over-canvas .nav-links.active {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .navbar-over-canvas .nav-links.active .nav-link {
    color: #f8fafc;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-over-canvas .nav-links.active .nav-link:last-child {
    border-bottom: none;
  }

  /* Scrollytelling Mobile Optimization */
  .scrolly-section {
    height: 100vh;
  }

  .scrolly-content-container {
    padding: 0 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 84px;
  }

  .scrolly-step {
    position: absolute;
    bottom: 84px;
    top: auto;
    left: 16px;
    right: 16px;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    padding: 18px 16px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: rgba(15, 23, 42, 0.92);
  }

  .scrolly-phase-tag {
    font-size: 0.68rem;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .scrolly-heading {
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .scrolly-text {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .scrolly-indicator-bar {
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: 340px;
    padding: 4px 6px;
    gap: 4px;
    justify-content: space-between;
  }

  .scrolly-step-dot {
    font-size: 0.72rem;
    padding: 5px 8px;
    flex: 1;
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .scrolly-step-dot span {
    font-size: 0.72rem;
  }

  /* Hero & Other Sections */
  .hero {
    padding: 40px 0 36px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .tracking-card {
    padding: 16px 14px;
    margin-bottom: 20px;
  }

  .container {
    padding: 0 16px;
  }

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

  /* Stats Section Mobile */
  .stats-section {
    padding: 44px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 10px;
    padding: 0 4px;
  }

  .stat-box {
    padding: 4px;
    overflow: hidden;
  }

  .stat-number {
    font-size: 1.95rem;
    line-height: 1.1;
    margin-bottom: 6px;
    white-space: nowrap;
  }

  .stat-label {
    font-size: 0.78rem;
    line-height: 1.35;
    color: #cbd5e1;
  }

  /* DSP & Driver Section Mobile */
  .dsp-box {
    padding: 28px 20px;
  }

  .dsp-box h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .dsp-box p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-badges-list {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .visual-card-main {
    padding: 18px 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tracking-form {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info-card, .contact-form-card {
    padding: 24px 20px;
  }

  .newsletter-input-group {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-input-group input {
    border-radius: var(--border-radius-full);
  }

  .newsletter-input-group button {
    border-radius: var(--border-radius-full);
    height: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Scroll To Top Button Placement */
  .scroll-top {
    bottom: 24px;
    right: 16px;
    width: 42px;
    height: 42px;
    z-index: 999;
  }
}

@media (max-width: 380px) {
  .stat-number {
    font-size: 1.65rem;
  }
  .stat-label {
    font-size: 0.72rem;
  }
  .hero-title {
    font-size: 1.85rem;
  }
}
