/* ============================
   TruckNavPro - Premium Styles
   ============================ */

/* CSS Variables */
:root {
  /* Primary Gradient Colors */
  --navy-deep: #0A1628;
  --navy-mid: #1a365d;
  --blue-electric: #1E90FF;
  --cyan-accent: #00D4FF;

  /* Accent Gradient Colors */
  --orange-sunset: #FF6B35;
  --amber-warm: #FFB347;
  --gold: #FFD700;

  /* Dark Theme */
  --charcoal: #1A1A2E;
  --purple-deep: #16213E;
  --midnight: #0F0F23;

  /* Neutrals */
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: rgba(0, 212, 255, 0.1);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;

  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--midnight);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Gradient Text Effects */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan-accent) 0%, var(--blue-electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--orange-sunset) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow:
    0 8px 32px var(--glass-shadow),
    inset 0 0 30px rgba(255, 255, 255, 0.03);
}

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(30, 144, 255, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Section Title */
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan-accent));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.apple-icon {
  width: 20px;
  height: 20px;
}

.play-icon {
  font-size: 12px;
}

/* ============================
   Navigation
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
}

/* Tron Theme Text */
.tron-text {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-shadow:
    0 0 5px rgba(0, 212, 255, 0.8),
    0 0 10px rgba(0, 212, 255, 0.5),
    0 0 20px rgba(0, 212, 255, 0.3);
  position: relative;
}

.tron-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan-accent);
  box-shadow: 0 0 10px var(--cyan-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.tron-text:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan-accent));
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(15, 15, 35, 0.98);
  padding: 20px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}

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

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  padding: 10px 0;
}

.mobile-cta {
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan-accent));
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

/* ============================
   Hero Section
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      var(--navy-deep) 0%,
      var(--navy-mid) 25%,
      var(--purple-deep) 50%,
      var(--navy-mid) 75%,
      var(--navy-deep) 100%);
  background-size: 400% 400%;
  animation: heroGradient 20s ease infinite;
}

@keyframes heroGradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan-accent), transparent);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-electric), transparent);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-sunset), transparent);
  top: 50%;
  left: 30%;
  opacity: 0.3;
  animation-delay: -10s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(50px, -50px) scale(1.1);
  }

  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }

  75% {
    transform: translate(30px, 50px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--cyan-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-600);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gray-600), transparent);
}

/* App Store Showcase */
.appstore-showcase {
  margin-top: 60px;
  text-align: center;
  animation: fadeInUp 1s ease 0.7s both;
}

.appstore-frame {
  max-width: 350px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: 45px;
  padding: 12px;
  box-shadow:
    0 40px 120px rgba(0, 212, 255, 0.4),
    0 0 0 4px rgba(0, 212, 255, 0.3),
    inset 0 0 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appstore-frame:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 50px 150px rgba(0, 212, 255, 0.5),
    0 0 0 4px rgba(0, 212, 255, 0.5),
    inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.appstore-image {
  width: 100%;
  height: auto;
  border-radius: 38px;
  display: block;
}

.appstore-caption {
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--white), var(--cyan-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Hero Device */
.hero-device {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease 0.5s both;
}

/* App Store Hero Frame */
.appstore-hero-frame {
  position: relative;
  max-width: 400px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: 50px;
  padding: 15px;
  box-shadow:
    0 50px 120px rgba(0, 212, 255, 0.4),
    0 0 0 5px rgba(0, 212, 255, 0.3),
    inset 0 0 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

.appstore-hero-frame:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow:
    0 60px 150px rgba(0, 212, 255, 0.5),
    0 0 0 5px rgba(0, 212, 255, 0.5),
    inset 0 0 50px rgba(0, 0, 0, 0.4);
}

.appstore-hero-image {
  width: 100%;
  height: auto;
  border-radius: 42px;
  display: block;
}

@keyframes float {

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

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

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  animation: floatBadge 6s ease-in-out infinite;
}

.badge-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 30%;
  left: -40px;
  animation-delay: -2s;
}

.badge-3 {
  bottom: 10%;
  right: 0;
  animation-delay: -4s;
}

@keyframes floatBadge {

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

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

.badge-icon {
  font-size: 18px;
}

/* ============================
   Problem Section
   ============================ */
.problem-section {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--charcoal) 100%);
}

