:root {
  --rose: #E8526A;
  --rose-light: #F28090;
  --rose-dark: #C93A54;
  --blush: #FDE8EC;
  --cream: #FFF8F5;
  --brown: #3D1A1E;
  --brown-soft: #6B3A40;
  --gold: #D4A054;
  --white: #FFFFFF;
  --gray: #8A7070;
  --light-gray: #F5EFED;
  --green: #2ECC71;
  --green-light: #E8F8F0;
  --font-family: 'DM Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Utility - Hidden */
.hidden {
  display: none !important;
}

/* STICKY CTA BAR (with reveal animation) */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--rose);
  padding: 14px 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(232, 82, 106, 0.25);
  
  /* Initial hidden state, controlled by JS class */
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-bar span {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.sticky-bar a {
  background: white;
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.sticky-bar a:hover {
  background-color: var(--blush);
  transform: translateY(-2px);
}

.sticky-bar a:active {
  transform: translateY(0);
}

/* HERO */
.hero {
  background: linear-gradient(160deg, #FDE8EC 0%, #FFF0F3 60%, #FFF8F5 100%);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 82, 106, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 160, 84, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.badge {
  display: inline-block;
  background: var(--rose);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* Pre-headline style */
.pre-headline {
  display: inline-block;
  background: var(--blush);
  color: var(--brown);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(232, 82, 106, 0.18);
}

.pre-headline span {
  display: inline;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  color: #cc3c56;
  margin-bottom: 20px;
}

.hero h1 span.highlight {
  color: var(--rose);
  font-style: italic;
  font-weight: 900;
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown-soft);
  max-width: 480px;
  margin: 0 auto 36px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown-soft);
  margin-bottom: 24px;
  max-width: 540px;
}

/* Hero bullets list */
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.hero-bullets li {
  font-size: 15px;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.bullet-check {
  color: var(--rose);
  font-weight: 700;
  font-size: 16px;
}

.hero-cta-wrapper {
  width: 100%;
}

.btn-main {
  display: block;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(232, 82, 106, 0.35);
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(232, 82, 106, 0.45);
}

.btn-main:active {
  transform: translateY(1px);
}

.btn-main .price-tag {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 4px;
}

.secure-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.secure-note-small {
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.85;
}

/* 3D Mockup in Hero */
.book-viewport-hero {
  perspective: 1200px;
  width: 240px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.book-container-hero {
  transform-style: preserve-3d;
  width: 170px;
  height: 250px;
  transform: rotateY(-25deg) rotateX(10deg) rotateZ(-2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-container-hero:hover {
  transform: rotateY(-10deg) rotateX(5deg) rotateZ(0deg) scale(1.03);
}

.book-hero {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.book-side-hero {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--rose-dark);
}

.book-side-hero.front-hero {
  width: 170px;
  height: 250px;
  transform: rotateY(0deg) translateZ(12px);
  border-radius: 2px 6px 6px 2px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 2;
}

.book-side-hero.front-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-side-hero.spine-hero {
  width: 24px;
  height: 250px;
  transform: rotateY(-90deg) translateZ(12px);
  background: linear-gradient(90deg, var(--rose-dark) 0%, #a82e44 100%);
  border-radius: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.spine-text-hero {
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(90deg);
  white-space: nowrap;
  width: 250px;
  text-align: center;
  opacity: 0.9;
}

.book-side-hero.right-page-hero {
  width: 165px;
  height: 244px;
  transform: rotateY(0deg) translateZ(-12px) translateX(3px);
  background: #fbfbfb;
  border: 1px solid #e2e2e2;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.08);
  background-image: linear-gradient(90deg, #fbfbfb 95%, #e0e0e0 100%);
  z-index: 0;
}

/* Hero Columns Layout */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-col-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dep-site-hero-img {
  max-width: 100%;
  height: auto;
  margin: 10px auto 16px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(61, 26, 30, 0.08);
}

.hero-col-right {
  display: none;
}

.hero-mockup-mobile {
  display: block;
  margin: 10px auto 25px;
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 20px 30px;
  }
  .pre-headline {
    margin-bottom: 12px;
    line-height: 1.4;
    padding: 8px 16px;
    border-radius: 20px;
    max-width: 290px;
  }
  .pre-headline span {
    display: block;
  }
  .hero h1 {
    margin-bottom: 16px;
  }
  .hero-subtitle {
    margin-bottom: 18px;
  }
  .hero-cta-first {
    margin-bottom: 8px;
  }
  .hero-confidence {
    margin-bottom: 12px;
    margin-top: 0;
  }
  .hero-mockup-mobile {
    margin: 5px auto;
    transform: scale(0.75);
    transform-origin: center;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-bullets {
    align-self: center;
    max-width: 320px;
    margin: 0 auto 18px;
  }
  .hero-cta-second {
    margin-bottom: 8px;
  }
  .hero-support {
    margin-top: 0;
  }
}

/* Desktop overrides */
@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 50px;
  }
  
  .hero-col-left {
    flex: 1;
    align-items: flex-start;
  }
  
  .hero-col-right {
    display: block;
    flex: 0 0 300px;
    position: relative;
  }
  
  .hero-col-right::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232, 82, 106, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
  }

  .book-viewport-hero {
    position: relative;
    z-index: 1;
  }
  
  .hero-mockup-mobile {
    display: none;
  }

  .hero-bullets {
    align-self: flex-start;
    order: 5;
    margin-bottom: 30px;
  }
  
  .hero-subtitle {
    text-align: left;
    order: 4;
  }
  
  .pre-headline {
    order: 1;
  }
  
  .hero h1 {
    order: 2;
  }

  .dep-site-hero-img {
    order: 3;
    margin: 15px 0;
    align-self: flex-start;
  }
  
  .hero-cta-first {
    order: 6;
    align-self: flex-start;
    margin: 0 0 16px 0;
  }
  
  .hero-confidence {
    order: 7;
    align-self: flex-start;
    margin: 0 0 16px 0;
    justify-content: flex-start;
    text-align: left;
  }
  
  .hero-support {
    order: 8;
    align-self: flex-start;
    margin: 0;
    justify-content: flex-start;
    text-align: left;
  }
  
  .hero-cta-second {
    display: none !important;
  }
}

/* PAIN SECTION */
.pain {
  background: var(--brown);
  padding: 70px 24px;
  color: white;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 12px;
  display: block;
}

.pain h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  color: white;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.pain-list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--rose);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.3s;
}

.pain-list li:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pain-affirm {
  background: rgba(232, 82, 106, 0.12);
  border: 1px solid rgba(232, 82, 106, 0.25);
  border-radius: 16px;
  padding: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.pain-affirm strong {
  color: var(--rose-light);
  font-style: normal;
}

/* PRODUCT SECTION */
.product {
  padding: 80px 24px;
  background: var(--cream);
}

.product h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 38px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--brown);
}

.product h2 span {
  color: var(--rose);
}

.product .sub {
  font-size: 16px;
  color: var(--brown-soft);
  margin-bottom: 40px;
  line-height: 1.6;
}

.ebook-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(61, 26, 30, 0.06);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

/* 3D EBOOK COVER SCENE */
.ebook-cover-wrapper {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(232, 82, 106, 0.1);
  overflow: hidden;
}

.book-viewport {
  perspective: 1200px;
  width: 220px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-container {
  transform-style: preserve-3d;
  width: 170px;
  height: 250px;
  transform: rotateY(-25deg) rotateX(10deg) rotateZ(-2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-container:hover {
  transform: rotateY(-10deg) rotateX(5deg) rotateZ(0deg) scale(1.03);
}

.book {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.book-side {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--rose-dark);
}

.book-side.front {
  width: 170px;
  height: 250px;
  transform: rotateY(0deg) translateZ(12px);
  border-radius: 2px 6px 6px 2px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 2;
}

.book-side.spine {
  width: 24px;
  height: 250px;
  transform: rotateY(-90deg) translateZ(12px);
  background: linear-gradient(90deg, var(--rose-dark) 0%, #a82e44 100%);
  border-radius: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.spine-text {
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(90deg);
  white-space: nowrap;
  width: 250px;
  text-align: center;
  opacity: 0.9;
}

.book-side.right-page {
  width: 165px;
  height: 244px;
  transform: rotateY(0deg) translateZ(-12px) translateX(3px);
  background: #fbfbfb;
  border: 1px solid #e2e2e2;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.08);
  /* Pages edge simulation styling */
  background-image: linear-gradient(90deg, #fbfbfb 95%, #e0e0e0 100%);
  z-index: 0;
}

/* Ebook cover layout inside front */
.ebook-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px 6px 6px 2px;
}

/* Checkmarks layout */
.checkmarks {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--brown);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--blush);
  color: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--light-gray);
  padding: 70px 24px;
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--brown);
  line-height: 1.3;
}

.testimonials h2 span {
  color: var(--rose);
}

.testi-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(61, 26, 30, 0.04);
  position: relative;
  transition: transform 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-3px);
}

.testi-card::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--blush);
  position: absolute;
  top: -15px;
  left: 20px;
  line-height: 1;
  opacity: 0.8;
  pointer-events: none;
}

