@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Custom Classes */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

/* Menu Item Cards */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.menu-item:hover {
  border-color: #cbd5e1;
}

/* Dashboard Preview */
.dashboard-preview {
  position: relative;
}

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

/* Pattern Background */
.pattern-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* CTA Buttons */
.cta-primary:hover,
.cta-primary-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3),
    0 10px 10px -5px rgba(59, 130, 246, 0.2);
}

.cta-secondary:hover,
.cta-secondary-light:hover {
  transform: translateY(-2px);
}

/* Social Icons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1e293b;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background-color: #334155;
  transform: translateY(-2px);
}

.social-icon:hover i {
  color: #94a3b8;
}

/* Footer Links */
.footer-link {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

/* Mobile Menu */
.mobile-menu {
  transition: transform 0.3s ease;
}

.mobile-menu.hidden {
  transform: translateX(100%);
}

.mobile-menu:not(.hidden) {
  transform: translateX(0);
}

/* Preview Tabs */
.preview-tab.active {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.preview-tab.active:hover {
  background-color: #fff;
  color: #3b82f6;
  border-color: #3b82f6;
}

/* Preview Panels */
.preview-panel {
  display: none;
}

.preview-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .dashboard-preview > div:not(:first-child) {
    display: none;
  }

  .preview-tab {
    width: 100%;
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  .cta-primary,
  .cta-secondary,
  .preview-tab,
  .mobile-menu-btn,
  .social-icon {
    display: none !important;
  }
}

/* Pricing Page Styles */
.pricing-card {
  transition: all 0.3s ease;
}

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

.featured-plan {
  position: relative;
  z-index: 10;
}

.pricing-toggle {
  transition: background-color 0.3s ease;
}

.pricing-toggle.annual-active {
  background-color: #10b981;
}

.pricing-toggle span {
  transition: transform 0.3s ease;
}

/* FAQ animations */
.faq-content {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .featured-plan {
    transform: scale(1) !important;
  }
}
