@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  /* Brand Colors */
  --color-dark-purple: #1f1346;
  --color-royal-indigo: #2f1c6a;
  --color-amethyst: #5025d1;
  
  /* Call to Action */
  --color-cta: #fc5185;
  --color-cta-hover: #d63163;
  
  /* Highlights */
  --color-gold: #fea419;
  --color-gold-light: #ffcd35;
  
  /* Neutrals */
  --color-charcoal: #1d1e20;
  --color-gray: #727586;
  --color-off-white: #f8f9fa;
  --color-white: #ffffff;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Layout */
  --container-width: 1100px;
  --border-radius: 16px;
  --border-radius-btn: 8px;
  
  /* Shadows */
  --shadow-card: rgba(29, 30, 32, 0.1) 0px 4px 12px;
  --shadow-cta: rgba(252, 81, 133, 0.4) 0px 8px 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-off-white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

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

.highlight {
  color: var(--color-gold);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 9999px; /* Pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: rgba(252, 81, 133, 0.5) 0px 12px 28px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1510;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  text-align: center;
  padding: 100px 20px;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Scarcity Banner */
.scarcity-banner {
  background-color: #e53e3e;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

/* Features List */
.check-list {
  list-style: none;
  margin: 20px 0;
  text-align: left;
  display: inline-block;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.check-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-cta);
}

/* Grids */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

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

.card img {
  border-radius: 8px;
  margin-bottom: 20px;
}

.card h3 {
  color: var(--color-royal-indigo);
  margin-bottom: 10px;
}

/* Bonus Section */
.bonus-section {
  background-color: var(--color-dark-purple);
  color: var(--color-white);
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 30px;
  backdrop-filter: blur(10px);
}

.bonus-card h3 {
  color: var(--color-gold);
}

.price-strike {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee {
  background-color: #fff9eb;
  border: 2px solid var(--color-gold-light);
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon {
  flex-shrink: 0;
  width: 120px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-royal-indigo);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 10px;
  color: var(--color-gray);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust as needed */
}

/* Media Queries */
@media (max-width: 920px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  
  .hero {
    padding-top: 120px;
  }
  
  .guarantee {
    flex-direction: column;
    text-align: center;
  }
}
