:root {
    --rose: #C2185B;
    --rose-light: #FCE4EC;
    --rose-mid: #E91E8C;
    --blush: #F8BBD9;
    --cream: #FFF8F5;
    --warm: #FFF3E0;
    --gold: #D4A017;
    --gold-light: #FFF8E1;
    --purple: #6A1B9A;
    --purple-light: #F3E5F5;
    --dark: #2C1A1D;
    --text: #3D2B2E;
    --muted: #7A5C62;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #fff0f5 0%, #fce4ec 40%, #f8e1f4 70%, #ede7f6 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(194,24,91,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(106,27,154,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .petal {
    position: absolute;
    font-size: 1.4rem;
    opacity: 0.18;
    animation: floatPetal linear infinite;
  }

  @keyframes floatPetal {
    0% { transform: translateY(-80px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.18; }
    90% { opacity: 0.18; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
  }

  .hero-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(194,24,91,0.08);
    border: 1px solid rgba(194,24,91,0.2);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--rose);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 12px;
    animation: fadeInUp 0.9s 0.1s ease both;
  }

  .hero-title em {
    font-style: italic;
    color: var(--rose);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 36px;
    animation: fadeInUp 1s 0.2s ease both;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp 1.1s 0.3s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--rose) 0%, #ad1457 100%);
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(194,24,91,0.3);
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(194,24,91,0.4);
  }

  .price-tag {
    font-size: 1.3rem;
    font-weight: 300;
  }

  .hero-note {
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
  }

  /* Book mockup */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s 0.2s ease both;
  }

  .book-wrap {
    position: relative;
  }

  .book {
    width: 280px;
    height: 380px;
    background: linear-gradient(145deg, #fff0f5 0%, #fce4ec 50%, #f3e5f5 100%);
    border-radius: 4px 16px 16px 4px;
    box-shadow:
      -8px 0 0 rgba(194,24,91,0.2),
      -16px 0 0 rgba(194,24,91,0.1),
      0 20px 60px rgba(44,26,29,0.2),
      4px 4px 0 rgba(255,255,255,0.8) inset;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transform: perspective(800px) rotateY(-8deg) rotateX(2deg);
    transition: transform 0.5s ease;
  }

  .book:hover {
    transform: perspective(800px) rotateY(-4deg) rotateX(1deg);
  }

  .book::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose), var(--purple));
  }

  .book-decoration {
    position: absolute;
    top: 50%; right: 20px;
    transform: translateY(-50%);
    font-size: 6rem;
    opacity: 0.07;
    color: var(--rose);
  }

  .book-brand {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 600;
  }

  .book-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
  }

  .book-title em {
    font-style: italic;
    color: var(--rose);
  }

  .book-author {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
  }

  .book-hearts {
    position: absolute;
    bottom: 80px; right: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.4;
  }

  .float-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatBadge 4s ease-in-out infinite;
  }

  .float-badge-1 {
    top: -20px; right: -30px;
    color: var(--rose);
    animation-delay: 0s;
  }

  .float-badge-2 {
    bottom: 30px; left: -40px;
    color: var(--purple);
    animation-delay: 2s;
  }

  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* ===== TRUST BAR ===== */
  .trust-bar {
    background: white;
    padding: 24px 40px;
    border-top: 1px solid rgba(194,24,91,0.08);
    border-bottom: 1px solid rgba(194,24,91,0.08);
  }

  .trust-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .trust-item span:first-child {
    font-size: 1.3rem;
  }

  /* ===== SECTION BASE ===== */
  section {
    padding: 90px 40px;
  }

  .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 20px;
  }

  .section-title em {
    font-style: italic;
    color: var(--rose);
  }

  .section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 680px;
  }

  /* ===== PAIN SECTION ===== */
  .pain-section {
    background: var(--cream);
  }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .pain-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(194,24,91,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .pain-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .pain-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(194,24,91,0.1); }
  .pain-card:hover::before { transform: scaleX(1); }

  .pain-icon { font-size: 2rem; margin-bottom: 12px; }
  .pain-text { font-size: 0.95rem; line-height: 1.65; color: var(--text); }

  /* ===== QUOTE SECTION ===== */
  .quote-section {
    background: linear-gradient(135deg, var(--rose) 0%, #880e4f 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }

  .quote-section::before {
    content: '❝';
    position: absolute;
    top: -30px; left: 40px;
    font-size: 16rem;
    color: rgba(255,255,255,0.05);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    pointer-events: none;
  }

  .quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .big-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: white;
    line-height: 1.4;
    margin-bottom: 28px;
  }

  .quote-author {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
  }

  /* ===== WHAT'S INSIDE ===== */
  .inside-section { background: white; }

  .chapters {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .chapter {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(194,24,91,0.08);
    align-items: start;
    transition: all 0.3s ease;
  }

  .chapter:last-child { border-bottom: none; }
  .chapter:hover { padding-left: 8px; }

  .chapter-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--rose-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--rose);
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .chapter:hover .chapter-num {
    background: var(--rose);
    color: white;
  }

  .chapter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 6px;
  }

  .chapter-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ===== FOR WHOM ===== */
  .forwhom-section {
    background: var(--purple-light);
  }

  .checkmarks {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    border-left: 4px solid var(--purple);
    transition: transform 0.2s ease;
  }

  .check-item:hover { transform: translateX(4px); }

  .check-icon {
    width: 28px; height: 28px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .check-text {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.6;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section { background: var(--cream); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(194,24,91,0.06);
  }

  .testimonial-card::before {
    content: '❤';
    position: absolute;
    top: 20px; right: 22px;
    font-size: 1.1rem;
    opacity: 0.2;
    color: var(--rose);
  }

  .stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .testimonial-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ===== AUTHOR ===== */
  .author-section {
    background: white;
  }

  .author-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: center;
  }

  .author-photo-wrap {
    position: relative;
  }

  .author-photo {
    width: 220px; height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--purple-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 6px solid white;
    box-shadow: 0 0 0 3px var(--blush), 0 20px 60px rgba(194,24,91,0.15);
    position: relative;
    overflow: hidden;
  }

  .author-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
  }

  .author-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 6px;
  }

  .author-role {
    font-size: 0.85rem;
    color: var(--rose);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .author-bio {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--muted);
  }

  .author-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  .tool-tag {
    background: var(--rose-light);
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
  }

  /* ===== PURCHASE ===== */
  .purchase-section {
    background: linear-gradient(160deg, #fff0f5 0%, #fce4ec 50%, #f3e5f5 100%);
    padding: 100px 40px;
  }

  .purchase-card {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 60px 56px;
    box-shadow: 0 30px 80px rgba(194,24,91,0.12), 0 0 0 1px rgba(194,24,91,0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .purchase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--rose), var(--purple));
  }

  .purchase-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .purchase-subtitle {
    color: var(--muted);
    font-size: 0.97rem;
    margin-bottom: 36px;
    line-height: 1.6;
  }

  .price-display {
    margin: 36px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
  }

  .price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--rose);
    line-height: 1;
  }

  .price-currency {
    font-size: 1.8rem;
    color: var(--rose);
    font-weight: 300;
  }

  .price-once {
    font-size: 0.85rem;
    color: var(--muted);
    display: block;
    margin-top: 6px;
  }

  .price-old {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
  }

  .price-strikethrough {
    font-size: 1.6rem;
    color: #b0a0a3;
    text-decoration: line-through;
    text-decoration-color: var(--rose);
    text-decoration-thickness: 2px;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
  }

  .price-save-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #e6900a 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212,160,23,0.35);
    animation: pulseBadge 2s ease-in-out infinite;
  }

  @keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .price-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
  }

  /* Email form */
  .email-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }

  .form-group {
    text-align: left;
  }

  .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid rgba(194,24,91,0.15);
    border-radius: 16px;
    font-family: 'Jost', sans-serif;
    font-size: 0.97rem;
    color: var(--text);
    background: var(--cream);
    transition: all 0.3s ease;
    outline: none;
  }

  .form-input:focus {
    border-color: var(--rose);
    background: white;
    box-shadow: 0 0 0 4px rgba(194,24,91,0.07);
  }

  .form-input::placeholder { color: #b0a0a3; }

  .includes-list {
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
  }

  .include-item::before {
    content: '✓';
    width: 22px; height: 22px;
    background: var(--rose-light);
    color: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .secure-note {
    font-size: 0.78rem;
    color: #b0a0a3;
    margin-top: 16px;
  }

  /* ===== FAQ ===== */
  .faq-section { background: white; }

  .faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq-item {
    border-bottom: 1px solid rgba(194,24,91,0.08);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 22px 0;
    font-family: 'Jost', sans-serif;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s ease;
  }

  .faq-question:hover { color: var(--rose); }

  .faq-arrow {
    width: 28px; height: 28px;
    background: var(--rose-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .faq-item.open .faq-arrow { background: var(--rose); color: white; transform: rotate(45deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
  }

  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark);
    padding: 50px 40px;
    text-align: center;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    margin-bottom: 8px;
  }

  .footer-url {
    font-size: 0.85rem;
    color: var(--rose);
    margin-bottom: 24px;
  }

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
  }

  /* ===== STICKY CTA ===== */
  .sticky-cta {
    position: fixed;
    bottom: 24px; right: 24px;
    background: var(--rose);
    color: white;
    padding: 14px 24px;
    border-radius: 60px;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(194,24,91,0.4);
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
  }

  .sticky-cta.visible { opacity: 1; transform: translateY(0); }
  .sticky-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(194,24,91,0.5); }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-badge { justify-content: center; }
    .hero-visual { order: -1; }
    .book { width: 220px; height: 300px; }
    .author-inner { grid-template-columns: 1fr; text-align: center; }
    .author-photo { margin: 0 auto; }
    .author-tools { justify-content: center; }
    .purchase-card { padding: 40px 28px; }
    section { padding: 70px 24px; }
    .trust-inner { gap: 24px; }
    .float-badge-1 { display: none; }
    .float-badge-2 { display: none; }
  }