/* Modern Clean Patterns - Design System */
:root {
  /* Core Palette */
  --primary: #5f084b; /* Deep Purple */
  --primary-dark: #3a052e; /* Darker shade of primary for hover */
  --secondary: #121212; /* Black */
  --accent: #fe9bba; /* Pink */

  /* Neutral scale */
  --bg-body: #f9f9f9; /* Very light cool gray for body */
  --bg-surface: #feffff; /* User provided white */
  --bg-input: #f3f4f6;

  --text-main: #121212; /* User provided black */
  --text-muted: #685259; /* User provided taupe */

  /* Accents (Derived or complementary) */
  --accent-mint: #e0f2f1; /* Keep generic for variety or replace if needed */
  --accent-purple: #f3e5f5;
  --accent-rose: #fce4ec;

  /* Elevation & Depth */
  --shadow-sm: 0 1px 2px 0 rgba(95, 8, 75, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(95, 8, 75, 0.1),
    0 2px 4px -1px rgba(95, 8, 75, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(95, 8, 75, 0.1),
    0 4px 6px -2px rgba(95, 8, 75, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(95, 8, 75, 0.1),
    0 10px 10px -5px rgba(95, 8, 75, 0.04);

  /* Typography - LUXURY FONTS */
  --font-sans: "Cardo", "Inter", Georgia, serif; /* Elegant serif for body */
  --font-heading: "Comic Neue", "Poppins", sans-serif; /* Playful yet sophisticated */

  /* Borders */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  /* Subtle dot pattern like reference */
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Typography Hierarchy - LUXURY */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  font-weight: 700;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1.0625rem;
}

/* Fixed Stat Banner */
.stat-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fe9bba 0%, #ff85a3 100%);
  color: #121212;
  padding: 0.875rem 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(254, 155, 186, 0.3);
}

.stat-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-banner .stat-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-banner .stat-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: italic;
}

/* Add padding to body to account for fixed banner */
body {
  padding-top: 60px;
}

/* Buttons & CTAs */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #00c853 0%,
    #00a843 100%
  ); /* Green gradient */
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
  border-radius: var(--radius-full); /* Fully rounded pill shape */
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.5);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-main);
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  transition: color 0.2s;
}
.btn-secondary:hover {
  color: var(--primary);
}
.btn-secondary i {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Section */
.hero-section {
  padding: 0 0 2rem; /* Reduced for mobile */
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 4rem 0 2rem;
  }
}

/* Animated gradient beams */
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(95, 8, 75, 0.03) 50%,
    transparent 70%
  );
  animation: beamRotate 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes beamRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Stat Badge - Eye-catching statistic */
.stat-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(254, 155, 186, 0.15),
    rgba(95, 8, 75, 0.1)
  );
  border: 2px solid rgba(254, 155, 186, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 0.15rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--text-main);
  text-shadow: 0 2px 10px rgba(254, 155, 186, 0.3);
}

.hero-content h1 {
  font-size: 1.75rem; /* Larger for impact */
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.hero-subheadline {
  font-size: 1.1875rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}

.hero-subheadline strong {
  color: var(--primary);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 2rem; /* Increased top margin */
}

/* Add subtle animation to CTA */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
  }
  50% {
    box-shadow: 0 6px 30px rgba(0, 200, 83, 0.6);
  }
}

