/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --background: #ffffff;
  --background-secondary: #f6f8fa;
  --foreground: #0c0c0e;
  
  /* Color Tokens - Crimson Red Theme */
  --gold: #dc2626; /* Rose / Red accent */
  --gold-rgb: 220, 38, 38;
  --gold-light: #fecaca; /* Rose-200 */
  --neon: #991b1b; /* Darker red-800 */
  --neon-rgb: 153, 27, 27;
  --danger: #dc2626;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  /* Layout */
  --radius-lg: 1rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.25rem;
  
  /* Borders */
  --border-gold: rgba(220, 38, 38, 0.35);
  --border-glass: rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  background-color: var(--background);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(var(--gold-rgb), 0.03) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(var(--neon-rgb), 0.03) 0%, transparent 40%),
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
  pointer-events: none;
  z-index: -1;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

iframe {
  border: none;
}

/* ==========================================================================
   GRID & LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-md { max-width: 480px; }
.max-w-2xl { max-width: 720px; }
.max-w-3xl { max-width: 900px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--gold); }
.text-muted { color: #555555; }
.text-foreground { color: var(--foreground); }

.font-outfit { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }

.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.15em; }
.tracking-wider { letter-spacing: 0.08em; }

/* Background decoration glows */
.glow-bg {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}
.glow-gold {
  top: -10vw;
  right: -10vw;
  background: var(--gold);
}
.glow-neon {
  bottom: -10vw;
  left: -10vw;
  background: var(--neon);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background-color: var(--gold);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.2);
}
.btn-primary:hover {
  background-color: var(--neon);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(var(--gold-rgb), 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--foreground);
  border-color: var(--border-glass);
}
.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.06);
  border-color: var(--border-gold);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  width: auto;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   COMPONENTS: GLASS CARD, SHIMMER, GLOW
   ========================================================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.glass-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.08);
  transform: translateY(-2px);
}

.gold-shimmer {
  background: linear-gradient(120deg, var(--gold), var(--gold-light) 40%, var(--gold) 60%, var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerAnim 4s linear infinite;
}

@keyframes shimmerAnim {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.pulse-glow {
  animation: pulseGlowAnim 2.5s ease-in-out infinite;
}

@keyframes pulseGlowAnim {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.15), 0 0 0 1px rgba(var(--gold-rgb), 0.05);
  }
  50% {
    box-shadow: 0 6px 30px rgba(var(--neon-rgb), 0.25), 0 0 10px rgba(var(--neon-rgb), 0.1);
  }
}

.neon-pulse {
  animation: neonPulseAnim 2.5s ease-in-out infinite;
}

@keyframes neonPulseAnim {
  0%, 100% {
    box-shadow: 0 0 15px rgba(var(--neon-rgb), 0.02), inset 0 0 20px rgba(var(--neon-rgb), 0.01);
    border-color: var(--border-glass);
  }
  50% {
    box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.1), inset 0 0 10px rgba(var(--gold-rgb), 0.03);
    border-color: rgba(var(--gold-rgb), 0.2);
  }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.25rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 8rem 0 4rem 0;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-sm);
  background-color: rgba(var(--gold-rgb), 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  max-w-5xl { max-width: 1000px; }
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 3rem;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.video-iframe {
  width: 100%;
  height: 100%;
}

.hero-actions {
  margin-bottom: 4rem;
}

.hero-action-badge {
  font-size: 0.875rem;
  margin-top: 1rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 800px;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 340px;
  }
  .stat-card {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   SLIDER / CASES SECTION
   ========================================================================== */
.cases-section {
  padding: 6rem 0;
  background-color: var(--background-secondary);
}

.slider-outer-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.slider-track-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
}

.slider-track-viewport::-webkit-scrollbar {
  display: none; /* Hide scrollbar for clean visual */
}

.case-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 2.25rem;
  max-width: 100%;
  box-sizing: border-box;
}

.case-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.case-avatar-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.case-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-user-info {
  display: flex;
  flex-direction: column;
}

