/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
  /* Primary Colors */
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;

  /* Secondary Colors */
  --secondary-color: #10b981;
  --secondary-dark: #059669;

  /* Neutral Colors */
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --white: #ffffff;

  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-5xl);
}
h2 {
  font-size: var(--font-size-4xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-demo {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-sm);
}

.btn-demo:hover {
  background: var(--primary-dark);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--gray-900);
}

.logo-icon {
  font-size: var(--font-size-2xl);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(99, 102, 241, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.3) 0%,
      transparent 50%
    );
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.6s ease;
}

.hero-title {
  font-size: var(--font-size-5xl);
  color: var(--white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  justify-content: center;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.stat .stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ============================================
   Problem/Solution Section - NEW DESIGN
   ============================================ */
.problem-solution-new {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.comparison-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-card-new {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
  border: 2px solid var(--gray-200);
}

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

.comparison-card-new.traditional {
  border-color: var(--error);
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.05),
    rgba(239, 68, 68, 0.02)
  );
}

.comparison-card-new.solution {
  border-color: var(--success);
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(16, 185, 129, 0.05)
  );
  position: relative;
}

.comparison-card-new.featured-solution {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(99, 102, 241, 0.05)
  );
}

.solution-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.comparison-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.comparison-header .comparison-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.comparison-header h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-sm);
}

.comparison-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--error);
}

.stat-icon {
  font-size: var(--font-size-3xl);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.stat-value {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--gray-900);
}

.stat-value.danger {
  color: var(--error);
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-lg);
  color: var(--gray-700);
  font-weight: 500;
  transition: all var(--transition-base);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

.benefit-icon {
  font-size: var(--font-size-2xl);
  flex-shrink: 0;
}

.benefit-item.highlight {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.benefit-item.highlight:hover {
  transform: translateX(5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* FCFA Currency Styling */
.currency {
  font-size: 0.7em;
  font-weight: 600;
  opacity: 0.9;
  margin-left: 0.2em;
}

.price-amount {
  position: relative;
}

/* Language Toggle Button */
.btn-lang {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: var(--font-size-sm);
  margin-right: var(--space-sm);
}

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

/* ============================================
   Problem/Solution Section
   ============================================ */
.problem-solution {
  padding: var(--space-3xl) 0;
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

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

.comparison-card.solution {
  border: 2px solid var(--primary-color);
  position: relative;
}

.comparison-icon {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-lg);
}

.comparison-card h3 {
  margin-bottom: var(--space-lg);
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  padding: var(--space-sm) 0;
  font-size: var(--font-size-lg);
}

.comparison-card.problem li {
  color: var(--gray-600);
}

.comparison-card.solution li {
  color: var(--success);
  font-weight: 500;
}

/* ============================================
   Video Demo Showcase Section
   ============================================ */
.demo-video-showcase {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.video-container {
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  background: var(--gray-900);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-xl);
}

.demo-video-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.demo-video-cta p {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

/* ============================================
   Demo CTA Section
   ============================================ */
.demo-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  text-align: center;
}

.demo-cta-content h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.demo-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xl);
}

.demo-cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  padding: var(--space-3xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--gray-600);
}

/* ============================================
   Promo Banner with Countdown
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promo-icon {
  font-size: 4rem;
  animation: bounce 2s ease infinite;
}

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

.promo-text h3 {
  color: var(--white);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-lg);
  margin: 0;
}

.countdown-timer {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.time-value {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.time-label {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: var(--space-xs);
}

.time-separator {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--white);
  margin: 0 var(--space-sm);
}

/* Package Price Promotion Styling */
.promo-price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.old-price {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: var(--font-size-xl);
  opacity: 0.6;
}

.package-card.featured .old-price {
  color: rgba(255, 255, 255, 0.5);
}

.savings-badge {
  display: inline-block;
  background: var(--success);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

/* ============================================
   Package Comparison Table
   ============================================ */
.package-comparison {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.comparison-table th {
  padding: var(--space-xl);
  text-align: center;
  font-weight: 700;
}

.feature-column {
  text-align: left !important;
  min-width: 250px;
}

.package-column {
  min-width: 200px;
}

.featured-column {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.9),
    rgba(79, 70, 229, 0.9)
  );
  position: relative;
}

