/* ==========================================================================
   GROUP JL - GESTÃO INTELIGENTE DE FROTAS & TELEMETRIA
   Design System & Modern CSS Stylesheet
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #070b14;
  --bg-secondary: #0d1527;
  --bg-card: rgba(16, 24, 40, 0.7);
  --bg-card-hover: rgba(22, 36, 62, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.65);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(37, 99, 235, 0.4);
  --border-glow: rgba(59, 130, 246, 0.6);

  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-glow: rgba(37, 99, 235, 0.35);
  --primary-dark: #1d4ed8;

  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #ef4444;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-inverse: #020617;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Glass */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.4), 0 2px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.6), 0 8px 16px -4px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 35px -5px rgba(37, 99, 235, 0.35);
  --shadow-glow-emerald: 0 0 30px -5px rgba(16, 185, 129, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #172554 0%, #070b14 60%, #030712 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Background Ambient Orbs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.ambient-glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #2563eb, transparent 70%);
  top: -100px;
  right: -100px;
}

.ambient-glow-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #0284c7, transparent 70%);
  bottom: 20%;
  left: -200px;
}

.ambient-glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #10b981, transparent 70%);
  top: 50%;
  right: -150px;
  opacity: 0.2;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--primary-light), var(--accent-emerald));
  z-index: 1000;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
  transition: width 0.1s ease-out;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
}

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

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

.hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(7, 11, 20, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 11, 20, 0.92);
  border-bottom-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--primary-glow);
  padding: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.brand-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Modern Mobile Hamburger Toggle Button */
.mobile-toggle-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.mobile-toggle-btn .material-symbols-outlined {
  font-size: 24px;
}

/* --------------------------------------------------------------------------
   Offcanvas Mobile Drawer Styles
   -------------------------------------------------------------------------- */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  background: #080d1a;
  border-left: 1px solid rgba(59, 130, 246, 0.2);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.drawer-body {
  padding: 20px 18px;
  flex: 1;
  overflow-y: auto;
}

.drawer-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 12px;
  padding-left: 6px;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.drawer-nav-link .nav-icon {
  font-size: 20px;
  color: #60a5fa;
  transition: transform 0.2s ease;
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #fff;
  transform: translateX(4px);
}

.drawer-nav-link:hover .nav-icon,
.drawer-nav-link.active .nav-icon {
  color: #38bdf8;
  transform: scale(1.1);
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(4, 7, 14, 0.7);
}

.btn-drawer {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 0.88rem;
}

.drawer-system-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #34d399;
  font-weight: 600;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
}

.btn-emerald:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 170px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
  color: #34d399;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  opacity: 0.5;
  animation: pulseRipple 1.8s ease-out infinite;
}

@keyframes pulseRipple {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #93c5fd 75%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-suffix {
  font-size: 1.2rem;
  color: var(--primary-light);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 4px;
}

/* Hero Showcase Visual */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.cockpit-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.cockpit-preview-card:hover {
  transform: translateY(-6px) rotateX(1deg);
  border-color: rgba(37, 99, 235, 0.4);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.preview-chip {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-emerald);
}

.preview-map-box {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  background: #090e1a;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
}

.preview-map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(1.4) contrast(1.1);
}

/* Radar ping overlay */
.radar-blip {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 16px var(--primary-light);
}

.radar-blip::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  animation: radarRipple 2s infinite ease-out;
}

.blip-1 {
  top: 38%;
  left: 45%;
}

.blip-2 {
  top: 62%;
  left: 72%;
  background: var(--accent-emerald);
}

.blip-2::after {
  border-color: var(--accent-emerald);
}

.preview-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-mini-card {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-mini-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-mono);
}

