/* Main styles */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-900));
  color: white;
  padding: 2rem 0 5rem;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: var(--font-size-xl);
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  background-color: var(--color-neutral-50);
  text-align: center;
}

.features h2 {
  margin-bottom: 2rem;
}

/* Benefits Section */
.benefits h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Dashboard Section */
.dashboard {
  background-color: var(--color-neutral-50);
  text-align: center;
}

/* Pricing Section */
.pricing {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--color-neutral-50);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 2rem;
}

/* Products Section */
.products {
  text-align: center;
}

.products h2 {
  margin-bottom: 1rem;
}

/* Contact Section */
.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px var(--color-shadow);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--color-neutral-800);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-logo .brand-name {
  color: white;
}

.footer-info {
  opacity: 0.8;
  text-align: center;
  margin-top: 1.5rem;
}

.footer-info a {
  color: white;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-neutral-700);
  text-align: center;
  opacity: 0.7;
  font-size: var(--font-size-sm);
}

/* Image Styles */
.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.dashboard-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem auto;
  box-shadow: 0 4px 6px var(--color-shadow);
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: var(--font-size-4xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-lg);
  }

  .feature-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0 4rem;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-md);
  }

  .feature-image {
    height: 160px;
  }

  .product-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 3rem;
  }
  
  .hero-content {
    margin-top: 2rem;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }

  .feature-image {
    height: 140px;
  }

  .product-image {
    height: 180px;
  }
}