@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #997a00;
  --beige: #f5f5dc;
  --white: #ffffff;
  --text-main: #f0f0f0;
  --text-muted: #a0a0a0;
  
  --border-radius: 16px;
  --box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  --box-shadow-hover: 0 15px 40px rgba(212, 175, 55, 0.3);
  --glow: 0 0 20px rgba(212, 175, 55, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold-primary); }
.text-white { color: var(--white); }
.text-beige { color: var(--beige); }

.bg-darker { background-color: var(--bg-darker); }

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-darker);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid var(--gold-light);
  box-shadow: var(--glow);
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.btn-large {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
  width: 100%;
  max-width: 400px;
}

/* Top Banner */
.top-banner {
  background: var(--gold-primary);
  color: var(--bg-darker);
  text-align: center;
  padding: 0.5rem 0;
  font-weight: 700;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.banner-text {
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background: url('assets/bg.png') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8), rgba(10,10,10,0.95));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-text h1 span {
  color: var(--gold-primary);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.micro-copy {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.micro-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--beige);
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Pain Section */
.pain-section {
  padding: 5rem 0;
  background-color: var(--bg-darker);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: rgba(25, 25, 25, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--box-shadow);
}

.pain-icon {
  color: #ff4d4d;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pain-card p {
  font-size: 1.1rem;
  font-weight: 500;
}

.pain-conclusion {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-top: 2rem;
}

/* Transformation Section */
.transformation {
  padding: 5rem 0;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.transform-box {
  background: var(--bg-darker);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.transform-box.after {
  border-color: var(--gold-primary);
  box-shadow: var(--glow);
}

.transform-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.label-before { background: #333; color: #fff; }
.label-after { background: var(--gold-primary); color: var(--bg-darker); }

.transform-content {
  margin-top: 2rem;
}

.transform-box ul {
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
}

.transform-box ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.transform-box.before ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ff4d4d;
}

.transform-box.after ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.transform-text {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 3rem;
  color: var(--beige);
  font-style: italic;
}

/* Deliverables Section */
.deliverables {
  padding: 5rem 0;
  background-color: var(--bg-darker);
}

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

.deliv-card {
  background: linear-gradient(145deg, #111, #1a1a1a);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
}

.deliv-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.deliv-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.deliv-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Benefits */
.benefits {
  padding: 5rem 0;
  position: relative;
  background: url('assets/woman.png') center/cover no-repeat;
  background-attachment: fixed;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.85);
}

.benefits .container {
  position: relative;
  z-index: 2;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  background: rgba(0,0,0,0.5);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 3px solid var(--gold-primary);
  backdrop-filter: blur(5px);
}

.benefit-item i {
  color: var(--gold-primary);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--bg-darker);
}

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

.testi-card {
  background: #111;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.stars {
  color: #ffb400;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testi-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--gold-light);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing {
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-card.premium {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, #1a1500 0%, #0a0a0a 100%);
  transform: scale(1.05);
  box-shadow: var(--glow);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--bg-darker);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.price-amount span {
  font-size: 1.5rem;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.price-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
}

.price-card:not(.premium) .btn {
  background: transparent;
  color: var(--gold-primary);
}

.price-card:not(.premium) .btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Guarantee */
.guarantee {
  padding: 4rem 0;
  background-color: var(--bg-darker);
  text-align: center;
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  border: 1px dashed var(--gold-primary);
  padding: 3rem;
  border-radius: var(--border-radius);
  background: rgba(212, 175, 55, 0.05);
}

.guarantee-icon {
  font-size: 4rem;
  color: var(--gold-primary);
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-darker);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
  max-height: 200px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Popup */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-content {
  background: var(--bg-darker);
  border: 2px solid var(--gold-primary);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  max-width: 450px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.popup-overlay.show .popup-content {
  transform: scale(1);
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.close-popup:hover {
  color: var(--white);
}

/* Purchase Notification */
.purchase-notification {
  position: fixed;
  top: 60px;
  right: -400px;
  background: var(--bg-darker);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  z-index: 999;
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  max-width: 320px;
}

.purchase-notification.show {
  right: 20px;
}

.notify-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-main);
}

.notify-info span {
  font-size: 0.75rem;
  color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    margin: 0 auto 2.5rem;
  }
  
  .micro-copy {
    justify-content: center;
  }
  
  .hero-image {
    margin: 0 auto;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .price-card.premium {
    transform: none;
  }
}

@media (max-width: 768px) {
  .top-banner {
    font-size: 0.8rem;
    padding: 0.8rem 0.5rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .transform-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }

  .purchase-notification {
    top: 60px;
    right: -400px;
    bottom: auto;
  }
  
  .purchase-notification.show {
    right: 10px;
    transform: none;
    width: auto;
  }
}