.hero-cta-group .btn-primary {
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-guarantee {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.cta-guarantee span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-media {
  margin-top: 4rem;
  position: relative;
  border-radius: var(--radius-lg);
}

.media-container {
  background: var(--bg-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; /* Top rounded only like tablet popping up */
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0 1rem;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.mockup-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius-lg);
}

/* Sections Common */
.how-it-works,
.target-audience,
.what-you-get,
.social-proof,
.faq-section,
.final-cta {
  padding: 3rem 0; /* Reduced for mobile */
}

/* Increase padding on larger screens */
@media (min-width: 768px) {
  .how-it-works,
  .target-audience,
  .what-you-get,
  .social-proof,
  .faq-section,
  .final-cta {
    padding: 5rem 0;
  }
}

.how-it-works {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-input);
}

/* Emotional Section - Dark Background */
.emotional-section {
  background: #121212;
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .emotional-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Image Collage Side */
.emotional-images {
  position: relative;
}

.image-collage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.collage-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.brand-text {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* Content Side */
.emotional-content {
  text-align: left;
}

.emotional-content h2 {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: white;
  text-align: left;
  font-weight: 700;
}

.emotional-highlight {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.emotional-cta-text {
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  color: white;
  font-weight: 600;
}

.btn-emotional {
  display: inline-block;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.125rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-emotional:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .emotional-content h2 {
    font-size: 1.75rem;
    text-align: center;
  }

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

  .brand-text {
    display: none;
  }
  }
}

/* Small Habits Section - Light Background */
.habits-section {
  background: #FFF5F8; /* Soft pink background */
  padding: 5rem 0;
  position: relative;
}

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

@media (min-width: 768px) {
  .habits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Content Side */
.habits-content {
  text-align: left;
}

.habits-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  text-align: left;
  font-weight: 700;
}

.habits-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.habits-intro strong {
  color: var(--primary);
  font-weight: 600;
}

.habits-highlight {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-weight: 400;
}

.habits-highlight strong {
  color: var(--secondary);
  font-weight: 700;
}

.habits-cta-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--text-main);
}

.habits-cta-text strong {
  color: #00C853;
  font-weight: 700;
}

.btn-habits {
  display: inline-block;
  background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.125rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-habits:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00A843 0%, #008833 100%);
}

/* Image Side */
.habits-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.planner-showcase {
  position: relative;
  max-width: 450px;
}

.showcase-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 32px 0 32px 0;
}

.page-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #FE9BBA;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 15px rgba(254, 155, 186, 0.4);
}

.brand-label {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(95, 8, 75, 0.15);
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .habits-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .habits-content {
    text-align: center;
  }
  
  .brand-label {
    display: none;
  }
  
  .page-badge {
    width: 70px;
    height: 70px;
    font-size: 0.75rem;
  }
}

/* Results Section */
.results-section {
  background: white;
  padding: 5rem 0;
  text-align: center;
}

.results-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary);
  font-weight: 700;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.results-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.results-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.results-cta {
  margin-top: 2rem;
}

.btn-results {
  display: inline-block;
  background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.125rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-results:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00A843 0%, #008833 100%);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .results-section h2 {
    font-size: 2rem;
  }
}

/* Target Audience Section */
.target-section {
  background: #FFF5F8;
  padding: 5rem 0;
  text-align: center;
}

.target-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary);
  font-weight: 700;
}

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