.testi-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown-soft);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(232, 82, 106, 0.2);
  overflow: hidden;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--brown);
}

.testi-info {
  font-size: 12px;
  color: var(--gray);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  margin-top: 2px;
}

/* OFFER */
.offer {
  padding: 80px 24px;
  background: white;
  text-align: center;
}

.offer h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brown);
}

.offer .sub {
  color: var(--brown-soft);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.price-box {
  background: linear-gradient(135deg, #FDE8EC 0%, #FFF0F3 100%);
  border: 2px dashed var(--rose-light);
  border-radius: 28px;
  padding: 36px 24px;
  margin-bottom: 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 20px rgba(232, 82, 106, 0.05);
}

.price-old {
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.price-new {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 8px;
}

.price-new sup {
  font-size: 24px;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.price-label {
  font-size: 13px;
  color: var(--brown-soft);
  margin-bottom: 28px;
  font-weight: 500;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F0FFF4;
  border: 1px solid #A8E6B0;
  border-radius: 16px;
  padding: 18px;
  margin: 28px auto;
  max-width: 380px;
  text-align: left;
}

.guarantee-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--brown-soft);
}

.guarantee-text strong {
  color: var(--brown);
}

/* URGENCY */
.urgency {
  background: var(--rose);
  padding: 50px 24px;
  text-align: center;
  color: white;
}

.urgency h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.urgency p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 24px;
}

.btn-white {
  display: block;
  background: white;
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 16px;
  text-decoration: none;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.btn-white:active {
  transform: translateY(1px);
}

/* FAQ Accordion Styles */
.faq {
  padding: 70px 24px;
  background: var(--cream);
}

.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--brown);
}