.package-header-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.popular-badge {
  background: var(--warning);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.package-price-cell {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.package-price-cell .price {
  font-size: var(--font-size-3xl);
  font-weight: 800;
}

.package-price-cell .currency {
  font-size: var(--font-size-lg);
  opacity: 0.9;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table tbody tr:hover {
  background: var(--gray-100);
}

.comparison-table td {
  padding: var(--space-lg);
  text-align: center;
}

.feature-name {
  text-align: left !important;
  font-weight: 600;
  color: var(--gray-900);
}

.check {
  color: var(--success);
  font-size: var(--font-size-2xl);
}

.cross {
  color: var(--error);
  font-size: var(--font-size-2xl);
  opacity: 0.5;
}

.featured-cell {
  background: rgba(99, 102, 241, 0.05);
  font-weight: 600;
}

.cta-row td {
  padding: var(--space-xl) var(--space-lg);
  background: var(--gray-50);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-sm);
}

/* ============================================
   Packages Section
   ============================================ */
.packages {
  padding: var(--space-3xl) 0;
  background: var(--gray-100);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.package-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.package-card.featured h3,
.package-card.featured .package-price,
.package-card.featured .package-description,
.package-card.featured ul li {
  color: var(--white);
}

.package-badge {
  position: absolute;
  top: -15px;
  right: var(--space-lg);
  background: var(--warning);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.package-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.package-header h3 {
  margin-bottom: var(--space-md);
}

.package-price {
  margin-bottom: var(--space-md);
}

.price-amount {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-color);
}

.package-card.featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  margin-left: var(--space-sm);
}

.package-card.featured .price-period {
  color: rgba(255, 255, 255, 0.8);
}

.package-description {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
}

.package-features {
  flex: 1;
  margin-bottom: var(--space-xl);
}

.package-features ul {
  list-style: none;
}

.package-features li {
  padding: var(--space-sm) 0;
  color: var(--gray-700);
}

.package-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.delivery-time {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  font-weight: 500;
}

.package-card.featured .delivery-time {
  color: rgba(255, 255, 255, 0.8);
}

/* Add-ons Section */
.addons-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 2px solid var(--gray-200);
}

.addons-section h3 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.addon-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition-base);
}

.addon-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.addon-card h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.addon-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.addon-card p:last-child {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  padding: var(--space-3xl) 0;
}

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

.timeline-item {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 70px;
  width: 2px;
  height: calc(100% + var(--space-xl));
  background: var(--gray-300);
}

.timeline-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.timeline-content h3 {
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  color: var(--gray-600);
}

/* ============================================
   Demo Showcase Section
   ============================================ */
.demo-showcase {
  padding: var(--space-3xl) 0;
  background: var(--gray-100);
}

.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-image {
  position: relative;
}

.placeholder-image {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  box-shadow: var(--shadow-xl);
}

.placeholder-image span {
  font-size: 5rem;
  margin-bottom: var(--space-md);
}

.placeholder-image p {
  color: var(--white);
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.showcase-content h3 {
  margin-bottom: var(--space-md);
}

.showcase-content p {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

.showcase-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
}

.showcase-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================
   Use Cases Section
   ============================================ */
.use-cases {
  padding: var(--space-3xl) 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.use-case-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition-base);
}

.use-case-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.use-case-icon {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
}

.use-case-card h3 {
  margin-bottom: var(--space-sm);
}

.use-case-card p {
  color: var(--gray-600);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: var(--space-3xl) 0;
  background: var(--gray-100);
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-base);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: var(--font-size-2xl);
  font-weight: 300;
  transition: transform var(--transition-base);
}

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

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

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

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--gray-600);
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 50%
  );
  animation: gradientShift 10s ease infinite;
}

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

.urgency-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--warning);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  animation: pulse 2s ease infinite;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
  }
}

.final-cta-content h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.final-cta-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2xl);
}

/* Guarantee Box */
.guarantee-box {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  text-align: left;
}

.guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-content h3 {
  color: var(--white);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.guarantee-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin: 0;
}

/* Pulse Button Animation */
.pulse-button {
  animation: buttonPulse 2s ease infinite;
  position: relative;
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
  }
  50% {
    box-shadow: 0 6px 24px 0 rgba(99, 102, 241, 0.7);
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

/* Final Stats */
.final-stats {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg) 0;
}

.final-stat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.stat-icon {
  font-size: var(--font-size-2xl);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.badge {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--space-sm);
}

.footer-section a {
  color: var(--gray-400);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

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

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  font-weight: 600;
  font-size: var(--font-size-base);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  background: #20ba5a;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-text {
  white-space: nowrap;
}

/* Animation for WhatsApp button */
@keyframes whatsappBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-float {
  animation: whatsappBounce 3s ease infinite;
}

.whatsapp-float:hover {
  animation: none;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--gray-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.testimonial-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.testimonial-card.featured-testimonial {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(99, 102, 241, 0.1)
  );
}

.testimonial-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.testimonial-rating {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--font-size-lg);
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-200);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

.testimonial-stats {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.stat-badge {
  padding: 0.375rem 0.75rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Trust Statistics */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-2xl);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.trust-stat {
  padding: var(--space-lg);
}

.trust-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.trust-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .showcase-item {
    grid-template-columns: 1fr;
  }

  .showcase-item.reverse {
    direction: ltr;
  }
}

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

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

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

  .countdown-timer {
    width: 100%;
    justify-content: center;
  }

  .time-unit {
    min-width: 50px;
  }

  .time-value {
    font-size: var(--font-size-3xl);
  }

  .time-separator {
    font-size: var(--font-size-2xl);
  }

  .comparison-table-wrapper {
    border-radius: 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--space-sm);
    font-size: var(--font-size-sm);
  }

  .feature-column {
    min-width: 150px;
  }

  .package-column {
    min-width: 120px;
  }

  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-lg);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-item::after {
    display: none;
  }

  .demo-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  h2 {
    font-size: var(--font-size-3xl);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .package-card.featured:hover {
    transform: translateY(-10px);
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .final-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
  }

  .whatsapp-icon {
    width: 32px;
    height: 32px;
  }

  .urgency-badge {
    font-size: var(--font-size-base);
    padding: 0.5rem 1rem;
  }
}
