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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-gradient {
  background: linear-gradient(to bottom, #1e3a8a, #1e40af, #7c3aed);
}

/* Timer */
.timer-container {
  background-color: #dc2626;
  color: white;
  padding: 8px 16px;
  text-align: center;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.timer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.timer-display {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
  color: #fde047;
}

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

/* Red Bar */
.red-bar {
  background-color: #dc2626;
  color: white;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  font-size: 14px;
}

/* Hero Section */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.main-image {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.circular-image {
  width: 256px;
  height: 256px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
}

.hero-description {
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto 32px;
}

/* Main CTA */
.main-cta {
  background-color: #dc2626;
  color: white;
  text-align: center;
  padding: 16px;
  margin: 0 16px;
  border-radius: 8px;
  margin-bottom: 48px;
}

.main-cta h2 {
  font-size: 1.25rem;
  font-weight: bold;
}

/* Products Section */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  margin-bottom: 64px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-badge {
  background: black;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
  display: inline-block;
}

.product-image {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.product-old-price {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

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

.product-price {
  font-size: 2rem;
  font-weight: bold;
  color: #16a34a;
  margin-bottom: 16px;
}

.product-button {
  width: 100%;
  background-color: #16a34a;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.product-button:hover {
  background-color: #15803d;
}

.product-info {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

/* Videos Section */
.videos-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  margin-bottom: 64px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.video-container {
  background: black;
  border-radius: 8px;
  overflow: hidden;
}

.video-title {
  padding: 16px;
  color: white;
}

.video-title h3 {
  font-weight: 600;
}

/* Testimonials */
.testimonials-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 32px;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background-color: #1e40af;
  color: white;
  padding: 16px;
  border-radius: 8px;
}

.testimonial p {
  margin-bottom: 8px;
}

.testimonial-location {
  text-align: right;
  font-size: 14px;
}

/* FAQ */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  margin-bottom: 64px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #1e40af;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  color: white;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #1d4ed8;
}

.faq-answer {
  padding: 16px;
  background-color: #1d4ed8;
  color: white;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Final CTA */
.final-cta {
  margin: 0 16px 32px;
}

.final-cta-button {
  width: 100%;
  background-color: #16a34a;
  color: white;
  font-weight: bold;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background-color 0.3s;
}

.final-cta-button:hover {
  background-color: #15803d;
}

/* Footer */
.footer {
  text-align: center;
  color: white;
  font-size: 12px;
  padding: 16px;
}

/* Responsive */
@media (min-width: 768px) {
  .timer-content {
    font-size: 16px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .product-images {
    flex-direction: row;
  }

  .main-image {
    width: 384px;
    height: 384px;
  }

  .circular-image {
    width: 320px;
    height: 320px;
  }

  .main-cta h2 {
    font-size: 1.5rem;
  }
}