.metric-mini-lbl {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Floating Badges on Hero Visual */
.floating-glass-badge {
  position: absolute;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: rgba(13, 21, 39, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatBounce 4s ease-in-out infinite;
}

.badge-top-left {
  top: -24px;
  left: -20px;
  animation-delay: 0s;
}

.badge-bottom-right {
  bottom: -24px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* --------------------------------------------------------------------------
   Section Common Layout & Titles
   -------------------------------------------------------------------------- */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60a5fa;
  margin-bottom: 14px;
  background: rgba(37, 99, 235, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   GPS & Route Simulator Showcase Section
   -------------------------------------------------------------------------- */
.simulator-container {
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
}

.simulator-topbar {
  padding: 16px 24px;
  background: rgba(13, 21, 39, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.simulator-status-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot-radar {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  position: relative;
}

.status-dot-radar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--accent-emerald);
  border-radius: 50%;
  animation: radarRipple 1.8s infinite;
}

.sim-scenario-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.scenario-btn {
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.scenario-btn.active-opt {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

.scenario-btn.active-dev {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

.simulator-main-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: 580px;
}

.simulator-map-area {
  position: relative;
  background: #090e1a;
  overflow: hidden;
}

#simulatorMap {
  width: 100%;
  height: 100%;
  min-height: 520px;
  z-index: 1;
}

/* Telemetry Sidebar Cockpit */
.telemetry-sidebar {
  background: rgba(10, 16, 30, 0.95);
  border-left: 1px solid var(--border-subtle);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.cockpit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.cockpit-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vehicle-plate-pill {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: #fff;
  color: #000;
  border: 1px solid #94a3b8;
  letter-spacing: 0.05em;
}

/* Speedometer & Gauge Display */
.speedometer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  position: relative;
}

.speed-digital {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.speed-unit {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-top: 4px;
}

.speed-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 14px;
  overflow: hidden;
}

.speed-bar-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, #10b981, #3b82f6, #ef4444);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.telemetry-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.telemetry-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.tm-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tm-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.val-danger {
  color: #f87171 !important;
}

.val-success {
  color: #34d399 !important;
}

/* Auditoria Alert Box */
.audit-alert-box {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.78rem;
  line-height: 1.5;
  transition: var(--transition);
}

.audit-alert-box.deviation {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.audit-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

/* Bottom Control Bar on Simulator */
.simulator-controls {
  padding: 16px 24px;
  background: rgba(13, 21, 39, 0.95);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-pause-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: var(--transition);
  flex-shrink: 0;
}

.play-pause-btn:hover {
  transform: scale(1.08);
  background: var(--primary-light);
}

.timeline-scrubber-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.time-readout {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.timeline-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
}

.timeline-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #38bdf8;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.timeline-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.speed-multiplier-btn {
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
}

.speed-multiplier-btn:hover,
.speed-multiplier-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary-light);
}

/* --------------------------------------------------------------------------
   Driver Smartphone Feature Card (PWA Beacon)
   -------------------------------------------------------------------------- */
.driver-pwa-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(16, 24, 40, 0.9), rgba(13, 27, 62, 0.8));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.driver-pwa-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  pointer-events: none;
}

.pwa-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pwa-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pwa-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.pwa-feat-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.pwa-feat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* Smartphone Mockup */
.smartphone-mockup {
  width: 260px;
  height: 480px;
  margin: 0 auto;
  background: #030712;
  border: 8px solid #1e293b;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 100px;
  height: 16px;
  background: #1e293b;
  border-radius: 0 0 12px 12px;
  align-self: center;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at 50% 30%, #0f172a, #030712);
}

.phone-radar-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.4);
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px 0;
}

.phone-radar-circle::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px dashed rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------------------------------
   Management Modules Showcase (Interactive Grid)
   -------------------------------------------------------------------------- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.module-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(37, 99, 235, 0.2);
}

.module-card:hover::before {
  opacity: 1;
}