.case-name {
  font-size: 1.125rem;
}

.case-desc {
  font-size: 0.875rem;
}

.case-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(var(--gold-rgb), 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.case-quote {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.case-screenshot-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.case-screenshot {
  width: 100%;
  height: auto;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border-glass);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}
.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: #000000;
}

.slider-btn-prev { left: -1.5rem; }
.slider-btn-next { right: -1.5rem; }

@media (min-width: 769px) {
  .case-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 900px) {
  .slider-btn {
    display: none; /* Hide arrows on small screens, rely on swipe */
  }
  .case-card {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   SYSTEM IN NUMBERS SECTION
   ========================================================================== */
.numbers-section {
  padding: 6rem 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.number-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.number-image-wrapper {
  width: 100%;
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.01);
}

.number-image {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}
.number-card:hover .number-image {
  transform: scale(1.03);
}

.number-info {
  padding: 2rem;
}

.number-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.number-text {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .numbers-grid > *:nth-child(3) {
    grid-column: span 1;
  }
  .number-info {
    padding: 1.25rem;
  }
  .number-title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   5 STEPS SECTION
   ========================================================================== */
.steps-section {
  padding: 6rem 0;
  background-color: var(--background-secondary);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.step-item {
  display: flex;
  gap: 2rem;
  padding: 3rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.step-media-container, .step-image-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.step-video, .step-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .step-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  .step-title {
    font-size: 1.25rem;
  }
  .step-desc {
    margin-bottom: 1.25rem;
  }
}

/* ==========================================================================
   ABOUT AUTHOR SECTION
   ========================================================================== */
.about-section {
  padding: 6rem 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.timeline-item {
  display: flex;
  overflow: hidden;
}

.timeline-image-wrapper {
  flex: 0 0 40%;
  border-right: 1px solid var(--border-glass);
  overflow: hidden;
}

.timeline-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.timeline-text {
  font-size: 1rem;
}

.timeline-sub-img {
  width: 100%;
  max-width: 250px;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
  border: 1px solid var(--border-glass);
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
  }
  .timeline-image-wrapper {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }
  .timeline-content {
    padding: 1.5rem;
  }
  .timeline-heading {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   WHY SUCCEED SECTION
   ========================================================================== */
.why-succeed-section {
  padding: 6rem 0;
  background-color: var(--background-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-card {
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-md);
  background-color: rgba(var(--gold-rgb), 0.05);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: iconGlowAnim 3s ease-in-out infinite;
}

@keyframes iconGlowAnim {
  0%, 100% { box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.08); }
  50% { box-shadow: 0 0 25px rgba(196, 167, 108, 0.25); }
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-card-desc {
  font-size: 0.935rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .why-card {
    padding: 2rem 1.5rem;
  }
  .why-icon-wrapper {
    margin-bottom: 1.5rem;
  }
}

/* ==========================================================================
   PROGRAM / MODULES SECTION
   ========================================================================== */
.program-section {
  padding: 6rem 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.program-card {
  padding: 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.program-step-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-glass);
}

.program-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.program-card-desc {
  font-size: 0.935rem;
}

.bonus-banner {
  grid-column: span 2;
  margin-top: 2rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-sm);
  background-color: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  color: var(--neon);
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.bonus-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.bonus-desc {
  font-size: 1rem;
  max-width: 600px;
}

@media (max-width: 768px) {
  .program-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .program-card {
    padding: 1.5rem;
  }
  .bonus-banner {
    grid-column: span 1;
    padding: 1.5rem;
  }
  .bonus-title {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background-color: var(--background-secondary);
}

.faq-accordion-group {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.95rem;
}

/* Open state styles (manipulated via JavaScript) */
.faq-item.active {
  border-color: var(--border-gold);
}

.faq-item.active .faq-trigger {
  color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .faq-trigger {
    padding: 1.25rem;
    font-size: 1rem;
  }
}

/* ==========================================================================
   OFFER / PRICING SECTION
   ========================================================================== */
.offer-section {
  padding: 6rem 0;
}

.offer-card {
  padding: 4rem 3rem;
  position: relative;
}

.offer-badge {
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.offer-title {
  font-size: 2.25rem;
  line-height: 1.2;
}

.offer-divider {
  height: 1px;
  background-color: var(--border-glass);
  margin: 2rem 0;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.feature-check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.offer-access {
  font-size: 0.9rem;
}

.price-container {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.price-val {
  font-size: 3.5rem;
  line-height: 1;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  color: #8a8a8f;
}

.payment-logo {
  transition: color 0.2s ease;
}
.payment-logo:hover {
  color: var(--foreground);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #8a8a8f;
}
.trust-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .offer-card {
    padding: 2.5rem 1.5rem;
  }
  .offer-title {
    font-size: 1.75rem;
  }
  .price-val {
    font-size: 2.75rem;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
  padding: 4rem 0 6rem 0;
  background-color: var(--background);
  border-top: 1px solid var(--border-glass);
}

.footer-questions {
  padding: 2.5rem;
  margin-bottom: 4rem;
}

.footer-divider {
  height: 1px;
  background-color: var(--border-glass);
  margin-bottom: 3rem;
}

.footer-legal {
  max-width: 800px;
  margin: 0 auto;
}

.instagram-disclaimer {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.35;
  font-size: 0.65rem;
  line-height: 1.4;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.legal-link {
  transition: color 0.2s ease;
}
.legal-link:hover {
  color: var(--foreground);
  text-decoration: underline;
}

.legal-separator {
  opacity: 0.2;
}

.legal-org {
  line-height: 1.8;
  opacity: 0.6;
}

@media (max-width: 480px) {
  .footer-questions {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   PAIN / FEAR SECTION STYLES
   ========================================================================== */
.pain-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-glass);
}
.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
.pain-card {
  padding: 2.5rem;
  border-style: dashed;
}
.pain-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--danger);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pain-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pain-desc {
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   DAILY PAYMENTS PROOF & HERO GRAPHIC STYLE
   ========================================================================== */
.payments-proof-section {
  padding: 4rem 0 6rem 0;
  border-top: 1px solid var(--border-glass);
}
.payments-proof-card {
  padding: 3rem;
  overflow: hidden;
}
.payments-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.payments-video-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}
.payments-video {
  width: 100%;
  height: auto;
  display: block;
}
.payments-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.payments-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.payments-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* .hero-graphic-card {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  margin-bottom: 2rem;
  border-color: rgba(6, 182, 212, 0.2);
}
.hero-graphic-img {
  width: 100%;
  height: auto;
  display: block;
} */

@media (max-width: 768px) {
  .payments-proof-card {
    padding: 1.5rem;
  }
  .payments-proof-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .payments-title {
    font-size: 1.35rem;
  }
  .payments-video-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   BONUSES GRID STYLE
   ========================================================================== */
.bonuses-header {
  margin-top: 5rem;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.bonus-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.bonus-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neon);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.bonus-title-text {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.bonus-desc-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   STORYTELLING & COFFEE COMPARISON STYLES
   ========================================================================== */
.storytelling-container {
  padding: 3rem;
  margin-top: 3rem;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--radius-lg);
}
.storytelling-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 2rem;
}
.storytelling-avatar-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.25);
  flex-shrink: 0;
}
.storytelling-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.storytelling-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.storytelling-author-info p {
  margin: 0;
}
.storytelling-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.story-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
}
.story-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--foreground);
  line-height: 1.6;
}

/* Price comparison card in offer-section */
.price-comparison {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px dashed rgba(var(--gold-rgb), 0.25);
  background: rgba(var(--gold-rgb), 0.02);
  text-align: left;
  border-radius: var(--radius-md);
}
.comparison-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-text {
  line-height: 1.5;
}

@media (max-width: 768px) {
  .storytelling-container {
    padding: 1.5rem;
  }
  .storytelling-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .story-quote {
    padding-left: 1rem;
    font-size: 1rem;
  }
  .story-paragraph {
    font-size: 0.95rem;
  }
}

