:root {
  --primary-red: #F64740;
  --black: #000000;
  --white: #FFFFFF;
  --background: #FAFAFA;
  --text-dark: #000000;
  --text-light: #666666;
}

.cta-btn {
  background: var(--primary-red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(238, 49, 36, 0.3);
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(238, 49, 36, 0.5);
}

.cta-btn:active {
  transform: scale(0.98);
}

.crazy-section{
  background: #fafafa;
}

/* Hero Section */
.hero {
  /* margin-top: 80px; */
  min-height: 90vh;
  background: linear-gradient(135deg, #FAFAFA 0%, #FFE8E6 50%, #FAFAFA 100%);
  background-size: 200% 200%;
  animation: gradientFlow 8s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

.hero h1 span {
  color: var(--primary-red);
}

.hero p {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
  line-height: 30px;
  font-weight: 500;
}

.hero .cta-btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.stats-counter {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-red);
  display: block;
  line-height: normal;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Floating Elements */
.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.floating-icon:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.floating-icon:nth-child(4) {
  bottom: 30%;
  right: 10%;
  animation-delay: 1.5s;
}

/* Section Styles */
section {
  padding: 5rem 2rem;
  /* max-width: 1200px;
  margin: 0 auto; */
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--black);
  display: block;
}
.theme_dark .section-title{
  color: var(--black);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-50px);
}

.problem-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.problem-card:nth-child(even) {
  transform: translateX(50px);
}

.problem-card:nth-child(even).animate-in {
  transform: translateX(0);
}

.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: normal;
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
  font-weight: 700;
}

.problem-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.problem-stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-top: 1rem;
  display: block;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  border-color: var(--primary-red);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(238, 49, 36, 0.2);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.red-badge {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Why Us Section */
.why-us-content {
  background: var(--white);
  padding: 5px 15px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-red);
  background: var(--background);
  border-radius: 8px;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
  font-weight: 500;
}

.feature-list li.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.feature-list li:before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.3rem;
  display: inline-block;
}

/* How It Works */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.step-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.step-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--primary-red);
  transition: left 0.6s ease;
}

.pricing-card.animate-in::before {
  left: 0;
}

.pricing-card:hover {
  border-color: var(--primary-red);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(238, 49, 36, 0.2);
}

.popular-badge {
  position: absolute;
  top: 10px;
  right: 20px;
  background: var(--primary-red);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: floatingBob 2s ease-in-out infinite;
}

@keyframes floatingBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--black);
  font-weight: 900;
}

.pricing-card .orders {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-dark);
}

.price-features li:before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
  margin-right: 0.75rem;
  display: inline-block;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--background);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, var(--primary-red), #C71E1A);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  color: var(--white);
  text-align: center;
  display: block;
}

.final-cta p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.final-cta .cta-btn {
  background: var(--white);
  color: var(--primary-red);
  font-size: 1.3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.final-cta .cta-btn:hover {
  background: var(--background);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}


/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .stats-counter {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .floating-icon {
    display: none;
  }

  section {
    padding: 3rem 1rem;
  }
}