:root {
  --background: #f0f8ff;
  --foreground: #374151;
  --card: #ffffff;
  --card-foreground: #374151;
  --popover: #ffffff;
  --popover-foreground: #374151;
  --primary: #44b27b;
  --primary-foreground: #ffffff;
  --secondary: #e0f2fe;
  --secondary-foreground: #224154;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --accent: #d1fae5;
  --accent-foreground: #374151;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #224154;
  --chart-1: #44b27b;
  --chart-2: #10b981;
  --chart-3: #059669;
  --chart-4: #047857;
  --chart-5: #065f46;
  --sidebar: #e0f2fe;
  --sidebar-foreground: #374151;
  --sidebar-primary: #44b27b;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #d1fae5;
  --sidebar-accent-foreground: #374151;
  --sidebar-border: #e5e7eb;
  --sidebar-ring: #44b27b;
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Lora', serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius: 0.5rem;
  --shadow-2xs: 0px 4px 8px -1px hsl(0 0% 0% / 0.05);
  --shadow-xs: 0px 4px 8px -1px hsl(0 0% 0% / 0.05);
  --shadow-sm: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 1px 2px -2px hsl(0 0% 0% / 0.10);
  --shadow: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 1px 2px -2px hsl(0 0% 0% / 0.10);
  --shadow-md: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 2px 4px -2px hsl(0 0% 0% / 0.10);
  --shadow-lg: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 4px 6px -2px hsl(0 0% 0% / 0.10);
  --shadow-xl: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 8px 10px -2px hsl(0 0% 0% / 0.10);
  --shadow-2xl: 0px 4px 8px -1px hsl(0 0% 0% / 0.25);
  --tracking-normal: 0em;
  --spacing: 0.25rem;
}

.dark {
  --background: #0f172a;
  --foreground: #d1d5db;
  --card: #1e293b;
  --card-foreground: #d1d5db;
  --popover: #1e293b;
  --popover-foreground: #d1d5db;
  --primary: #44b27b;
  --primary-foreground: #0f172a;
  --secondary: #2d3748;
  --secondary-foreground: #a1a1aa;
  --muted: #1e293b;
  --muted-foreground: #6b7280;
  --accent: #374151;
  --accent-foreground: #a1a1aa;
  --destructive: #ef4444;
  --destructive-foreground: #0f172a;
  --border: #4b5563;
  --input: #4b5563;
  --ring: #224154;
  --chart-1: #44b27b;
  --chart-2: #2dd4bf;
  --chart-3: #22c55e;
  --chart-4: #10b981;
  --chart-5: #059669;
  --sidebar: #1e293b;
  --sidebar-foreground: #d1d5db;
  --sidebar-primary: #44b27b;
  --sidebar-primary-foreground: #0f172a;
  --sidebar-accent: #374151;
  --sidebar-accent-foreground: #a1a1aa;
  --sidebar-border: #4b5563;
  --sidebar-ring: #44b27b;
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Lora', serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius: 0.5rem;
  --shadow-2xs: 0px 4px 8px -1px hsl(0 0% 0% / 0.05);
  --shadow-xs: 0px 4px 8px -1px hsl(0 0% 0% / 0.05);
  --shadow-sm: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 1px 2px -2px hsl(0 0% 0% / 0.10);
  --shadow: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 1px 2px -2px hsl(0 0% 0% / 0.10);
  --shadow-md: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 2px 4px -2px hsl(0 0% 0% / 0.10);
  --shadow-lg: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 4px 6px -2px hsl(0 0% 0% / 0.10);
  --shadow-xl: 0px 4px 8px -1px hsl(0 0% 0% / 0.10), 0px 8px 10px -2px hsl(0 0% 0% / 0.10);
  --shadow-2xl: 0px 4px 8px -1px hsl(0 0% 0% / 0.25);
}

/* General Body Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  line-height: 1.6;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--card);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}


.logo img {
  height: 3.6rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-foreground);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 0.25rem;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease-in-out;
}

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

/* Main Content Area */
.pricing-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Pricing Hero Section */
.pricing-hero {
  text-align: center;
  margin-top: 2rem;
}

.pricing-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.pricing-hero .pricing-sub {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Tiers Section */
.pricing-tiers {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.pricing-card {
  background-color: var(--card);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.15);
}

.pricing-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-left: 0.25rem;
}

.pricing-card .trial-info {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  min-height: 40px;
}

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

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--secondary-foreground);
}

.check-icon {
  color: var(--primary);
  font-weight: bold;
}

.x-icon {
  color: #ef4444;
  font-weight: bold;
}

.ads-icon {
  color: #ff6b35;
  font-weight: bold;
}

/* Free Plan Styling - 40% smaller */
.pricing-card.free-plan {
  transform: scale(0.6);
  margin-left: 1rem;
  opacity: 0.9;
}

.pricing-card.free-plan:hover {
  transform: scale(0.6) translateY(-10px);
}

.pricing-card.free-plan h2 {
  color: var(--muted-foreground);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: var(--ring);
  transform: translateY(-2px);
}

.pricing-card.featured .cta-button {
  background-color: var(--primary);
}

.pricing-card.featured .cta-button:hover {
  background-color: var(--ring);
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 4rem auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.faq-item {
  background-color: var(--card);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
}

.faq-answer {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Footer Styles */
footer {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .pricing-tiers {
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2.5rem;
  }

  .pricing-tiers {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .pricing-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
  }

  .pricing-card.free-plan {
    transform: scale(0.8);
    margin-left: 0;
    margin-top: -1rem;
  }

  .pricing-card.free-plan:hover {
    transform: scale(0.8) translateY(-10px);
  }

  .pricing-card .price {
    font-size: 2.5rem;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    margin-top: 1rem;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .pricing-main {
    padding: 1rem 0.5rem;
  }

  .pricing-hero h1 {
    font-size: 2rem;
  }

  .pricing-tiers {
    gap: 0.75rem;
  }

  .pricing-card {
    padding: 1.25rem 1rem;
    width: 100%;
    max-width: 350px;
  }

  .pricing-card.free-plan {
    transform: scale(0.85);
    margin-left: 0;
  }

  .pricing-card.free-plan:hover {
    transform: scale(0.85) translateY(-10px);
  }

  .pricing-card .price {
    font-size: 2rem;
  }

  .pricing-card h2 {
    font-size: 1.5rem;
  }

  .features-list li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Launch Banner Styles */
.launch-banner {
    background: linear-gradient(135deg, var(--primary), #224154);
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
}

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

.beta-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
}

.banner-content p {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

/* Launch Timeline Styles */
.launch-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--accent);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary);
}

.launch-timeline {
    margin: 0;
    color: var(--primary);
    font-size: 1.1rem;
}

/* App Store Badges Styles */
.app-stores {
    margin: 2rem 0;
    text-align: center;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 1rem;
}

.app-stores h3 {
    color: var(--foreground);
    font-size: 1.2rem;
}

.store-badges {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.5rem;
}

.store-link {
    display: inline-block !important;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.store-link:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 50px;
    width: auto;
    transition: filter 0.2s ease;
    filter: brightness(0.9);
    display: block !important;
    max-width: 150px;
}

.store-link:hover .store-badge {
    filter: brightness(1);
}

/* Additional responsive styles for pricing page */
@media (max-width: 768px) {
    .launch-banner {
        padding: 0.75rem 1rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .launch-timeline {
        font-size: 1rem;
    }
    
    .store-badges {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .store-badge {
        height: 40px;
    }
}