@media (min-width: 768px) {
  .target-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.target-card {
  background: #121212;
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.target-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.target-card p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: white;
  margin: 0;
}

/* Testimonials Dark Section */
.testimonials-dark {
  background: #121212;
  color: white;
  padding: 5rem 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-dark h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 1.375rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.testimonials-description {
  font-size: 1.125rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.testimonials-description strong {
  color: white;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.testimonial-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-testimonials {
  display: inline-block;
  background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.125rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-testimonials:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00A843 0%, #008833 100%);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .target-section h2,
  .testimonials-dark h2 {
    font-size: 2rem;
  }
  
  .testimonials-subtitle {
    font-size: 1.125rem;
  }
}

/* Bonus Books Section */
.bonus-books-section {
  background: #121212;
  padding: 5rem 0;
  color: white;
}

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

@media (min-width: 768px) {
  .bonus-books-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.bonus-books-visual h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #FE9BBA;
  font-weight: 700;
  line-height: 1.2;
}

.bonus-mockup {
  position: relative;
}

.bonus-mockup img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bonus-books-card {
  background: white;
  color: var(--text-main);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bonus-books-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.bonus-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.bonus-description strong {
  color: var(--primary);
  font-weight: 600;
}

.bonus-highlight {
  background: linear-gradient(135deg, #FFF5F8, #FFE8F0);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 2rem;
  border-left: 4px solid #FE9BBA;
}

.bonus-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #FE9BBA;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bonus-text {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bonus-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.bonus-features li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-main);
  border-bottom: 1px solid #f0f0f0;
}

.bonus-features li:last-child {
  border-bottom: none;
}

.btn-bonus-books {
  display: inline-block;
  width: 100%;
  background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.125rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.btn-bonus-books:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00A843 0%, #008833 100%);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .bonus-books-visual h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .bonus-mockup {
    text-align: center;
  }
  
  .bonus-books-card {
    padding: 2rem 1.5rem;
  }
  
  .bonus-number {
    font-size: 2rem;
  }
}

.steps-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.step-card {
  padding: 2rem;
  background: var(--bg-body);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.step-card:hover {
  border-color: var(--accent);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

/* Audience Section */
.target-audience {
  background: var(--bg-body);
}

.audience-grid {
  display: grid;
  gap: 1.5rem;
}

.audience-card {
  background: var(--bg-surface);
  padding: 2rem 1.5rem; /* Adjusted for mobile */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Card accent bar */
.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

@media (min-width: 768px) {
  .audience-card {
    padding: 2.5rem 2rem;
  }
}

/* Card icon styling */
.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(95, 8, 75, 0.1),
    rgba(95, 8, 75, 0.05)
  );
  color: var(--primary);
}

.card-icon svg,
.card-icon i {
  width: 2rem;
  height: 2rem;
}

/* Card title */
.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--secondary);
  font-weight: 600;
}

/* List styling */
.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.audience-card ul li:last-child {
  margin-bottom: 0;
}

.audience-card i,
.audience-card svg {
  color: #00c853; /* Green checkmarks */
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
}

/* 3D Hover Effect (Desktop Only) */
@media (hover: hover) and (pointer: fine) {
  .audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(95, 8, 75, 0.1);
  }
}

/* Planners List */
.planners-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.planner-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
}

/* Hover Effect (Desktop Only) */
@media (hover: hover) and (pointer: fine) {
  .planner-card:hover {
    transform: translateY(-4px);
  }

  .planner-card:hover .planner-mockup {
    box-shadow: var(--shadow-xl);
  }
}

.planner-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.planner-info h3 svg {
  color: var(--primary);
}

.planner-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.planner-info li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.6;
}

/* Pink heart bullets like reference */
.planner-info li::before {
  content: "❤";
  position: absolute;
  left: 0;
  top: 0;
  color: #fe9bba;
  font-size: 1.25rem;
  line-height: 1.4;
}

.planner-mockup {
  background: var(--bg-input);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.planner-mockup .mockup-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--primary);
}

/* Gradients/Special Styling for Mockups removed for cleaner look, kept simple bg-input */

/* Bonus */
.bonus-exclusive {
  background: var(--accent-mint);
  text-align: center;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .bonus-exclusive {
    padding: 5rem 0;
  }
}

.bonus-box {
  margin-top: 2rem;
  background-color: #f0fdf4;
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem; /* Reduced for mobile */
  text-align: center;
}

@media (min-width: 768px) {
  .bonus-box {
    padding: 2rem;
  }
}

.bonus-title {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .bonus-title {
    font-size: 1.1rem;
  }
}

.bonus-card {
  background: white;
  padding: 2rem 1.5rem; /* Reduced for mobile */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bonus-card {
    padding: 3rem 2rem;
  }
}

.bonus-badge {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin: 1rem 0;
}

/* Testimonials */
.social-proof {
  background: var(--bg-body);
  overflow: hidden;
}

/* Animated Carousel */
.testimonials-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

/* Pause on hover (desktop only) */
@media (hover: hover) {
  .testimonials-track:hover {
    animation-play-state: paused;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

.testimonial-card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.rating {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* Offer Section - DARK THEME */
.offer-section {
  background: #121212; /* Dark background for emphasis */
  padding: 5rem 0;
}

.offer-card {
  background: #1e1e1e; /* Slightly lighter than section */
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  border: 2px solid rgba(254, 155, 186, 0.2); /* Pink border */
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fe9bba; /* Pink badge */
  color: #121212;
  padding: 0.625rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8125rem;
  box-shadow: 0 4px 20px rgba(254, 155, 186, 0.4);
  white-space: nowrap;
  letter-spacing: 0.025em;
}

.offer-card h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  color: white; /* White text on dark */
}

.offer-list {
  text-align: left;
  margin: 0 auto 2.5rem;
  max-width: 100%;
  padding: 0;
  list-style: none;
}

.offer-list li {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator on dark */
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255, 255, 255, 0.9); /* Light text */
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
}

/* Custom pink checkmark bullets */
.offer-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fe9bba;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(254, 155, 186, 0.3);
}

