:root {
  --background: #000000;
  --foreground: #FFFFFF;
  --primary: #FFD700;
  --primary-hover: hsl(60, 100%, 45%);
  --secondary: #222222;
  --muted: #666666;
  --gold: #FFD700;
  --dark-gold: #B8860B;
  --soft-black: #1A1A1A;
  --white: #ffffff;
  --gray: #888888;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(4px);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.8), var(--soft-black));
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: var(--background);
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: var(--background);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--primary-hover);
}

/* Sections */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: var(--secondary);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Product Section */
.product {
  position: relative;
  overflow: hidden;
}

.product .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 1rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background-color: black;
}

.price-card {
  max-width: 500px;
  margin: 3rem auto;
  padding: 3rem;
  background-color: var(--soft-black);
  border: 1px solid var(--gold);
  border-radius: 12px;
  text-align: center;
  animation: slide-in 0.6s ease-out forwards;
}

.price {
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 1rem;
  
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features-list li {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .product .container {
    grid-template-columns: 1fr 1fr;
  }
 
}

.product-content {
  opacity: 0;
  transform: translateX(-20px);
  animation: slide-in 0.6s ease-out forwards;
}

.product-image {
  opacity: 0;
  transform: translateX(20px);
  animation: slide-in 0.6s ease-out 0.3s forwards;
}

.product-image img {
  width: 100%;
  height:700px;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.02);
}

.features {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.6s ease-out forwards;
}

.feature:nth-child(1) { animation-delay: 0.4s; }
.feature:nth-child(2) { animation-delay: 0.6s; }
.feature:nth-child(3) { animation-delay: 0.8s; }

.feature-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.feature:hover .feature-number {
  transform: scale(1.1);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chapters Grid */
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.chapter {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.chapter-number {
  font-size: 2rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: rgba(0,0,0,0.2);
}

.accordion-item.active .accordion-content {
  padding: 1rem;
  max-height: 1000px;
}

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

/* Footer */
footer {
  background-color: var(--secondary);
  padding: 3rem 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .slider-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    width: 80%;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .chapters-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
