/* buy.css - Core Styles & Layout */

/* Base Styles & Reset */
:root {
  /* Color Variables */
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --primary-light: #818CF8;
  --secondary: #9333EA;
  --secondary-dark: #7E22CE;
  --accent: #10B981;
  --dark: #111827;
  --darker: #030712;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #DC2626;
  
  /* Font Variables */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Animation Variables */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-100);
  background-color: var(--darker);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

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

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

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

button {
  cursor: pointer;
  font-family: var(--font-sans);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-400);
}

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

/* Background & Overlay */
.gradient-bg {
  position: relative;
  background: linear-gradient(to bottom, var(--darker), #070022);
  overflow: hidden;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline;
}

/* Header & Navigation */
header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}

.logo svg {
  margin-right: 0.5rem;
}

.logo span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.5);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: none;
}

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

.btn-text {
  color: var(--primary-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  transition: all var(--transition-fast);
}

.btn-text:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--primary-light);
}

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

.badge i {
  font-size: 0.875rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.badge-item i {
  color: var(--primary);
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  z-index: 2;
}

.dashboard-preview {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.dashboard-preview img {
  width: 100%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.2), transparent 70%);
  pointer-events: none;
}

/* Floating Cards Animation */
.floating-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 1rem;
  z-index: 5;
  opacity: 0;
  animation: float-in 0.5s ease forwards;
}

.card-1 {
  top: -30px;
  left: -50px;
  animation-delay: 0.5s;
}

.card-2 {
  bottom: -20px;
  right: -40px;
  animation-delay: 0.8s;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.card-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.card-content p {
  font-size: 0.875rem;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.prediction-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.prediction-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hotspot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  position: relative;
}

.hotspot::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
}

@keyframes float-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features {
  padding: 8rem 0;
  position: relative;
}

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

.feature-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(147, 51, 234, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  border-color: rgba(79, 70, 229, 0.3);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.feature-card:hover .feature-icon {
  color: var(--white);
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
}

.feature-card h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card p {
  color: var(--gray-400);
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
  padding: 8rem 0;
  position: relative;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  flex-wrap: wrap;
}

.step-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  width: 300px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.step-card h3 {
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--gray-400);
  margin-bottom: 0;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: rgba(79, 70, 229, 0.3);
  position: relative;
  align-self: center;
}

.step-connector::before, .step-connector::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: rgba(79, 70, 229, 0.3);
}

.step-connector::before {
  right: 0;
  top: -4px;
  transform: rotate(45deg);
}

.step-connector::after {
  right: 0;
  top: 4px;
  transform: rotate(-45deg);
}

.demo-video {
  max-width: 800px;
  margin: 0 auto;
}

.video-thumbnail {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(79, 70, 229, 0.8);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.play-btn:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Analytics Section */
.analytics {
  padding: 8rem 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.3));
}

.analytics-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray-400);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.tab-btn.active, .tab-btn:hover {
  background: rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.3);
  color: var(--primary-light);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fade-in 0.5s ease forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.content-text, .content-image {
  flex: 1;
  min-width: 300px;
}

.content-text h3 {
  margin-bottom: 1.5rem;
}

.content-text p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-300);
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}

.content-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background: rgba(15, 23, 42, 0.4);
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  margin-bottom: 4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 350px;
  scroll-snap-align: start;
}

.testimonial-content {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all var(--transition-fast);
  height: 100%;
}

.testimonial-card:hover .testimonial-content {
  border-color: rgba(79, 70, 229, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray-300);
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-content p::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  left: -0.5rem;
  top: -1rem;
  opacity: 0.5;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
}

.testimonial-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-meta p {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0;
  font-style: normal;
  padding-left: 0;
}

.testimonial-meta p::before {
  content: '';
}

.testimonial-metrics {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
}

.metric h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.metric p {
  color: var(--gray-300);
  font-weight: 500;
  margin-bottom: 0;
}

/* Pricing Section */
.pricing {
  padding: 8rem 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.3));
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.save-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  width: 350px;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.standard {
  border-color: rgba(79, 70, 229, 0.3);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

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

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price .currency {
  font-size: 1.5rem;
  margin-right: 0.25rem;
  opacity: 0.7;
}

.price .period {
  font-size: 1rem;
  opacity: 0.7;
}

.hidden {
  display: none;
}

.card-header p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.feature-list li i {
  color: var(--accent);
  width: 16px;
  text-align: center;
}

.feature-list li.disabled {
  color: var(--gray-500);
}

.feature-list li.disabled i {
  color: var(--gray-600);
}

.guarantee {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-top: 1rem;
}

/* FAQ Section */
.faq {
  padding: 8rem 0;
  background: rgba(15, 23, 42, 0.2);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: rgba(79, 70, 229, 0.1);
}

.faq-question h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Final CTA Section */
.final-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(147, 51, 234, 0.1));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--gray-300);
}

.guarantee-text {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-top: 1rem;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  color: var(--primary);
  opacity: 0.7;
  animation: float 6s infinite ease-in-out;
}

.floating-element.e1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  font-size: 1.5rem;
  animation-delay: 0s;
}

.floating-element.e2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 15%;
  font-size: 1.25rem;
  animation-delay: 1s;
}

.floating-element.e3 {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 15%;
  font-size: 1.5rem;
  animation-delay: 2s;
}

.floating-element.e4 {
  width: 50px;
  height: 50px;
  top: 70%;
  right: 10%;
  font-size: 1rem;
  animation-delay: 3s;
}

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

/* Footer */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 4rem;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo svg {
  margin-right: 0.5rem;
  width: 30px;
  height: 30px;
}

.footer-col p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

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

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  color: var(--gray-500);
  font-size: 1.5rem;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.close-video {
  position: absolute;
  right: -40px;
  top: -40px;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

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

/* Mobile Navigation */
.nav-links.mobile-nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 50;
  animation: slide-down 0.3s ease forwards;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

/* Header Shadow */
header.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 1100px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  .hero .container {
    flex-direction: column;
  }
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
  .floating-card.card-1 {
    top: auto;
    bottom: -30px;
    left: -20px;
  }
  .floating-card.card-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  header {
    padding: 1rem 0;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero {
    padding: 4rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .features, .analytics, .testimonials, .how-it-works, .pricing, .faq {
    padding: 4rem 0;
  }
  .analytics-tabs {
    flex-direction: column;
    align-items: center;
  }
  .tab-btn {
    width: 100%;
    text-align: center;
  }
  .pricing-card.standard {
    transform: none;
  }
  .pricing-card.standard:hover {
    transform: translateY(-10px);
  }
  .final-cta {
    padding: 4rem 0;
  }
  .footer-main {
    gap: 2rem;
  }
  .footer-col {
    flex: 1 0 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .container {
    padding: 0 1.5rem;
  }
  .badge {
    font-size: 0.75rem;
  }
  .hero {
    padding: 3rem 0;
  }
  .floating-card {
    padding: 0.75rem;
    gap: 0.5rem;
    left: 0;
  }
  .card-icon {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
  .pricing-toggle {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .close-video {
    right: 0;
    top: -40px;
  }
}