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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #1a1a1a;
  color: white;
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: white;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

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

.logo-subtitle {
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  background-image: url(/public_content/mova-hero-background.avif);
  color: white;
  padding: 120px 0 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: 50% 80%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: white;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #e7e7e7;
  font-weight: 400;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #dfdfdf;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  color: white;
  padding: 20px 50px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  border: 1px solid #e5e5e5;
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #f59e0b;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 600;
}

.benefit-card p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Products Section */
.products {
  padding: 80px 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  border: 2px solid #f0f0f0;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-card.featured {
  border: 2px solid #f59e0b;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.product-image {
  background: #f8f8f8;
  width: 365px;
  height: auto;
  margin-top: 15px;
}

.product-content {
  padding: 2rem;
}

.product-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 700;
}

.product-card p {
  color: #666666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-specs {
  list-style: none;
  margin-bottom: 2rem;
}

.product-specs li::before {
  content: "✓";
  color: rgb(16, 185, 129);
  font-weight: bold;
  padding-right: 15px;
}

.product-specs li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555555;
  font-size: 0.9rem;
}

.product-specs li:last-child {
  border-bottom: none;
}

.amazon-button {
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.amazon-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Trust Section */
.trust {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 80px 0;
}

.trust-content {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.trust-item {
  padding: 2rem 1rem;
}

.trust-number {
  font-size: 4rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-item h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: white;
}

.trust-item p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: #f8fafc;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e5e5e5;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-right: 1.5rem;
  object-fit: cover;
  border: 3px solid #f59e0b;
}

.review-info h5 {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-rating {
  color: #f59e0b;
  font-size: 1.2rem;
}

.review-text {
  color: #666666;
  font-style: italic;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}

.about-content p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: left;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #f8fafc;
}

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

.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #e5e5e5;
}

.faq-question {
  padding: 2rem;
  background: white;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 2px solid #f59e0b;
}

.faq-answer {
  padding: 2rem;
  color: #666666;
  line-height: 1.7;
  font-size: 1rem;
  background: #fafafa;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 10px 0 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.footer-copyright {
  color: #fff;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-bottom {
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0;
  color: #6e6e6e;  
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .review-avatar {
    width: 80px;
    height: 80px;
  }

}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero {
    padding: 0;
  }
}
