/* EZtrack Studio Design System - Converted from Tailwind CSS */

/* CSS Variables */
:root {
  /* EZtrack color system - dark blue theme */
  --background: hsl(220, 45%, 8%);
  --foreground: hsl(0, 0%, 100%);
  --card: hsl(220, 45%, 10%);
  --card-foreground: hsl(0, 0%, 100%);
  --popover: hsl(220, 45%, 10%);
  --popover-foreground: hsl(0, 0%, 100%);
  --primary: hsl(210, 100%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(220, 45%, 15%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(220, 45%, 12%);
  --muted-foreground: hsl(0, 0%, 70%);
  --accent: hsl(210, 100%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 45%, 20%);
  --input: hsl(220, 45%, 15%);
  --ring: hsl(210, 100%, 55%);
  --radius: 0.375rem;

  /* EZtrack specific colors from original site */
  --eztrack-blue: #1C60C8;
  --eztrack-blue-dark: #031433;
  --eztrack-blue-medium: #0e2653;
  --eztrack-green: #5ed2a8;
  --eztrack-text-primary: #ffffff;
  --eztrack-text-secondary: #b0b0b0;
  --eztrack-accent: #01cf91;

  /* EZtrack gradients */
  --gradient-hero: linear-gradient(135deg, hsl(220, 45%, 8%) 0%, hsl(220, 45%, 15%) 50%, hsl(210, 100%, 20%) 100%);
  --gradient-device: linear-gradient(145deg, hsl(210, 100%, 55%) 0%, hsl(210, 100%, 45%) 100%);

  /* EZtrack animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--gradient-hero);
  color: var(--foreground);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(220, 45%, 8%, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--eztrack-blue-medium);
  background-color:#082353;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  margin-right: 0.75rem;
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--eztrack-text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--eztrack-blue);
}

.header-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.social-link {
  color: var(--eztrack-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--eztrack-blue);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--eztrack-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(220, 45%, 8%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--eztrack-blue-medium);
}

.mobile-menu.active {
  display: block;
}

.nav-mobile {
  padding: 1rem 0;
}

.nav-mobile .nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--eztrack-text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-mobile .nav-link:hover {
  color: var(--eztrack-blue);
}

.mobile-buttons {
  padding-top: 1rem;
  border-top: 1px solid var(--eztrack-blue-medium);
}

.mobile-buttons .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.mobile-buttons .social-icons {
  justify-content: center;
  margin-left: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-decoration: none;
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-primary {
  background: var(--eztrack-green);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: rgba(142, 76%, 36%, 0.8);
}

.btn-contact {
  background: var(--eztrack-blue);
  color: white;
  border: none;
}

.btn-contact:hover {
  background: rgba(210, 100%, 55%, 0.8);
}

.btn-outline {
  border: 1px solid var(--eztrack-blue);
  color: var(--eztrack-blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--eztrack-blue);
  color: white;
}

.btn-lg {
  height: 2.75rem;
  padding: 0.5rem 2rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--eztrack-blue-dark);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  max-width: 50%;
  padding: 2rem 0;
}

.hero-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 32rem;
  color: #5ed2a8;;
}

.hero-description span {
  display: inline-block;
  margin-right: 0.25rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.device-img {
  max-width: 100%;
  height: auto;
}


.epic-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 20;
}

.epic-badge img {
  width: 6rem;
  height: 6rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.epic-badge img:hover {
  opacity: 1;
}

/* News Section */
.news {
  padding: 5rem 0;
  background: var(--eztrack-blue-medium);
}

.news-content {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

.news-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  background: var(--eztrack-blue-dark);
  transform: translateY(-2px);
}

.news-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-text {
  padding: 2rem;
}

.news-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.news-description {
  color: var(--eztrack-text-secondary);
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.news-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--eztrack-text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  color: var(--eztrack-blue);
  background: rgba(220, 45%, 15%, 0.3);
}

.dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(0, 0%, 70%, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--eztrack-blue);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-secondary);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.6;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* What is EZtrack Section */
.what-is-eztrack {
  padding: 5rem 0;
  background: var(--eztrack-blue-dark);
}

.what-is-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-is-text {
  padding-right: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.features-list li {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.features-list li::before {
  content: '•';
  color: var(--eztrack-green);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.1rem;
}

.what-is-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.what-is-video video {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  background: rgba(220, 45%, 15%, 0.4);
}

.feature-number {
  width: 3rem;
  height: 3rem;
  background: var(--eztrack-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--eztrack-text-primary);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--eztrack-text-secondary);
  font-size: 0.875rem;
}

/* Applications Section */
.applications {
  padding: 5rem 0;
  background: var(--eztrack-blue-medium);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 3rem;
}

.application-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}

.application-card:hover {
  transform: scale(1.05);
}

.app-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.app-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.app-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.3));
}

