:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --dark-color: #2d3436;
  --light-bg: #f8f9fa;
  --success-color: #27ae60;
  --danger-color: #e74c3c;
}

* {
  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-color: #fff;
}

.hero-section {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.price-badge h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  color: #fff3cd;
  font-size: 1.5rem;
}

.new-price {
  background: #fff;
  color: #ff6b35;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 800;
  display: inline-block;
  margin: 0 10px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
}

.social-proof {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
}

.features-section {
  background: #fff;
}

.feature-list {
  padding: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1rem;
}

.feature-item i {
  color: var(--success-color);
  font-size: 1.5rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.age-info {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.cta-button, .cta-button-large {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover, .cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.cta-button small {
  font-size: 0.8rem;
  font-weight: 400;
}

.demand-notice {
  color: #e74c3c;
  font-weight: 600;
  font-size: 1.1rem;
}

.demand-notice i {
  animation: pulse 1.5s infinite;
}

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

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
}

.benefits-section {
  background: var(--light-bg);
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.benefit-card i {
  font-size: 2rem;
  margin-right: 10px;
}

.warning-section {
  background: #fff;
}

.warning-card {
  background: #fff3cd;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--danger-color);
  text-align: center;
  height: 100%;
}

.warning-card i {
  font-size: 3rem;
  color: var(--danger-color);
  margin-bottom: 15px;
}

.warning-card h5 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.motto {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
}

.inside-section {
  background: var(--light-bg);
}

.inside-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.inside-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

.inside-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.inside-card h5 {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.pricing-section {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-list {
  margin-bottom: 30px;
}

.pricing-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.pricing-item i {
  color: var(--success-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.pricing-item.bonus {
  background: #fff3cd;
  padding: 15px;
  border-radius: 10px;
  border: none;
  margin: 10px 0;
  font-weight: 700;
}

.pricing-item.bonus i {
  color: var(--primary-color);
}

.price-display {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 10px;
}

.regular-price {
  color: #666;
  font-size: 1.2rem;
  text-decoration: line-through;
}

.special-price {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 800;
}

.testimonials-section {
  background: var(--light-bg);
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.stars {
  color: #ffd700;
  font-size: 1.5rem;
}

.testimonial-card h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 10px;
}

.testimonial-card .subtitle {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 15px;
}

.stats-section {
  background: #fff;
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.progress-container {
  background: #e0e0e0;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  transition: width 2s ease;
}

.how-it-works {
  background: var(--light-bg);
}

.step-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.step-card i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.step-card h4 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.why-choose-section {
  background: #fff;
}

.feature-box {
  text-align: center;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 15px;
  height: 100%;
}

.feature-box i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-box h4 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.countdown-section {
  background: var(--light-bg);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.countdown-item {
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 120px;
}

.countdown-item span {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
}

.countdown-item p {
  margin: 0;
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}

.faq-section {
  background: #fff;
}

.accordion-button {
  background: var(--light-bg);
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.1rem;
}

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

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-body {
  font-size: 1rem;
  line-height: 1.8;
}

.guarantee-section {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
}

.guarantee-badge {
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-badge i {
  font-size: 5rem;
  margin-bottom: 20px;
}

.guarantee-badge h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer {
  background: var(--dark-color);
  color: white;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

  .price-badge h2 {
    font-size: 1.2rem;
  }

  .new-price {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .countdown-item {
    padding: 20px 30px;
    min-width: 100px;
  }

  .countdown-item span {
    font-size: 2rem;
  }
}