.problem-content {
  max-width: 900px;
  margin: 0 auto;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 50px 0;
}

.problem-stat {
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-base);
}

.problem-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
}

.problem-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-sunset), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.problem-label {
  color: var(--gray-300);
  font-size: 16px;
}

.problem-text {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto;
}

.solution-transition {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.transition-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-accent), transparent);
}

.transition-text {
  color: var(--cyan-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

/* ============================
   Features Section
   ============================ */
.features-section {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  background: var(--charcoal);
}

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

.feature-card {
  padding: 40px 30px;
  text-align: left;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.05));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
}

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

.feature-card.featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), var(--glass-bg));
}

.feature-badge {
  position: absolute;
  top: -1px;
  right: 30px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--cyan-accent), var(--blue-electric));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(30, 144, 255, 0.1));
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 28px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-description {
  color: var(--gray-300);
  line-height: 1.7;
}

/* ============================
   Screenshots Section
   ============================ */
.screenshots-section {
  padding: var(--section-padding) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--midnight) 100%);
  overflow: hidden;
}

.screenshots-carousel {
  position: relative;
  margin-top: 40px;
}

.screenshots-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 20px 0;
  -ms-overflow-style: none;
}

.screenshots-track::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.screenshot-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2a2a4a, #1a1a3a);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
}

.screenshot-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(0, 212, 255, 0.2);
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.screenshot-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.video-frame {
  overflow: hidden;
}

.screenshot-label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--gray-300);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--cyan-accent);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: var(--glass-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dots .dot.active {
  background: var(--cyan-accent);
  transform: scale(1.2);
}

/* ============================
   Video Demo Section
   ============================ */
.video-section {
  padding: var(--section-padding) 0;
  text-align: center;
  background: var(--midnight);
}

.video-demo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.phone-video-frame {
  position: relative;
  width: 320px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: 45px;
  padding: 12px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.phone-video-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.demo-video {
  width: 100%;
  height: auto;
  border-radius: 35px;
  display: block;
  background: #000;
  aspect-ratio: 9/19.5;
  object-fit: cover;
}

.demo-video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.tiktok-link-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.tiktok-text {
  color: var(--gray-300);
  font-size: 1rem;
}

.tiktok-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tiktok-follow-btn svg {
  fill: currentColor;
}

@media (max-width: 480px) {
  .phone-video-frame {
    width: 280px;
    border-radius: 35px;
    padding: 10px;
  }

  .demo-video {
    border-radius: 28px;
  }

  .phone-video-notch {
    width: 80px;
    height: 24px;
    top: 16px;
  }
}

/* ============================
   Testimonials Section
   ============================ */
.testimonials-section {
  padding: var(--section-padding) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--charcoal) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 40px 30px;
  text-align: left;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
}

.testimonial-stars {
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--gray-200);
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue-electric), var(--cyan-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

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

.author-name {
  font-weight: 700;
}

.author-role {
  font-size: 14px;
  color: var(--gray-600);
}

/* ============================
   Pricing Section
   ============================ */
.pricing-section {
  padding: var(--section-padding) 0;
  text-align: center;
  background: var(--charcoal);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid.pricing-two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 750px;
}

@media (max-width: 768px) {
  .pricing-grid.pricing-two-col {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  padding: 40px 30px;
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  border: 2px solid var(--cyan-accent);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), var(--glass-bg));
  transform: scale(1.05);
}

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

.pricing-badge,
.pricing-save {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--cyan-accent), var(--blue-electric));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-save {
  background: linear-gradient(135deg, var(--orange-sunset), var(--gold));
}