.app-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.3));
}

.app-orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(220, 38, 38, 0.3));
}

.app-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.3));
}

.app-purple {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.3));
}

.app-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.app-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.highlight-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
}

.text-green {
  color: var(--eztrack-green);
}

.text-blue {
  color: var(--eztrack-blue);
}

.tracking-text h2{
  font-size: 1rem;
}

.tracking-text p{
  font-size: 0.875rem;
  color: white;
}

.hero-lighthouse{
  width: 100%;
  height: 10vh;
}

.description-header{
  background-color: #01cf91;
  color: white;
  padding: 10px;
  margin-bottom: 30px;
}

/* Tracking Combos Section */
.tracking-combos {
  padding: 11rem 0;
}

.tracking-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.tracking-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tracking-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tracking-image {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.connection {
  background: rgba(210, 100%, 55%, 0.3);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--eztrack-text-secondary);
}

/* Premium Features Section */
.premium-features {
  padding: 5rem 0;
  background: rgba(220, 45%, 15%, 0.2);
}

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

.premium-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.premium-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.premium-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.premium-content {
  padding: 1.5rem;
}

.premium-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.premium-description {
  color: var(--eztrack-text-secondary);
  line-height: 1.6;
}

/* Render Engines Section */
.render-engines {
  padding: 5rem 0;
  background: var(--eztrack-blue-dark);
}

