/* ==========================================================================
   GEOGPS PREMIUM B2B SAAS DESIGN SYSTEM
   Inspired by Samsara, Geotab & Motive.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Core B2B SaaS */
  --bg-light: #ffffff;
  --bg-slate: #f8fafc;
  --bg-dark: #040d1a;
  --bg-dark-soft: #08162b;
  --bg-panel: #0d203d;

  /* Tech Accent Colors */
  --green-tech: #10b981;
  --green-glow: #00f29f;
  --blue-tech: #2563eb;
  --blue-glow: #38bdf8;
  --amber-warning: #f59e0b;
  --red-critical: #ef4444;

  /* Text Colors */
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;

  /* Component Variables */
  --border-light: rgba(226, 232, 240, 0.8);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-green: rgba(16, 185, 129, 0.2);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(4, 13, 26, 0.12);
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   1. GLOBAL RESETS & STYLING
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.bg-slate-section {
  background-color: var(--bg-slate);
}

.bg-dark-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Header Text Styles for Sections */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-tech);
  background-color: rgba(16, 185, 129, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-green);
  margin-bottom: 16px;
}

.bg-dark-section .section-tag {
  color: var(--green-glow);
  background-color: rgba(0, 242, 159, 0.06);
  border-color: rgba(0, 242, 159, 0.15);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.bg-dark-section .section-title {
  color: var(--text-light);
}

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

.bg-dark-section .section-subtitle {
  color: var(--text-light-muted);
}

/* ==========================================================================
   2. BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background-color: var(--green-tech);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background-color: var(--bg-slate);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.bg-dark-section .btn-secondary {
  color: var(--text-light);
  border-color: var(--border-dark);
}

.bg-dark-section .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light);
}

.btn-primary-dark {
  background-color: var(--green-glow);
  color: var(--bg-dark);
  box-shadow: 0 4px 14px rgba(0, 242, 159, 0.3);
}

.btn-primary-dark:hover {
  background-color: #00d98e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 159, 0.5);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 6px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 38px;
  width: auto;
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a365d; /* Strong elegant deep blue */
  letter-spacing: -0.03em;
  line-height: 1;
}

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

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

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

.nav-actions .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.burger-bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-fast);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.08), transparent 35%),
    var(--bg-dark);
  color: var(--text-light);
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-glow);
  margin-bottom: 24px;
}

.hero-tag span {
  width: 8px;
  height: 8px;
  background-color: var(--green-glow);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--green-glow);
  animation: pulse-green 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--green-glow), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 5;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  background-color: var(--bg-dark-soft);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 8px;
}

.hero-banner-img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  opacity: 0.95;
}

.hero-stats-panel {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--green-glow);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 15;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 242, 159, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-glow);
}

.stat-info h4 {
  font-size: 1.25rem;
  color: #ffffff;
}

.stat-info p {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-downloads {
  position: absolute;
  bottom: -70px;
  right: -40px;
  display: flex;
  gap: 12px;
  z-index: 15;
}

.hero-downloads-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #000000;
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.hero-downloads-btn:hover {
  border-color: var(--green-glow);
  background-color: #0d0e0f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hero-downloads-btn svg {
  width: 28px;
  height: 28px;
}

.hero-downloads-btn svg:not(.play-store-icon) {
  fill: currentColor;
}

.btn-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.btn-subtitle {
  font-size: 0.575rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a0aec0;
}

.btn-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   5. PROBLEMS RESOLVED SECTION
   ========================================================================== */

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.problem-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(239, 68, 68, 0.15);
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--red-critical);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.7;
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: rgba(239, 68, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red-critical);
  fill: none;
  stroke-width: 2;
}

.problem-title {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.problem-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   6. OPERATIONAL BENEFITS & ROI CALCULATOR
   ========================================================================== */

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  display: grid;
  gap: 28px;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-icon-wrapper svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-tech);
  fill: none;
  stroke-width: 2;
}

.benefit-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.benefit-info p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* ROI Calculator Styles */
.roi-calculator-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.roi-calculator-card::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.roi-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.roi-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.roi-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.roi-slider-container {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.roi-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.roi-slider-label span {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--green-tech);
  font-size: 1.5rem;
}

