/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
.header {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

.btn-order-header {
  background: #ffd700;
  color: #333;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
}

.btn-order-header:hover {
  background: #ffed4e;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #ffe5e5 0%, #fff 100%);
  padding: 60px 0;
}

.hero-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.hero-subtitle {
  text-align: center;
  font-size: 24px;
  color: #e74c3c;
  margin-bottom: 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.pricing-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.regular-price {
  font-size: 18px;
  color: #666;
}

.strike {
  text-decoration: line-through;
}

.sale-price {
  font-size: 24px;
  font-weight: bold;
  color: #e74c3c;
  margin: 10px 0;
}

.price-highlight {
  font-size: 32px;
}

.urgency {
  background: #e74c3c;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 20px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.reviews-badge {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #ffd700;
  font-size: 20px;
}

.review-count {
  color: #666;
  font-size: 14px;
}

/* Why Choose Section */
.why-choose {
  background: #e74c3c;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  padding: 60px 0;
  background: #f8f9fa;
}

.reviews .section-title {
  color: #2c3e50;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviewer-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

.reviewer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verified-badge {
  text-align: center;
  color: #27ae60;
  font-weight: bold;
  margin-bottom: 15px;
}

.review-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.reviewer-name {
  font-weight: bold;
  color: #2c3e50;
  text-align: center;
}

/* What Is Section */
.what-is {
  padding: 60px 0;
  background: #fff;
}

.what-is .section-title {
  color: #fff;
  background: #e74c3c;
  padding: 20px;
  border-radius: 10px;
}

.what-is-content {
  /* display: grid; */
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.what-is-image img {
  width: 100%;
  max-width: 400px;
}

.what-is-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* How It Works Section */
.how-it-works {
  padding: 60px 0;
  background: #f8f9fa;
}

.how-it-works .section-title {
  color: #fff;
  background: #e74c3c;
  padding: 20px;
  border-radius: 10px;
}

.how-it-works-content {
  margin-top: 40px;
}

.how-it-works-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  padding: 60px 0;
}

.section-title-white {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.pricing-subtitle {
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.3s;
}

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

.package-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: #333;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.pricing-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 20px auto;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.package-price {
  margin: 20px 0;
}

.price-large {
  font-size: 48px;
  font-weight: bold;
  color: #e74c3c;
}

.price-per {
  font-size: 18px;
  color: #666;
}

.total-price {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.package-features li {
  padding: 8px 0;
  color: #555;
  font-size: 14px;
}

.btn-package {
  display: block;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
  transition: transform 0.3s;
}

.btn-package:hover {
  transform: scale(1.05);
}

.guarantee-section {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-section img {
  width: 120px;
  height: 120px;
}

.guarantee-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.guarantee-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  background: #fff;
}

.faq .section-title {
  color: #2c3e50;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f8f9fa;
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #e74c3c;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.faq-answer p {
  padding: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #bdc3c7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

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

.btn-footer {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-footer:hover {
  background: #c0392b;
}

.footer-disclaimer {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-disclaimer p {
  font-size: 12px;
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #e74c3c;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .what-is-content {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-section {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section-title,
  .section-title-white {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .price-large {
    font-size: 36px;
  }
}
