:root {
  --bg-color-main: #0B090C;
  --bg-secondary: rgba(255, 255, 255, 0.02);
  --primary: #E5989B; /* Rose */
  --secondary: #D4A373; /* Gold */
  --accent: #FFB4A2; /* Light Rose/Coral */
  
  --text-main: #F8F9FA;
  --text-muted: #BDBDBD;
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(229, 152, 155, 0.15); /* Soft Rose border */
  --shadow-neon: 0 0 20px rgba(229, 152, 155, 0.3);
  --shadow-gold: 0 0 20px rgba(212, 163, 115, 0.3);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100vw;
}

body {
  background-color: var(--bg-color-main);
  background-image: 
    radial-gradient(circle at top right, rgba(229, 152, 155, 0.08), transparent 40%),
    radial-gradient(circle at bottom left, rgba(212, 163, 115, 0.08), transparent 40%);
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  max-width: 1100px; /* Widened slightly to accommodate side-by-side content */
  margin: 0 auto;
  padding: 0 5%;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.8rem; }
.text-gray { color: #888; }
.mt-xl { margin-top: 4rem; }
.mb-md { margin-bottom: 2rem; }

/* UTILS */
.glow {
  position: absolute;
  filter: blur(100px);
  opacity: 0.3;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.glow-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 5%;
  left: -150px;
  animation: float 8s ease-in-out infinite alternate;
}
.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: 10%;
  right: -150px;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

.section-padding {
  padding: 5rem 0;
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #1A1214; /* Dark text on light button for contrast */
  border: none;
  box-shadow: var(--shadow-neon);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(229, 152, 155, 0.6);
  color: #000;
}
.btn-large {
  font-size: 1.1rem;
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 2rem auto 0;
  text-align: center;
}

/* GLASSMORPHISM */
.glass-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 163, 115, 0.3); /* Gold tint on hover */
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* HERO SECTION */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.badge {
  display: inline-block;
  background: rgba(212, 163, 115, 0.15); /* Gold bg */
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* LAYOUT STRUCTURES (SIDE-BY-SIDE) */
.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border);
}
.img-wrap {
  position: relative;
}
/* Gives a glow behind images to make them fit the futurism gracefully */
.img-wrap::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
  z-index: -1;
  opacity: 0.15;
  filter: blur(20px);
}

/* COPY BLOCKS */
.copy-block {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
}
.side-by-side .copy-block {
  margin: 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .copy-block {
    text-align: center !important;
  }
  .side-by-side .copy-block p {
    text-align: center;
  }
  .highlight-box {
    text-align: left; /* Keep bullets organized */
  }
}
.copy-block p {
  margin-bottom: 1.5rem;
}
.highlight-box {
  background: rgba(229, 152, 155, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  border-radius: 0 15px 15px 0;
  margin: 1.5rem 0;
}
.highlight-box p:last-child {
  margin-bottom: 0;
}

/* LIST FEATURES (Method & What You'll Learn) */
.feature-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  display: inline-block;
}
.side-by-side .feature-list {
  display: block;
}
.feature-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.feature-list li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2rem;
}

/* METHOD SECTION */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.method-letter {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1;
}
.method-card h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.method-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* TARGET (WHO IT IS FOR) */
.target-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.target-box {
  padding: 3rem;
}
.target-box h3 {
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}
.target-box.not-for h3 {
  color: #ff6b6b;
}
.target-list {
  list-style: none;
}
.target-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: var(--text-muted);
}
.target-box.is-for .target-list li::before {
  content: '✔';
  color: var(--secondary);
  margin-right: 10px;
}
.target-box.not-for .target-list li::before {
  content: '✖';
  color: #ff6b6b;
  margin-right: 10px;
}

/* BONUS SECTION */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.bonus-card {
  text-align: center;
}
.bonus-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

/* OFFER SECTION */
.prominent {
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}
.new-price { font-size: 4rem; font-weight: 800; line-height: 1; margin: 1.5rem 0;}
.cash-price { font-size: 1.2rem; margin-bottom: 1rem; color: var(--text-muted);}

/* GUARANTEE */
.guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.guarantee-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* CLOSING */
.closing-section {
  text-align: center;
  padding: 8rem 0;
}
.closing-section p {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--secondary);
}

/* ANIMATIONS */
@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-50px) scale(1.1); }
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 20px rgba(229,152,155,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(229,152,155,0.8); }
  100% { transform: scale(1); box-shadow: 0 0 20px rgba(229,152,155,0.4); }
}
.pulse-btn { animation: pulse 2.5s infinite; }

/* Scroll Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.slide-in-right { opacity: 0; transform: translateX(30px); transition: all 1s ease-out; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease-out; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: all 0.8s ease-out; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.zoom-in { opacity: 0; transform: scale(0.9); transition: all 0.6s ease-out; }
.zoom-in.visible { opacity: 1; transform: scale(1); }

/* Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .side-by-side {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .target-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .method-grid { grid-template-columns: 1fr; }
  .target-box { padding: 2rem; }
  .copy-block { font-size: 1.05rem; }
}
