/* Reset and Base Styles */
:root {
  --primary-red: #d90429;
  --primary-red-hover: #ef233c;
  --accent-gold: #d4af37;
  --accent-gold-light: #f9d976;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1f1f1f;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 15% 50%, rgba(217, 4, 41, 0.05), transparent 25%),
                    radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.03), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

.text-gold {
  color: var(--accent-gold);
}

.text-red {
  color: var(--primary-red);
}

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

.section-padding {
  padding: 100px 0;
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-red) 0%, #99001b 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-red-hover) 0%, var(--primary-red) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(217, 4, 41, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(217, 4, 41, 0.4);
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(217, 4, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0); }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Section 1: Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right center, rgba(10, 10, 10, 0) 0%, var(--bg-dark) 70%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  opacity: 0.7;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

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

.hero .label {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

/* Section 2: Pain Identification */
.pain-section {
  background-color: var(--bg-dark);
  position: relative;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pain-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 4, 41, 0.3);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.pain-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Section 3: Why failed */
.why-failed {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0505 100%);
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.checklist {
  list-style: none;
  max-width: 800px;
  margin: 50px auto 0;
}

.checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.03);
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
}

.checklist li i {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-right: 20px;
}

/* Section 4 & 5: Solution & Benefits */
.solution-section {
  position: relative;
}

.solution-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.solution-image {
  flex: 1;
  position: relative;
}

.solution-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}

.solution-image::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  z-index: -1;
}

.solution-content {
  flex: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-item i {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 10px;
  border-radius: 50%;
  font-size: 1.2rem;
}

/* Section 6: Deliverables */
.deliverables {
  background: var(--bg-card);
  text-align: center;
}

.mockup-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.mockup-item {
  background: var(--bg-dark);
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Section 7 & 12: FAQ */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 30px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.05);
}

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

.faq-item.active .faq-answer {
  padding: 20px 30px;
  max-height: 200px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Section 8 & 11: Credibility & Guarantee */
.guarantee-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 50px auto;
  max-width: 900px;
}

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

/* Section 9: Offer */
.offer-section {
  background: radial-gradient(circle at center, #1a0808 0%, var(--bg-dark) 100%);
  text-align: center;
  padding: 120px 0;
}

.price-box {
  background: var(--bg-card);
  border: 2px solid var(--primary-red);
  border-radius: 30px;
  padding: 60px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 0 50px rgba(217, 4, 41, 0.15);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: #000;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.price {
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.price span {
  font-size: 2rem;
  margin-top: 10px;
  margin-right: 5px;
}

.price-details {
  color: var(--text-muted);
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.price-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.safe-checkout {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 1.5rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
  .solution-wrapper {
    flex-direction: column;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
  }
  
  .hero-bg-img {
    width: 100%;
    opacity: 0.4;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%);
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .price {
    font-size: 3.5rem;
  }
  
  .price-box {
    padding: 40px 20px;
  }
}