.module-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.icon-blue {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.icon-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.icon-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.icon-purple {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.icon-rose {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.module-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.module-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.module-highlights {
  list-style: none;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.check-icon {
  color: var(--accent-emerald);
  font-size: 16px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Fleet Economy Calculator (Interactive ROI Widget)
   -------------------------------------------------------------------------- */
.calculator-section {
  background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.25) 0%, rgba(7, 11, 20, 0.95) 70%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.calc-box {
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.sliders-container {
  padding-right: 16px;
}

.slider-group {
  margin-bottom: 28px;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding-right: 4px;
}

.slider-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.35;
  flex: 1;
}

.slider-val-badge {
  font-family: var(--font-mono);
  font-size: 0.98rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  padding: 5px 14px;
  border-radius: 8px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.8);
  cursor: pointer;
}

/* ROI Result Card */
.roi-result-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), var(--shadow-glow-emerald);
  position: relative;
}

.roi-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34d399;
}

.roi-amount-monthly {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 12px 0 6px 0;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.roi-amount-yearly {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.roi-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  text-align: left;
}

.rb-item {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.rb-item strong {
  display: block;
  font-size: 0.9rem;
  color: #e2e8f0;
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Call to Action (Final CTA) & Contact
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(37, 99, 235, 0.3);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.25), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto 36px auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #030712;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 36px 0;
  color: var(--text-dim);
  font-size: 0.88rem;
}

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

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: #60a5fa;
  transform: translateX(3px);
}

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

/* --------------------------------------------------------------------------
   Scroll Animations & Reveal Engine
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries & Mobile Optimizations
   -------------------------------------------------------------------------- */

/* Breakpoint: <= 1120px (Desktop Navigation collapses to Mobile Drawer) */
@media (max-width: 1120px) {
  .nav-menu {
    display: none !important;
  }

  .nav-btn-desktop {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: flex !important;
  }

  .navbar {
    height: 72px;
  }
}

/* Breakpoint: <= 1024px (Tablets & Medium Screens) */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .hero-section {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .simulator-main-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  #simulatorMap {
    min-height: 400px;
    height: 420px;
  }

  .telemetry-sidebar {
    border-left: none;
    border-top: 1px solid var(--border-subtle);
    padding: 22px;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .driver-pwa-banner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Breakpoint: <= 768px (Standard Mobile Screens) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.18;
  }

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

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-suffix {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }

  .badge-top-left,
  .badge-bottom-right {
    display: none;
  }

  .cockpit-preview-card {
    padding: 16px;
    border-radius: var(--radius-lg);
  }

  .preview-map-box {
    height: 180px;
  }

  /* GPS Simulator Section */
  .simulator-topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    gap: 12px;
  }

  .sim-scenario-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 4px;
  }

  .scenario-btn {
    padding: 8px 10px;
    font-size: 0.72rem;
    justify-content: center;
    text-align: center;
  }

  #simulatorMap {
    min-height: 320px;
    height: 340px;
  }

  .map-overlay-badge {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
  }

  .map-legend-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    justify-content: space-between;
    padding: 6px 10px;
    font-size: 0.68rem;
    gap: 6px;
  }

  .simulator-controls {
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 12px;
  }

  .timeline-scrubber-wrapper {
    order: 2;
    width: 100%;
    flex: 1 1 100%;
  }

  .play-pause-btn {
    order: 1;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .simulator-controls>div:last-child {
    order: 1;
    margin-left: auto;
  }

  .speed-digital {
    font-size: 2.6rem;
  }

  /* Driver PWA Section */
  .driver-pwa-banner {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
  }

  .pwa-feature-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .smartphone-mockup {
    width: 220px;
    height: 400px;
    border-width: 6px;
    border-radius: 32px;
  }

  /* Management Modules */
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .module-card {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  /* ROI Calculator */
  .calc-box {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }

  .sliders-container {
    padding-right: 12px;
  }

  .slider-label-row {
    gap: 12px;
    margin-bottom: 12px;
    padding-right: 6px;
  }

  .slider-title {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .slider-val-badge {
    font-size: 0.84rem;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .roi-result-card {
    padding: 24px 18px;
    max-width: calc(100% - 1px);
  }

  .roi-amount-monthly {
    font-size: 2.2rem;
  }

  /* CTA & Footer */
  .cta-box {
    padding: 40px 20px;
    border-radius: var(--radius-lg);
  }

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

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

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

/* Breakpoint: <= 480px (Compact Mobile Screens) */
@media (max-width: 480px) {
  .navbar {
    height: 68px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-badge {
    font-size: 0.62rem;
    padding: 2px 6px;
  }

  .brand-tagline {
    font-size: 0.68rem;
  }

  .nav-btn-highlight {
    display: none !important;
  }

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

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .sim-scenario-selector {
    grid-template-columns: 1fr;
  }

  .speed-digital {
    font-size: 2.2rem;
  }

  .calc-box {
    padding: 22px 16px;
  }

  .sliders-container {
    padding-right: 12px;
    max-width: calc(100% - 54px);
  }

  .roi-result-card {
    padding: 24px 18px;
    max-width: calc(100% - 60px);
  }

  .slider-label-row {
    gap: 10px;
    padding-right: 4px;
    margin-bottom: 10px;
  }

  .slider-title {
    font-size: 0.82rem;
  }

  .slider-val-badge {
    font-size: 0.78rem;
    padding: 4px 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}