.faq-container {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(61, 26, 30, 0.08);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  color: var(--brown);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  outline: none;
}

.faq-question::before {
  content: '?';
  background: var(--rose);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-question span {
  flex-grow: 1;
}

.faq-toggle-icon {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding-bottom: 20px;
  padding-left: 38px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown-soft);
}

/* FOOTER */
.footer {
  background: var(--brown);
  padding: 70px 24px 100px;
  text-align: center;
  color: white;
}

.footer h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.footer h2 em {
  color: var(--rose-light);
  font-style: italic;
}

.footer p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.6;
}

.footer .btn-main {
  max-width: 360px;
  margin: 0 auto 20px;
}

.footer-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}



/* ANIMATIONS & TRANSITIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero > * {
  animation: fadeUp 0.6s ease both;
}

.hero .badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.3s; }
.hero .btn-main { animation-delay: 0.4s; }
.hero .secure-note { animation-delay: 0.5s; }

/* Pulse on CTA */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(232, 82, 106, 0.35);
  }
  50% {
    box-shadow: 0 8px 40px rgba(232, 82, 106, 0.65);
    transform: scale(1.01);
  }
}

.hero .btn-main,
.offer .btn-main,
.footer .btn-main {
  animation: pulse 2.5s ease-in-out infinite;
}

.hero .btn-main:active,
.offer .btn-main:active,
.footer .btn-main:active {
  animation: none;
}

/* Scroll reveal class defaults */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Style for ebook title inside price-box */
.price-box h3 {
  font-family: var(--font-family);
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 15px;
  font-weight: 700;
}

/* Mobile-only fixed bottom CTA */
.mobile-sticky-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 20px rgba(61, 26, 30, 0.08);
  border-top: 1px solid rgba(232, 82, 106, 0.1);
  
  /* Initial hidden state, controlled by JS class */
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-mobile-sticky {
  display: block;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  border: none;
  box-shadow: 0 4px 15px rgba(232, 82, 106, 0.3);
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s ease-in-out infinite;
}

.btn-mobile-sticky:active {
  transform: translateY(1px);
  animation: none;
}

/* Hide desktop sticky bar on mobile and display mobile sticky btn instead */
@media (max-width: 767px) {
  .sticky-bar {
    display: none !important;
  }
  .mobile-sticky-btn {
    display: block;
  }
}

/* Media Query breakpoints */
@media (min-width: 768px) {
  .hero {
    padding: 100px 24px 80px;
  }
  
  .hero p {
    max-width: 600px;
  }
  
  .pain, .product, .testimonials, .offer, .faq, .footer {
    padding: 90px 48px;
  }
  
  .pain h2, .product h2, .testimonials h2, .offer h2, .faq h2, .footer h2 {
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-label {
    text-align: center;
  }
  
  .pain-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pain-affirm {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .ebook-card {
    flex-direction: row;
    align-items: stretch;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .ebook-cover-wrapper {
    flex: 0 0 280px;
    padding: 40px;
    border-bottom: none;
    border-right: 1px solid rgba(232, 82, 106, 0.1);
  }
  
  .book-viewport {
    width: 200px;
    height: 270px;
  }
  
  .book-container {
    width: 150px;
    height: 220px;
  }
  
  .book-side.front {
    width: 150px;
    height: 220px;
  }
  
  .book-side.spine {
    height: 220px;
  }
  
  .book-side.right-page {
    width: 145px;
    height: 214px;
  }
  
  .spine-text {
    width: 220px;
  }
  
  .checkmarks {
    flex: 1;
    justify-content: center;
    padding: 40px;
  }
  
  .testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .testi-card {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 0;
  }
  
  .testi-card:last-child {
    flex: 0 0 60%;
  }
  
  .sticky-bar span {
    font-size: 15px;
  }
  
  .sticky-bar a {
    font-size: 14px;
    padding: 12px 24px;
  }
}

@media (min-width: 1024px) {
  .testimonials-container {
    flex-wrap: nowrap;
    align-items: stretch;
  }
  
  .testi-card {
    flex: 1;
  }
  
  .testi-card:last-child {
    flex: 1;
  }
}
