/* ============================================================
   BODY RESET FOR HER — body_reset_styles.css
   Upload this file to Netlify and link it from your HTML
   ============================================================ */


/* ------------------------------------------------------------
   1. RESET & BASE
   ------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #FBF7F5;
  color: #1E1A1B;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}


/* ------------------------------------------------------------
   2. UTILITIES
   ------------------------------------------------------------ */
.text-center {
  text-align: center;
}

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

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

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #C97B84, #9B5560);
  border-radius: 2px;
  margin: 0 auto 32px;
}

section {
  padding: 80px 24px;
}


/* ------------------------------------------------------------
   3. SECTION TYPOGRAPHY
   ------------------------------------------------------------ */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C97B84;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: #1E1A1B;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: #C97B84;
}

.section-body {
  font-size: 17px;
  line-height: 1.75;
  color: #6B5E60;
}


/* ------------------------------------------------------------
   4. CTA BUTTON
   ------------------------------------------------------------ */
.cta-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #C97B84 0%, #9B5560 100%);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 18px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(155, 85, 96, 0.35);
  margin-bottom: 14px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(155, 85, 96, 0.45);
}


/* ------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------ */
.hero {
  background: linear-gradient(160deg, #FBF7F5 0%, #F5E8EA 40%, #EDD8DB 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 123, 132, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 123, 132, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-20px); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-days {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C97B84;
  margin-bottom: 4px;
  animation: fadeDown 0.8s ease forwards;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  color: #1E1A1B;
  margin-bottom: 8px;
  animation: fadeDown 0.9s ease forwards;
}

.hero h1 span {
  color: #C97B84;
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: #6B5E60;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.5;
  animation: fadeDown 1.0s ease forwards;
}


/* ------------------------------------------------------------
   6. PRICE BLOCK
   ------------------------------------------------------------ */
.price-block {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 48px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(155, 85, 96, 0.15);
  position: relative;
  z-index: 2;
  animation: fadeUp 1.1s ease forwards;
  margin-left: auto;
  margin-right: auto;
}

.price-savings {
  display: inline-block;
  background: #D4EEE5;
  color: #3A7D65;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.price-original {
  font-size: 16px;
  color: #6B5E60;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: #9B5560;
  line-height: 1;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 28px;
  vertical-align: super;
  font-weight: 400;
}

.price-label {
  font-size: 13px;
  color: #6B5E60;
  margin-bottom: 24px;
}

.price-guarantee {
  font-size: 12px;
  color: #6B5E60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


/* ------------------------------------------------------------
   7. PREVIEW STRIP
   ------------------------------------------------------------ */
.preview-strip {
  background: #1E1A1B;
  color: #ffffff;
  text-align: center;
  padding: 18px 24px;
}

.preview-strip p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.preview-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.preview-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

.preview-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.preview-form input:focus {
  border-color: #E8C4C8;
}

.preview-form button {
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  background: #C97B84;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.preview-form button:hover {
  background: #9B5560;
}


/* ------------------------------------------------------------
   8. IS THIS FOR YOU
   ------------------------------------------------------------ */
.for-you {
  background: #ffffff;
}

.bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.bullet-card {
  background: #F9F0F1;
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 3px solid #C97B84;
  transition: transform 0.2s;
}

.bullet-card:hover {
  transform: translateY(-2px);
}

.bullet-icon {
  width: 28px;
  height: 28px;
  background: #C97B84;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 14px;
}

.bullet-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #1E1A1B;
}


/* ------------------------------------------------------------
   9. 3 STEPS
   ------------------------------------------------------------ */
.steps-section {
  background: linear-gradient(160deg, #F9F0F1 0%, #FBF7F5 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(155, 85, 96, 0.08);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C97B84, #9B5560);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: #E8C4C8;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1E1A1B;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6B5E60;
}


/* ------------------------------------------------------------
   10. CHAPTERS / LEARN
   ------------------------------------------------------------ */
.learn-section {
  background: #ffffff;
}

.chapters-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.chapter-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 123, 132, 0.15);
  transition: all 0.2s;
}

.chapter-item:last-child {
  border-bottom: none;
}

.chapter-item:hover {
  padding-left: 8px;
}

.chapter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #C97B84;
  background: #F9F0F1;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.chapter-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1E1A1B;
  margin-bottom: 6px;
}

.chapter-content p {
  font-size: 14px;
  line-height: 1.65;
  color: #6B5E60;
}

.chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.chapter-tag {
  font-size: 11px;
  font-weight: 600;
  color: #9B5560;
  background: #F9F0F1;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}


/* ------------------------------------------------------------
   11. RESULTS / TESTIMONIALS
   ------------------------------------------------------------ */
.results-section {
  background: #FBF7F5;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.result-card {
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.result-card.primary {
  background: linear-gradient(135deg, #C97B84 0%, #9B5560 100%);
  color: #ffffff;
  grid-row: span 2;
}

.result-card.secondary {
  background: #ffffff;
}

.result-card.tertiary {
  background: #D4EEE5;
}

.result-card .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.result-card.primary   .quote { color: rgba(255, 255, 255, 0.95); }
.result-card.secondary .quote { color: #1E1A1B; }
.result-card.tertiary  .quote { color: #2A6B55; }

.result-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.result-card.primary   .result-name { color: rgba(255, 255, 255, 0.7); }
.result-card.secondary .result-name { color: #C97B84; }
.result-card.tertiary  .result-name { color: #3A7D65; }

.result-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  color: #ffffff;
}


/* ------------------------------------------------------------
   12. EBOOK MOCKUP
   ------------------------------------------------------------ */
.ebook-mockup {
  background: linear-gradient(145deg, #EDD8DB, #F5E8EA);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  margin-top: 48px;
  border: 1px solid rgba(201, 123, 132, 0.2);
}

.mockup-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9B5560;
  margin-bottom: 20px;
}

.mockup-cover {
  display: inline-block;
  width: 200px;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 12px 16px 40px rgba(155, 85, 96, 0.25), -4px -4px 20px rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.mockup-cover:hover {
  transform: rotate(0deg) scale(1.03);
}

.mockup-cover .book-days {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #C97B84;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mockup-cover .book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1E1A1B;
  line-height: 1.1;
  margin-bottom: 4px;
}

.mockup-cover .book-sub {
  font-size: 10px;
  color: #6B5E60;
  line-height: 1.4;
}

.mockup-pages {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-chip {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12px;
  color: #6B5E60;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(201, 123, 132, 0.15);
}


/* ------------------------------------------------------------
   13. VIP BONUS
   ------------------------------------------------------------ */
.bonus-section {
  background: #1E1A1B;
  color: #ffffff;
}

.bonus-section .section-label { color: #E8C4C8; }
.bonus-section .section-title { color: #ffffff; }
.bonus-section .section-title em { color: #E8C4C8; }

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 123, 132, 0.25);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: background 0.2s;
}

.bonus-card:hover {
  background: rgba(255, 255, 255, 0.10);
}

.bonus-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #C97B84, #9B5560);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

.bonus-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.bonus-value {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #E8C4C8;
  letter-spacing: 0.08em;
}


/* ------------------------------------------------------------
   14. OFFER RECAP
   ------------------------------------------------------------ */
.offer-section {
  background: #ffffff;
}

.offer-box {
  background: linear-gradient(135deg, #F9F0F1 0%, #F0E4E6 100%);
  border-radius: 28px;
  padding: 56px 48px;
  border: 1px solid rgba(201, 123, 132, 0.2);
  margin-top: 40px;
}

.offer-list {
  list-style: none;
  margin: 28px 0;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 123, 132, 0.15);
  font-size: 16px;
  color: #1E1A1B;
}

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

.offer-check {
  width: 24px;
  height: 24px;
  background: #C97B84;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  flex-shrink: 0;
}

.offer-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: #6B5E60;
}

.offer-value-row .strike {
  text-decoration: line-through;
}

.offer-value-row.total {
  font-size: 17px;
  color: #1E1A1B;
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 123, 132, 0.25);
}

.offer-cta {
  text-align: center;
  margin-top: 36px;
}

.offer-cta .cta-btn {
  max-width: 380px;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  padding: 18px 56px;
  font-size: 17px;
}


/* ------------------------------------------------------------
   15. AUTHOR
   ------------------------------------------------------------ */
.author-section {
  background: #FBF7F5;
}

.author-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 40px;
}

.author-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, #E8C4C8, #C97B84);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  flex-shrink: 0;
  box-shadow: 0 16px 48px rgba(155, 85, 96, 0.2);
}

.author-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.author-tag {
  display: inline-block;
  background: #F9F0F1;
  color: #9B5560;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.author-info p {
  font-size: 16px;
  line-height: 1.75;
  color: #6B5E60;
  margin-bottom: 12px;
}

.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #1E1A1B;
}

.credential::before {
  content: '✦';
  color: #C97B84;
  font-size: 10px;
}


/* ------------------------------------------------------------
   16. FAQ
   ------------------------------------------------------------ */
.faq-section {
  background: #ffffff;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #F9F0F1;
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 22px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1E1A1B;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-arrow {
  color: #C97B84;
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: #6B5E60;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}


/* ------------------------------------------------------------
   17. GUARANTEE
   ------------------------------------------------------------ */
.guarantee-section {
  background: #FBF7F5;
}

.guarantee-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  max-width: 620px;
  margin: 40px auto 0;
  border: 2px solid rgba(201, 123, 132, 0.2);
  box-shadow: 0 12px 40px rgba(155, 85, 96, 0.08);
}

.guarantee-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.guarantee-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.guarantee-box p {
  font-size: 15px;
  line-height: 1.75;
  color: #6B5E60;
}


/* ------------------------------------------------------------
   18. FINAL CTA
   ------------------------------------------------------------ */
.final-cta {
  background: linear-gradient(135deg, #C97B84 0%, #9B5560 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 24px;
}

.final-cta h2 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.final-cta h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.final-cta .cta-btn {
  background: #ffffff;
  color: #9B5560;
  max-width: 400px;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  padding: 20px 60px;
  font-size: 17px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-btn:hover {
  background: #FBF7F5;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}


/* ------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------ */
footer {
  background: #1E1A1B;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 28px 24px;
  font-size: 12px;
}

footer a {
  color: rgba(255, 255, 255, 0.45);
}


/* ============================================================
   20. RESPONSIVE — MEDIA QUERIES
   ============================================================ */

@media (max-width: 720px) {
  .steps-grid  { grid-template-columns: 1fr; }
  .bonus-cards { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; gap: 28px; }
}

@media (max-width: 680px) {
  .results-grid { grid-template-columns: 1fr; }
  .author-card  { flex-direction: column; gap: 28px; }
}

@media (max-width: 620px) {
  .bullets-grid { grid-template-columns: 1fr; }
  .offer-box    { padding: 36px 24px; }
  .guarantee-box { padding: 32px 24px; }
}