.offer-list li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  color: #121212;
  font-weight: 700;
  font-size: 0.875rem;
}

.offer-list li:last-child {
  border-bottom: none;
}

.offer-list i,
.offer-list svg {
  display: none; /* Hide lucide icons, use custom bullets */
}

.price-container {
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 2px solid var(--bg-input);
  border-bottom: 2px solid var(--bg-input);
  text-align: center; /* Center all price text */
}

.price-old {
  text-decoration: line-through;
  color: var(--accent-rose);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.price-new {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00c853; /* Vibrant green for price */
  line-height: 1;
  margin: 0.75rem 0;
  display: block;
}

.price-sub {
  display: block;
  color: var(--accent-rose);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0 0.5rem;
}

.guarantee-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--accent-rose);
  white-space: nowrap;
}

.guarantee-badges i,
.guarantee-badges svg {
  width: 16px;
  height: 16px;
  color: #00c853; /* Green icons */
}

.cta-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #00c853 0%,
    #00a843 100%
  ); /* Green gradient */
  color: white;
  font-weight: 700;
  padding: 1.125rem 2.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3); /* Green shadow */
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.4;
}

.cta-button:hover {
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.offer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-input);
}

.offer-footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.5rem 0;
  text-align: center;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .offer-card {
    padding: 4rem 3rem 3rem;
  }

  .offer-card h2 {
    font-size: 2rem;
  }

  .price-new {
    font-size: 4.5rem;
  }

  .cta-button {
    max-width: 450px;
    font-size: 1.0625rem;
  }

  .guarantee-badges {
    gap: 1.5rem;
  }
}

/* Guarantee */
.guarantee-section {
  background: var(--accent-mint);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .guarantee-section {
    padding: 5rem 0;
  }
}

.guarantee-box {
  background: var(--bg-surface);
  border: 2px dashed var(--primary);
  padding: 2rem 1.5rem; /* Reduced for mobile */
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .guarantee-box {
    padding: 3rem;
  }
}

.guarantee-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.guarantee-highlight {
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
  display: block;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--bg-input);
}
.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-main);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: max-height 0.3s ease;
}
.faq-answer.open {
  padding-bottom: 1.5rem;
  max-height: 300px;
}

/* Final CTA - DARK THEME */
.final-cta {
  background: #121212; /* Dark background */
  color: white;
  text-align: center;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .final-cta {
    padding: 5rem 0;
  }
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .cta-button {
  background: #fe9bba; /* Pink CTA on dark */
  color: #121212;
  font-weight: 700;
}

.final-cta .cta-button:hover {
  background: #ff85a3;
  box-shadow: 0 6px 25px rgba(254, 155, 186, 0.5);
}

/* Footer */
footer {
  background: white;
  padding: 4rem 0;
  border-top: 1px solid var(--bg-input);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-col h3 {
  color: var(--text-main);
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-input);
  text-align: center;
}

/* Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 8, 75, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(95, 8, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(95, 8, 75, 0);
  }
}
.pulse-animation {
  animation: pulse 2s infinite;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .testimonials-track {
    animation: none;
  }

  .hero-section::before {
    animation: none;
  }
}

/* Responsiveness */
@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: flex;
  }

  .hero-cta-group {
    flex-direction: row;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .planner-card {
    grid-template-columns: 1fr 1fr;
  }
  .planner-card:nth-child(even) {
    direction: rtl;
  }
  .planner-card:nth-child(even) .planner-info {
    direction: ltr;
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .container {
    width: 100%;
  }
}