.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: #e2e8f0;
  outline: none;
  margin: 15px 0;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-tech);
  border: 4px solid #ffffff;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.roi-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.roi-result-box {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.roi-result-box.highlighted {
  background-color: rgba(16, 185, 129, 0.03);
  border-color: rgba(16, 185, 129, 0.2);
}

.roi-result-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.roi-result-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.roi-result-box.highlighted .roi-result-value {
  color: var(--green-tech);
}

.roi-result-box.highlighted .roi-result-label {
  color: var(--green-tech);
}

.roi-disclaimer {
  grid-column: span 2;
  font-size: 0.725rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
}

/* ==========================================================================
   7. CORE MODULES SECTION
   ========================================================================== */

.modules-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.module-tab-btn {
  background: none;
  border: 1px solid var(--border-light);
  padding: 12px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-normal);
}

.module-tab-btn:hover {
  background-color: var(--bg-slate);
  color: var(--text-dark);
}

.module-tab-btn.active {
  background-color: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

.module-tab-content {
  display: none;
}

.module-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.module-showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.module-text h3 {
  font-size: 1.85rem;
  margin-bottom: 16px;
}

.module-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.module-features-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.module-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  font-weight: 500;
}

.module-features-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-tech);
  fill: none;
  stroke-width: 2.5;
}

.module-graphic {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: #ffffff;
}

.module-graphic img {
  width: 100%;
  object-fit: cover;
}

/* ==========================================================================
   8. SECTORS SERVED SECTION
   ========================================================================== */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.sector-item-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}

.sector-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.2);
}

.sector-item-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--green-tech);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.7;
}

.sector-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-tech);
  fill: none;
  stroke-width: 2;
}

.sector-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
}

.sector-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   9. WEB PLATFORM & MOBILE APP SHOWCASES
   ========================================================================== */

.showcase-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.platform-visual-mockup {
  background-color: var(--bg-dark-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
}

.browser-header {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
  background-color: #0f172a;
  border-radius: calc(var(--radius-lg) - 8px) calc(var(--radius-lg) - 8px) 0 0;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ef4444;
}

.browser-dot:nth-child(2) {
  background-color: #f59e0b;
}

.browser-dot:nth-child(3) {
  background-color: #10b981;
}

.browser-url-bar {
  flex: 1;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-left: 20px;
  font-size: 0.65rem;
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.browser-content-canvas {
  background-color: var(--bg-dark);
  border-radius: 0 0 calc(var(--radius-lg) - 8px) calc(var(--radius-lg) - 8px);
  padding: 24px;
  aspect-ratio: 16 / 10;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}

.mock-sidebar {
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 16px;
}

.mock-side-item {
  height: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.mock-side-item.active {
  background-color: var(--green-glow);
  width: 80%;
}

.mock-map-canvas {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  position: relative;
  background-color: #0d1e34;
  overflow: hidden;
}

.mock-map-vehicle {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mock-vehicle-ping {
  width: 14px;
  height: 14px;
  background-color: var(--green-glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
  animation: pulse-green-glow 1.5s infinite;
}

.mock-vehicle-tag {
  background-color: #ffffff;
  color: var(--bg-dark);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 6px;
  white-space: nowrap;
}

.mock-mobile-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.mobile-frame-wrapper {
  width: 280px;
  height: 560px;
  border: 12px solid #0f172a;
  border-radius: 40px;
  background-color: #ffffff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.mobile-frame-camera {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background-color: #0f172a;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.mobile-screen-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 20px;
  background-color: var(--bg-slate);
}

.mobile-mock-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.mobile-mock-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.mobile-mock-card h5 {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.mobile-mock-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mobile-mock-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-mock-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.725rem;
}

.mobile-mock-check-item span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--green-tech);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-mock-check-item.done span {
  background-color: var(--green-tech);
}

.mobile-mock-check-item.done span::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
  margin-top: -2px;
}

/* ==========================================================================
   10. GEOFENCES & INTERACTIVE ALERTS SIMULATOR
   ========================================================================== */

.alerts-simulator-card {
  background-color: var(--bg-dark-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 40px;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.simulator-map-panel {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  background-color: #0b1a30;
  position: relative;
  overflow: hidden;
}

.sim-geofence-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border: 2px dashed rgba(16, 185, 129, 0.4);
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.05);
}

.sim-geofence-circle.breached {
  border-color: rgba(239, 68, 68, 0.5);
  background-color: rgba(239, 68, 68, 0.05);
  animation: pulse-red-bg 2s infinite;
}

.sim-vehicle {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background-color: var(--green-glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
  transition: all 4s linear;
}

.sim-vehicle.moving {
  left: 85%;
}

.sim-vehicle.breached {
  background-color: var(--red-critical);
  box-shadow: 0 0 10px var(--red-critical);
}

.sim-geofence-label {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-glow);
  background-color: rgba(4, 13, 26, 0.8);
  padding: 2px 8px;
  border-radius: 4px;
}

.sim-geofence-label.breached {
  color: var(--red-critical);
}

.simulator-log-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sim-log-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
}

.sim-log-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sim-alert-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  opacity: 0.5;
  transition: var(--transition-fast);
}

.sim-alert-row.active {
  opacity: 1;
  background-color: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.25);
  transform: scale(1.02);
}