.engines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.engine-card {
  background: rgba(220, 45%, 15%, 0.2);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.engine-card:hover {
  background: rgba(220, 45%, 15%, 0.3);
  transform: scale(1.05);
}

.engine-card small {
  color: var(--eztrack-text-secondary);
  font-size: 0.75rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: rgba(220, 45%, 15%, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: rgba(220, 45%, 8%, 0.5);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.service-card:hover {
  background: rgba(220, 45%, 8%, 0.7);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--eztrack-green);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--eztrack-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Calls Section */
.contact-calls {
  padding: 5rem 0;
  background: var(--eztrack-blue-dark);
}

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

.call-card {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.call-card:hover {
  background: rgba(220, 45%, 15%, 0.4);
  transform: scale(1.05);
}

.call-icon {
  width: 5rem;
  height: 5rem;
  background: var(--eztrack-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.call-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.call-description {
  color: var(--eztrack-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Technical Specs Section */
.technical-specs {
  padding: 5rem 0;
  background: rgba(220, 45%, 15%, 0.2);
}

.specs-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.specs-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spec-item {
  background: rgba(220, 45%, 8%, 0.5);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.spec-label {
  color: var(--eztrack-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.spec-value {
  color: var(--eztrack-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.device-diagram {
  margin-bottom: 2rem;
}

.diagram-card {
  background: rgba(220, 45%, 8%, 0.5);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.hub-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(210, 100%, 55%, 0.2), rgba(220, 45%, 15%, 0.3));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 6rem;
  height: 4rem;
  background: var(--eztrack-blue);
  border-radius: 0.5rem;
  color: white;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.ports-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.port-item {
  color: var(--eztrack-text-secondary);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(220, 45%, 15%, 0.3);
}

.performance-stats {
  margin-top: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: rgba(220, 45%, 8%, 0.5);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-green);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--eztrack-text-secondary);
  font-size: 0.875rem;
}

/* Engine Logos */
.engine-logo {
  width: 8rem;
  height: 10rem;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--eztrack-blue-dark);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--eztrack-blue-medium);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-info h4 {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-info p {
  color: var(--eztrack-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column h5 {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--eztrack-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--eztrack-blue);
}

.footer-contact h5 {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-contact p {
  color: var(--eztrack-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--eztrack-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Services Content */
.services-content {
  margin-top: 2rem;
}

.services-text {
  margin-bottom: 2rem;
}

.services-text .service-title {
  color: var(--eztrack-green);
  font-size: 1.5rem;
  font-weight: bold;
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-content {
  padding: 1.5rem;
}

/* EZlineup Specific Styles */
.ezlineup-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.ezlineup-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #031433;
}

.ezlineup-hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  max-width: 50%;
  padding: 2rem 0;
}

.ezlineup-hero .hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ezlineup-hero .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
}

.divider {
  width: 100%;
}

.divider-small-border {
  width: 150px;
  height: 2px;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  margin: 30px 0;
}

.video-section {
  padding: 0;
  background: #06143c;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.video-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.video-text {
  padding: 2rem 0;
}

.video-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
}

.video-text .section-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.why-important {
  padding: 5rem 0;
  background: #040b27;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  text-align: center;
}

.why-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-descriptions h3 {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.pixel-perfection {
  padding: 5rem 0;
  background: #040b27;
}

.perfection-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.perfection-text h3 {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-weight: 400;
}

.perfection-image {
  text-align: center;
}

.magic-cube {
  padding: 5rem 0;
  background: #040b27;
}

.cube-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cube-image {
  text-align: center;
}

.cube-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.cube-text h3 {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-weight: 400;
}

.offsets-computing {
  padding: 0;
  background: #06143c;
}

.offsets-header {
  text-align: center;
  padding: 2rem 0;
}

.offsets-header .section-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
}

.comparison-card {
  padding: 2rem;
  text-align: center;
  background: #06143c;
}

.comparison-card.without {
  background: #06143c;
}

.comparison-card.with {
  background: #06143c;
}

.comparison-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #eeee22;
  margin-bottom: 1rem;
}

.comparison-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-weight: 400;
}

.referential-section {
  padding: 5rem 0;
  background: #040b27;
}

.referential-content {
  max-width: 56rem;
  margin: 0 auto;
}

.referential-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.referential-text h3 {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}

.referential-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.referential-list li {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.precise-lineup {
  padding: 5rem 0;
  background: #040b27;
}

.lineup-content {
  max-width: 56rem;
  margin: 0 auto;
}

.lineup-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lineup-text h3 {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}

.lineup-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.lineup-list li {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}

.one-solution {
  padding: 5rem 0;
  background: #040b27;
}

.solution-header {
  text-align: center;
  margin-bottom: 3rem;
}

.solution-header .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  text-align: center;
  padding: 2rem;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.solution-description {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-size: 1rem;
}

.steps {
  padding: 5rem 0;
  background: #040b27;
}

.steps-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-image {
  margin-bottom: 1.5rem;
}

.step-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.step-number {
  background: var(--eztrack-green);
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
}

.step-note {
  color: var(--eztrack-green);
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.6;
}

.interface-showcase {
  padding: 5rem 0;
  background: #040b27;
}

.interface-content {
  text-align: center;
}

.interface-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.interface-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.interface-image {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 1rem;
  overflow: hidden;
}

.interface-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}

.compatibility {
  padding: 5rem 0;
  background: #040b27;
}

.compatibility-header {
  text-align: center;
  margin-bottom: 3rem;
}

.compatibility-header .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.compatibility-card {
  padding: 2rem;
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
}

.compatibility-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.compatibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compatibility-list li {
  color: var(--eztrack-text-primary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.purchase-plans {
  padding: 5rem 0;
  background: #040b27;
}

.plans-header {
  text-align: center;
  margin-bottom: 3rem;
}

.plans-header .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.plan-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.plan-card.featured {
  border: 2px solid var(--eztrack-green);
  transform: scale(1.05);
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.plan-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.plan-features li {
  color: var(--eztrack-text-primary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.plan-features li::before {
  content: '•';
  color: var(--eztrack-green);
  font-size: 1rem;
  position: absolute;
  left: 0;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-green);
  margin-bottom: 1rem;
}

.plan-note {
  color: var(--eztrack-text-primary);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.faq {
  padding: 5rem 0;
  background: #040b27;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-content {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

.device-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Tracking Setups Pages Styles */
.lighthouse-hero,
.antilatency-hero,
.mocap-hero,
.hybrid-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.lighthouse-hero .hero-bg,
.antilatency-hero .hero-bg,
.mocap-hero .hero-bg,
.hybrid-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #031433;
}

.lighthouse-hero .hero-content,
.antilatency-hero .hero-content,
.mocap-hero .hero-content,
.hybrid-hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  max-width: 50%;
  padding: 2rem 0;
}

.lighthouse-hero .hero-title,
.antilatency-hero .hero-title,
.mocap-hero .hero-title,
.hybrid-hero .hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lighthouse-hero .hero-subtitle,
.antilatency-hero .hero-subtitle,
.mocap-hero .hero-subtitle,
.hybrid-hero .hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
}

.lighthouse-hero .hero-description,
.antilatency-hero .hero-description,
.mocap-hero .hero-description,
.hybrid-hero .hero-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
}

.bundle-description,
.setups-description {
  padding: 5rem 0;
  background: #040b27;
}

.description-content {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.description-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description-text p {
  font-size: 1rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.bundle-features {
  padding: 5rem 0;
  background: #040b27;
}

.features-content {
  text-align: center;
}

.features-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: rgba(220, 45%, 15%, 0.4);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-size: 1rem;
}

.bundle-features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.bundle-features-list li {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.bundle-features-list li::before {
  content: '–';
  color: var(--eztrack-green);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
}

/* Main Components Section */
.main-components {
  padding: 5rem 0;
  background: #040b27;
}

.components-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  text-align: center;
}

.component-item {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.component-item:hover {
  background: rgba(220, 45%, 15%, 0.4);
  transform: translateY(-5px);
}

.component-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.component-description {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-size: 1rem;
}

.component-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

/* Shape Area Section */
.shape-area {
  padding: 5rem 0;
  background: #031433;
}

.shape-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.shape-description {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 2rem;
}

/* Antilatency Features Section */
.antilatency-features {
  padding: 5rem 0;
  background: #040b27;
}

.antilatency-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.antilatency-features .feature-item {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.antilatency-features .feature-item:hover {
  background: rgba(220, 45%, 15%, 0.4);
  transform: translateY(-5px);
}

.antilatency-features .feature-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.antilatency-features .feature-item p {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-size: 1rem;
}

/* Tutorial Section */
.tutorial-section {
  padding: 5rem 0;
  background: #031433;
}

.tutorial-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.tutorial-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 2rem;
}

.tutorial-description {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tutorial-video {
  margin: 2rem 0;
}

.video-placeholder {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 3rem;
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
}

/* Configuration Images */
.config-image {
  margin-top: 1rem;
}

.config-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Technical Specifications */
.technical-specs {
  padding: 5rem 0;
  background: #040b27;
}

.specs-content {
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.spec-item {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.spec-item:hover {
  background: rgba(220, 45%, 15%, 0.4);
  transform: translateY(-5px);
}

.spec-item h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--eztrack-green);
  margin-bottom: 0.5rem;
}

.spec-item p {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-size: 1rem;
}

/* SWAN Tracker Section */
.swan-tracker {
  padding: 5rem 0;
  background: #040b27;
}

.swan-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.swan-description {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 2rem 0;
}

.swan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.swan-features li {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.swan-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.swan-specs .spec-item {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.swan-specs .spec-item h4 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--eztrack-green);
  margin-bottom: 0.5rem;
}

.swan-specs .spec-item p {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  font-weight: bold;
}

/* Features Intro */
.features-intro {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

/* Use Case Subtitle */
.use-case-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.use-case-subtitle-small {
  font-size: 1.25rem;
  color: var(--eztrack-text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.use-case-explore {
  text-align: center;
}

/* Lighthouse specific styles */
.lighthouse-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.lighthouse-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #031433;
}

.lighthouse-hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--eztrack-text-primary);
}

.bundle-description {
  padding: 5rem 0;
  background: #040b27;
}

.description-content-hub {
  display: flex;
  gap: 3rem;
}

.description-text {
  flex: 1;
}

.description-header {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
}

.description-text p {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.description-image {
  flex: 1;
  text-align: center;
}

.description-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.hub-unit {
  padding: 5rem 0;
  background: #031433;
}

.hub-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}


.hub-text {
  flex: 1;
}

.hub-text .description-header {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  display: block;
  margin-bottom: 1rem;
}

.hub-description {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hub-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hub-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.bundle-features {
  padding: 5rem 0;
  background: #040b27;
}

.features-intro {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.bundle-features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.bundle-features-list li {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 0;
}

.swan-tracker {
  padding: 5rem 0;
  background: #040b27;
}

.swan-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.swan-description {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 2rem 0;
}

.swan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.swan-features li {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.swan-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.swan-specs .spec-item {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.swan-specs .spec-item h4 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--eztrack-green);
  margin-bottom: 0.5rem;
}

.swan-specs .spec-item p {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  font-weight: bold;
}

.hub-gallery {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  background: #031433;
  justify-content: center;
  align-items: center;
}

.hub-image-2 {
  max-width: 300px;
  height: auto;
  border-radius: 0.5rem;
}

/* Motion Capture specific styles */
.mocap-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.mocap-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #031433;
}

.mocap-hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--eztrack-text-primary);
}

/* Hybrid Setups specific styles */
.hybrid-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hybrid-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #031433;
}

.hybrid-hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--eztrack-text-primary);
}

/* Setup Scenarios */
.setup-scenario {
  padding: 5rem 0;
  background: #040b27;
}

.scenario-content {
  flex: 1;
  text-align: left;
}

.scenario-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-green);
  margin-bottom: 1rem;
}

.scenario-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 2rem;
}

.scenario-description {
  text-align: left;
}

.scenario-description p {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.scenario-description ul {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.scenario-description li {
  margin-bottom: 0.5rem;
}

/* Scenario Layout */
.scenario-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.scenario-layout-reverse {
  flex-direction: row-reverse;
}

.scenario-image {
  flex: 1;
  text-align: center;
}

.scenario-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.scenario-description {
  flex: 1;
  text-align: left;
}

/* Streamlined Tools */
.streamlined-tools {
  padding: 5rem 0;
  background: #031433;
}

.tools-content {
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tool-card {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: left;
}

.tool-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-green);
  margin-bottom: 1rem;
}

.tool-description {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tool-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.tool-features li {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: #040b27;
  text-align: center;
}

.contact-content {
  max-width: 56rem;
  margin: 0 auto;
}

/* Explore Section */
.explore-section {
  padding: 5rem 0;
  background: #031433;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.explore-card {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.explore-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-green);
  margin-bottom: 1rem;
}

.explore-description {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Tutorial Section */
.tutorial-section {
  padding: 5rem 0;
  background: #040b27;
  text-align: center;
}

.tutorial-content {
  max-width: 56rem;
  margin: 0 auto;
}

.tutorial-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 2rem;
}

.tutorial-description {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tutorial-video {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
}

.video-placeholder {
  color: var(--eztrack-text-primary);
  font-size: 1.125rem;
  font-weight: bold;
}

.trackers-section {
  padding: 5rem 0;
  background: #040b27;
}

.trackers-content {
  text-align: center;
}

.trackers-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trackers-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.trackers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tracker-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.tracker-card:hover {
  transform: translateY(-5px);
}

.tracker-image {
  margin-bottom: 1.5rem;
}

.tracker-img {
  max-width: 200px;
  height: auto;
  border-radius: 0.5rem;
}

.tracker-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.tracker-description {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.tracker-specs {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.tracker-specs li {
  color: var(--eztrack-text-primary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.tracker-specs li::before {
  content: '•';
  color: var(--eztrack-green);
  font-size: 1rem;
  position: absolute;
  left: 0;
}

.hub-unit {
  padding: 5rem 0;
  background: #040b27;
}

.hub-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.hub-content-hub{
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

.hub-gallery{
  display: flex;
  flex-direction: row;
  gap: 35px;
}

.hub-image-2{
  width: 38rem; 
}


.hub-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hub-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.hub-image {
  text-align: center;
}

.hub-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.technical-specs {
  padding: 5rem 0;
  background: #040b27;
}

.specs-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.specs-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: transparent;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 1rem 0;
  vertical-align: top;
}

.specs-table td:first-child {
  font-size: 1rem;
  font-weight: bold;
  color: var(--eztrack-green);
  width: 40%;
  padding-right: 1rem;
}

.specs-table td:last-child {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  width: 60%;
  line-height: 1.5;
}

.use-cases {
  padding: 5rem 0;
  background: #040b27;
}

.use-cases-content {
  text-align: center;
}

.use-cases-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.use-case-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.use-case-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
}

.use-case-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.other-setups {
  padding: 5rem 0;
  background: #040b27;
}

.setups-content {
  text-align: center;
}

.setups-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.setups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.setup-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.setup-card:hover {
  transform: translateY(-5px);
}

.setup-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.setup-description {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Motion Capture Specific Styles */
.workflow-section {
  padding: 5rem 0;
  background: #040b27;
}

.workflow-content {
  max-width: 56rem;
  margin: 0 auto;
}

.workflow-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workflow-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.vfx-section {
  padding: 5rem 0;
  background: #040b27;
}

.vfx-content {
  text-align: center;
}

.vfx-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vfx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vfx-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.vfx-card:hover {
  transform: translateY(-5px);
}


.vfx-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.vfx-description {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-size: 1rem;
}

.configuration-section {
  padding: 5rem 0;
  background: #040b27;
}

.config-content {
  text-align: center;
}

.config-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.config-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.config-item {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.config-item:hover {
  transform: translateY(-5px);
}


.config-item h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
}

.config-guide {
  background: rgba(220, 45%, 15%, 0.3);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 3rem;
}

.guide-title {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.unreal-section {
  padding: 5rem 0;
  background: #040b27;
}

.unreal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.unreal-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unreal-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
}

.unreal-image {
  text-align: center;
}

.unreal-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Hybrid Setups Specific Styles */
.equipment-types {
  padding: 5rem 0;
  background: #040b27;
}

.equipment-content {
  text-align: center;
}

.equipment-content .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.equipment-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.equipment-card:hover {
  transform: translateY(-5px);
}


.equipment-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.equipment-description {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.equipment-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.equipment-features li {
  color: var(--eztrack-text-primary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.equipment-features li::before {
  content: '•';
  color: var(--eztrack-green);
  font-size: 1rem;
  position: absolute;
  left: 0;
}

.integration-section {
  padding: 5rem 0;
  background: #040b27;
}

.integration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.integration-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integration-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.integration-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.integration-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}


.integration-feature h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 0.5rem;
}

.integration-feature p {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  font-size: 1rem;
}

.integration-image {
  text-align: center;
}

.integration-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.use-case-card {
  background: var(--eztrack-blue-dark);
  border: 1px solid var(--eztrack-blue-medium);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1rem;
}

.use-case-description {
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.use-case-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.use-case-features li {
  color: var(--eztrack-text-primary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.use-case-features li::before {
  content: '•';
  color: var(--eztrack-green);
  font-size: 1rem;
  position: absolute;
  left: 0;
}

/* Antilatency Specific Styles */
.antilatency-tech {
  padding: 5rem 0;
  background: #040b27;
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-text .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--eztrack-text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #5ed2a8, #01cf91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-description {
  font-size: 1.125rem;
  color: var(--eztrack-text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tech-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-features li {
  color: var(--eztrack-text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

.tech-features li::before {
  content: '•';
  color: var(--eztrack-green);
  font-size: 1rem;
  position: absolute;
  left: 0;
}

.tech-image {
  text-align: center;
}

.tech-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .header-right {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: 1rem;
  }
  
  .tracking-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .specs-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .applications-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .what-is-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .what-is-text {
    padding-right: 0;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-content {
    grid-template-columns: 1fr;
  }
  
  .compatibility-grid {
    grid-template-columns: 1fr;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-card.featured {
    transform: none;
  }
  
  .plan-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .interface-images {
    grid-template-columns: 1fr;
  }
  
  .device-img {
    max-width: 150px;
  }

  /* Lighthouse specific mobile styles */
  .lighthouse-hero {
    min-height: 60vh;
    padding-top: 4rem;
  }

  .bundle-description {
    padding: 3rem 0;
  }

  .description-content {
    flex-direction: column;
    text-align: center;
  }

  .description-text {
    margin-bottom: 2rem;
  }

  .description-image {
    margin-top: 2rem;
  }

  .hub-content {
    flex-direction: column;
    text-align: center;
  }

  .hub-text {
    margin-bottom: 2rem;
  }

  .hub-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hub-img {
    max-width: 100%;
    height: auto;
  }

  .swan-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .swan-specs .spec-item {
    padding: 1rem;
  }

  .hub-gallery {
    flex-direction: column;
    gap: 1rem;
  }

  .hub-image-2 {
    max-width: 100%;
    height: auto;
  }

  /* Motion Capture mobile styles */
  .mocap-hero {
    min-height: 60vh;
    padding-top: 4rem;
  }

  /* Hybrid Setups mobile styles */
  .hybrid-hero {
    min-height: 60vh;
    padding-top: 4rem;
  }

  /* Setup scenarios mobile */
  .setup-scenario {
    padding: 3rem 0;
  }

  .scenario-title {
    font-size: 1.5rem;
  }

  .scenario-subtitle {
    font-size: 1.25rem;
  }

  .scenario-content {
    text-align: center;
  }

  .scenario-description {
    text-align: center;
  }

  /* Scenario layout mobile */
  .scenario-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .scenario-layout-reverse {
    flex-direction: column;
  }

  .scenario-image {
    order: -1;
  }

  /* Tools mobile */
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tool-card {
    padding: 1.5rem;
  }

  /* Explore mobile */
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .explore-card {
    padding: 1.5rem;
  }

  /* Tutorial mobile */
  .tutorial-section {
    padding: 3rem 0;
  }

  .tutorial-subtitle {
    font-size: 1.25rem;
  }

  .tutorial-video {
    padding: 1.5rem;
  }

  /* Technical specs mobile */
  .specs-content {
    padding: 0 0.5rem;
  }

  .specs-table {
    font-size: 0.9rem;
  }

  .specs-table td {
    padding: 0.75rem 0;
    display: block;
    width: 100%;
  }

  .specs-table td:first-child {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--eztrack-green);
    margin-bottom: 0.25rem;
    padding-bottom: 0;
  }

  .specs-table td:last-child {
    font-size: 0.9rem;
    color: var(--eztrack-text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .specs-table tr:last-child td:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  .ezlineup-logo .logo-img {
    max-width: 250px;
  }
  
  .video-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .perfection-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cube-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-content {
    grid-template-columns: 1fr;
  }
  
  .interface-images {
    grid-template-columns: 1fr;
  }
  
  .compatibility-grid {
    grid-template-columns: 1fr;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-card.featured {
    transform: none;
  }
  
  .plan-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .ezlineup-hero .hero-content {
    max-width: 100%;
  }
  
  .ezlineup-hero .hero-title {
    font-size: 1.5rem;
  }
  
  .ezlineup-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .lighthouse-hero .hero-content,
  .antilatency-hero .hero-content,
  .mocap-hero .hero-content,
  .hybrid-hero .hero-content {
    max-width: 100%;
  }
  
  .lighthouse-hero .hero-title,
  .antilatency-hero .hero-title,
  .mocap-hero .hero-title,
  .hybrid-hero .hero-title {
    font-size: 2rem;
  }
  
  .lighthouse-hero .hero-subtitle,
  .antilatency-hero .hero-subtitle,
  .mocap-hero .hero-subtitle,
  .hybrid-hero .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hub-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .integration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .unreal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .integration-features {
    grid-template-columns: 1fr;
  }
  
  .integration-feature {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .what-is-content {
    gap: 2rem;
  }
  
  .what-is-text {
    padding-right: 0;
  }
  
  .engines-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature Cards Styles for Motion Capture Page */
.features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--eztrack-accent));
  border-radius: 50%;
  position: relative;
}

.feature-img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feature-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive adjustments for feature cards */
@media (max-width: 768px) {
  .features-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .feature-img {
    width: 30px;
    height: 30px;
  }
  
  .feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}