.pricing-tier {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 30px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--cyan-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-period {
  font-size: 1rem;
  color: var(--gray-600);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* Paywall Preview */
.paywall-preview {
  margin-top: 80px;
  text-align: center;
}

.paywall-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--white), var(--cyan-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.paywall-subtitle {
  color: var(--gray-300);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.paywall-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 400px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: 45px;
  padding: 15px;
  box-shadow:
    0 30px 100px rgba(0, 212, 255, 0.3),
    0 0 0 3px rgba(0, 212, 255, 0.2),
    inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.paywall-image {
  width: 100%;
  height: auto;
  border-radius: 35px;
  display: block;
}

@media (max-width: 768px) {
  .paywall-frame {
    max-width: 320px;
    padding: 12px;
  }

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

/* ============================
   FAQ Section
   ============================ */
.faq-section {
  padding: var(--section-padding) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--midnight) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  color: var(--cyan-accent);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 30px 24px;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ============================
   Download Section
   ============================ */
.download-section {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--purple-deep));
}

.orb-4 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cyan-accent), transparent);
  top: -200px;
  left: -100px;
}

.orb-5 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orange-sunset), transparent);
  bottom: -150px;
  right: -100px;
}

.download-section .container {
  position: relative;
  z-index: 2;
}

.download-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.download-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 50px;
}

.download-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 48px;
  background: var(--white);
  color: var(--midnight);
  text-decoration: none;
  border-radius: 16px;
  transition: all var(--transition-base);
  font-size: 1.1rem;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
}

.app-store-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.apple-icon-large {
  width: 48px;
  height: 48px;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-label {
  font-size: 14px;
  opacity: 0.7;
}

.store-name {
  font-size: 28px;
  font-weight: 700;
}

.qr-code {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  transition: all var(--transition-base);
}

.qr-code:hover {
  transform: scale(1.05);
  border-color: var(--cyan-accent);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.qr-code img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.email-capture {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.email-capture h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.email-capture p {
  color: var(--gray-300);
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  gap: 12px;
}

.email-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--white);
  font-size: 16px;
}

.email-form input::placeholder {
  color: var(--gray-600);
}

.email-form input:focus {
  outline: none;
  border-color: var(--cyan-accent);
}

/* ============================
   Footer
   ============================ */
.footer {
  padding: 60px 0 30px;
  background: var(--midnight);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-tagline {
  width: 100%;
  color: var(--gray-600);
  font-size: 14px;
  margin-top: 10px;
}

/* Video Play Overlay Styles */
.video-frame,
.hero-video-container {
  position: relative;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.video-frame:hover .play-overlay,
.hero-video-container:hover .play-overlay {
  background: rgba(0, 212, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* CRITICAL MOBILE FIXES */
.phone-video-frame {
  max-width: 90vw !important;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-video-container {
  width: 100%;
  max-width: 100%;
}

.demo-video {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: cover;
}

/* Legal and Support Pages Styles */
.legal-section,
.support-section {
  padding: 120px 20px 60px;
  background: var(--midnight);
  color: var(--white);
  min-height: 80vh;
}

.legal-section h1,
.support-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--cyan-accent);
}

.last-updated {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--cyan-accent);
}

.legal-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Support Page Specifics */
.support-channels {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.support-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: all var(--transition-base);
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-accent);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.support-card i {
  font-size: 2.5rem;
  color: var(--cyan-accent);
  margin-bottom: 15px;
}

.support-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.support-card p {
  color: var(--gray-300);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.support-link {
  color: var(--cyan-accent);
  text-decoration: none;
  font-weight: 600;
}

.faq-preview {
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-preview h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.faq-item h3 {
  color: var(--cyan-accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--gray-300);
  font-size: 0.95rem;
}

/* Footer Links Update */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links h4,
.footer-social h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cyan-accent);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--gray-300);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background: var(--cyan-accent);
  color: var(--midnight);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
  border-color: var(--cyan-accent);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--gray-600);
  font-size: 14px;
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .hero-content {
    max-width: none;
  }

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

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

  .hero-device {
    order: -1;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .phone-frame {
    width: 220px;
    height: 450px;
  }

  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 16px 60px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

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

  .problem-number {
    font-size: 2rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}