.sim-alert-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-light-muted);
}

.sim-alert-row.active .sim-alert-indicator {
  background-color: var(--red-critical);
  box-shadow: 0 0 8px var(--red-critical);
  animation: pulse-red-glow 1s infinite;
}

.sim-alert-details h5 {
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.sim-alert-details p {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

.sim-alert-time {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  font-weight: 600;
}

.sim-control-btn {
  margin-top: 10px;
  align-self: flex-start;
}

/* ==========================================================================
   11. HISTORIAL & REPLAY / EVIDENCIAS
   ========================================================================== */

.timeline-route-tracker {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.timeline-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-status {
  font-size: 0.725rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--green-tech);
  font-weight: 700;
}

.timeline-nodes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
}

.timeline-nodes::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background-color: #e2e8f0;
}

.timeline-node-item {
  position: relative;
}

.timeline-node-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #cbd5e1;
}

.timeline-node-item.completed::before {
  background-color: var(--green-tech);
  box-shadow: 0 0 0 1px var(--green-tech);
}

.timeline-node-info h5 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.timeline-node-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.inspection-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inspection-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-slate);
}

.inspection-label h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.inspection-label p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.inspection-status-pill {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.inspection-status-pill.pass {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--green-tech);
}

.inspection-status-pill.fail {
  background-color: rgba(239, 68, 68, 0.08);
  color: var(--red-critical);
}

/* ==========================================================================
   12. CASE STUDIES (CASOS DE USO)
   ========================================================================== */

.cases-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.case-study-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.case-category {
  font-size: 0.725rem;
  font-weight: 800;
  color: var(--blue-tech);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.case-quote {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  margin-bottom: 24px;
}

.case-metric-box {
  text-align: center;
}

.case-metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--green-tech);
}

.case-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.case-author {
  display: flex;
  flex-direction: column;
}

.case-author-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.case-author-company {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   13. PRICING PLANS
   ========================================================================== */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.plan-item-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.plan-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan-item-card.featured {
  background-color: var(--bg-dark-soft);
  border-color: var(--green-tech);
  color: var(--text-light);
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.plan-item-card.featured:hover {
  transform: translateY(-14px);
}

.plan-badge-pill {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--green-tech);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-green);
}

.plan-item-card.featured .plan-badge-pill {
  background-color: rgba(0, 242, 159, 0.1);
  color: var(--green-glow);
  border-color: rgba(0, 242, 159, 0.3);
}

