:root {
  --primary-color: #0066cc;
  --secondary-color: #00cc99;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --medium-gray: #dddddd;
  --dark-gray: #666666;
  --white: #ffffff;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 1000;
}

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

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

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

.cta-button {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

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

/* Hero Section */
.hero {
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-button, .secondary-button {
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.primary-button {
  background: var(--primary-color);
  color: var(--white);
}

.secondary-button {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  background: var(--white);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 1rem;
  position: relative;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-card {
  padding: 2.5rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-details li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--dark-gray);
}

.feature-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Pricing Section */
.pricing {
  padding: 4rem 2rem;
  background: var(--light-gray);
}

.pricing h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;  
  margin: 0 auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 400px;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
}

.best-value {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 1rem 0;
}

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

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.features-list li::before {
  content: "✓";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.pricing-cta {
  margin-top: auto;
}

/* PayPal Button Styles */
#paypal-button-container-P-26Y68871BP028374FM6FNEMY {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
  background: var(--white);
}

.testimonial-carousel {
  max-width: 1200px;
  margin: 0 auto;
}

/* Early Access Section */
.early-access {
  padding: 4rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.early-access-form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  gap: 1rem;
}

.early-access-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo svg {
  height: 40px;
}

/* Footer */
footer {
  background: var(--text-color);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

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

.footer-section a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-gray);
}

/* Notification Styles */
.notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
}

.notification.success {
  background: var(--secondary-color);
  color: var(--white);
}

.notification.error {
  background: #ff4444;
  color: var(--white);
}

/* Legal Pages Styles */
.legal-content {
  padding: 120px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.legal-content .effective-date {
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 2rem;
}

.terms-section {
  margin-top: 2rem;
}

.terms-section section {
  margin-bottom: 3rem;
}

.terms-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.terms-section h3 {
  color: var(--text-color);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.4rem;
}

.terms-section p {
  margin-bottom: 1rem;
}

.terms-section ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
}

.subsection {
  margin-left: 1rem;
}

/* FAQ Section Styles */
.faq {
  padding: 4rem 2rem;
  background: var(--light-gray);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

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

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-color);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  color: var(--dark-gray);
  line-height: 1.6;
}

.faq-answer ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }

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

  .early-access-form {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
  }
  
  .legal-content {
    padding: 100px 15px 40px;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .terms-section h3 {
    font-size: 1.2rem;
  }
  
  .faq-container {
    padding: 0 1rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
}

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