/* Landing Page Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #ffffde;
  background-color: #492d4c;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #492d4c 0%, #5a3d5e 100%);
}

.hero-content {
  max-width: 800px;
}

.hero-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: #f4ae6f;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ffffde;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #f4ae6f;
  color: #492d4c;
}

.btn-primary:hover {
  background-color: #e89d5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffde;
  border: 2px solid #f4ae6f;
}

.btn-secondary:hover {
  background-color: rgba(244, 174, 111, 0.1);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

/* Sections */
section {
  padding: 3rem 2rem;
}

section h2 {
  font-size: 2.5rem;
  color: #f4ae6f;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-intro {
  font-size: 1.25rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #e6e6c5;
}

/* Hero additions */
.hero-free {
  font-size: 1rem;
  color: #f4ae6f;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Problem Section */
.problem {
  background-color: #5a3d5e;
}

.problem p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #ffffde;
}

/* Solution Section */
.solution {
  background-color: #492d4c;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background-color: #5a3d5e;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #6b4d6f;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: #f4ae6f;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.feature h3 {
  color: #f4ae6f;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature p {
  color: #ffffde;
  font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
  background-color: #5a3d5e;
}

.point-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.category {
  background-color: #492d4c;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #6b4d6f;
}

.category h3 {
  color: #f4ae6f;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.category .points {
  color: #f4ae6f;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.category p {
  color: #ffffde;
  font-size: 0.95rem;
}

.bonus-info {
  display: none;
}

/* Benefits Section */
.benefits {
  display: none;
}

/* Expandable Content */
.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-top: 0;
}

.expandable-content.expanded {
  max-height: 1000px;
  margin-top: 1rem;
  transition: max-height 0.5s ease-in;
}

.expandable-content p {
  margin-bottom: 0.75rem;
  color: #ffffde;
  font-size: 1rem;
  text-align: left;
}

.expand-btn {
  background: transparent;
  border: 2px solid #f4ae6f;
  color: #f4ae6f;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s;
  font-weight: 600;
}

.expand-btn:hover {
  background-color: rgba(244, 174, 111, 0.1);
}

.expand-btn-small {
  background: transparent;
  border: 1px solid #f4ae6f;
  color: #f4ae6f;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: all 0.3s;
  font-weight: 500;
}

.expand-btn-small:hover {
  background-color: rgba(244, 174, 111, 0.1);
}

.bonus-info-expanded {
  background-color: #5a3d5e;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #f4ae6f;
  margin-top: 1rem;
}

.bonus-info-expanded h3 {
  color: #f4ae6f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.bonus-info-expanded p {
  color: #ffffde;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.bonus-info-expanded strong {
  color: #f4ae6f;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #5a3d5e 0%, #492d4c 100%);
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #ffffde;
}

.privacy-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #e6e6c5;
  font-style: italic;
}

/* Footer */
footer {
  background-color: #5a3d5e;
  padding: 2rem;
  text-align: center;
  color: #e6e6c5;
  border-top: 2px solid #6b4d6f;
}

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

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

  section h2 {
    font-size: 2rem;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