.plan-header {
  margin-bottom: 24px;
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.plan-item-card.featured .plan-header h3 {
  color: #ffffff;
}

.plan-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plan-item-card.featured .plan-header p {
  color: var(--text-light-muted);
}

.plan-price-block {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.plan-item-card.featured .plan-price-block {
  color: #ffffff;
}

.plan-price-block span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.plan-item-card.featured .plan-price-block span {
  color: var(--text-light-muted);
}

.plan-features-header {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.plan-item-card.featured .plan-features-header {
  color: #ffffff;
  border-bottom-color: var(--border-dark);
}

.plan-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.plan-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.plan-checklist li svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-tech);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.plan-item-card.featured .plan-checklist li svg {
  stroke: var(--green-glow);
}

.plan-item-card .btn {
  width: 100%;
}

/* ==========================================================================
   14. FAQ (FREQUENTLY ASKED QUESTIONS) ACCORDION
   ========================================================================== */

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  border-color: var(--border-light);
}

.faq-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-header-btn h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-right: 20px;
}

.faq-header-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.faq-header-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2.5;
}

.faq-item.active .faq-header-icon {
  transform: rotate(180deg);
  background-color: var(--green-tech);
  border-color: var(--green-tech);
}

.faq-item.active .faq-header-icon svg {
  stroke: #ffffff;
}

.faq-body-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-body-content {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   15. LEAD CAPTURE FORM SECTION
   ========================================================================== */

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info-panel h3 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.contact-info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: var(--bg-slate);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
}

.info-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-tech);
  fill: none;
  stroke-width: 2;
}

.info-item-details h5 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.info-item-details p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.lead-form-wrapper {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group-full {
  grid-column: span 2;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-input-control {
  font-family: 'Plus Jakarta Sans', sans-serif;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  font-size: 0.925rem;
  outline: none;
  background-color: #ffffff;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

textarea.form-input-control {
  height: 120px;
  padding: 12px 16px;
  resize: none;
}

.form-input-control:focus {
  border-color: var(--green-tech);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-submit-container {
  grid-column: span 2;
  margin-top: 10px;
}

.form-submit-container .btn {
  width: 100%;
}

.form-feedback-msg {
  grid-column: span 2;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

.form-feedback-msg.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.08);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback-msg.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.08);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Spinner for Loading State */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  display: none;
}

/* ==========================================================================
   16. PROFESSIONAL FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  border-top: 1px solid var(--border-dark);
  padding: 80px 0 40px;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo img {
  height: 48px;
  width: auto;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-brand-socials {
  display: flex;
  gap: 16px;
}

.social-circle-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-circle-link:hover {
  background-color: var(--green-glow);
  border-color: var(--green-glow);
}

.social-circle-link:hover svg {
  fill: var(--bg-dark);
}

.social-circle-link svg {
  width: 16px;
  height: 16px;
  fill: var(--text-light-muted);
  transition: var(--transition-fast);
}

.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 24px;
}

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

.footer-links-list a {
  font-size: 0.875rem;
  font-weight: 500;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-glow);
  fill: none;
  stroke-width: 2;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.8rem;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
}

.footer-legal-links a:hover {
  color: var(--green-glow);
}

/* ==========================================================================
   17. KEYFRAME ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */

@keyframes pulse-green {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-green-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 242, 159, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 242, 159, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 242, 159, 0);
  }
}

@keyframes pulse-red-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes pulse-red-bg {
  0% {
    background-color: rgba(239, 68, 68, 0.05);
  }

  50% {
    background-color: rgba(239, 68, 68, 0.12);
  }

  100% {
    background-color: rgba(239, 68, 68, 0.05);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin: 40px auto 0;
    width: 100%;
  }

  .hero-stats-panel {
    left: 20px;
    bottom: -20px;
  }

  .hero-downloads {
    right: 20px;
    bottom: -20px;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .showcase-grid-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .showcase-info {
    order: -1;
    text-align: center;
  }

  .showcase-info ul {
    display: inline-block;
    text-align: left;
  }

  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-actions {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .burger-menu.active .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-stats-panel {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 20px auto 0;
    max-width: 300px;
    justify-content: center;
  }

  .hero-downloads {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 16px auto 0;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .section-padding {
    padding: 70px 0;
  }

  .roi-results-grid {
    grid-template-columns: 1fr;
  }

  .roi-disclaimer {
    grid-column: span 1;
  }

  .module-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .form-group-full,
  .form-submit-container {
    grid-column: span 1;
  }

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

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