:root {
  --hero-grad-start: #ff8fb3;
  --hero-grad-end: #fff0f5;
  --price-red: #da0303;
  --price-green-basic: #0b9b00;
  --price-green-full: #00bd39;
  --green: #47cb59;
  --green-glow: rgba(0, 255, 12, 0.5);
  --wine: #862039;
  --wine-header: #900b33;
  --pink: #ff0067;
  --dashed-blue: #768afc;
  --dark-header: #424242;
  --gray-bg: #e4e4e4;
  --footer-dark: #242424;
  --text-dark: #222;
  --max-width: 620px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
}

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

section, header.hero, footer.site-footer {
  padding: 40px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 800;
  margin: 0 0 16px;
  text-align: center;
}

p {
  margin: 0 0 16px;
}

.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: var(--green);
  font-size: 20px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 0 14px var(--green-glow);
  margin: 20px auto;
  max-width: 420px;
  cursor: pointer;
}

.btn-gray {
  background: #999;
  box-shadow: none;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
}

/* HERO */
.hero {
  background: linear-gradient(140deg, var(--hero-grad-start) 0%, var(--hero-grad-end) 100%);
  max-width: 100%;
  padding-top: 50px;
  padding-bottom: 60px;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  max-width: var(--max-width);
  margin: 0 auto 12px;
}

.heart-icon {
  margin: 0 auto 16px;
}

.hero-subtitle {
  max-width: 480px;
  margin: 0 auto;
  font-size: 17px;
}

/* PRICE TEASER */
.price-teaser {
  text-align: center;
  padding-bottom: 0;
}

.testimonial-img {
  border-radius: 12px;
  margin: 0 auto 30px;
  max-width: 320px;
}

.price-was {
  color: var(--price-red);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-was s {
  text-decoration-thickness: 3px;
}

.price-label {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

.price-now {
  color: var(--price-green-basic);
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 4px;
}

.price-urgency {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 0;
}

/* QUESTIONS */
.questions {
  text-align: center;
  padding-bottom: 0;
}

.question {
  font-style: italic;
  font-size: 20px;
  margin-bottom: 20px;
}

.questions-intro {
  text-align: center;
  font-weight: 700;
  font-size: 17px;
}

.quote-question {
  text-align: center;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
}

.questions p {
  text-align: left;
  font-size: 16px;
}

.questions p.questions-intro,
.questions p.quote-question {
  text-align: center;
}

.impact-line {
  text-align: center;
  color: var(--wine);
  font-size: 19px;
  line-height: 1.4;
  background: #fff3f6;
  border: 2px solid var(--wine);
  border-radius: 10px;
  padding: 18px;
  margin: 24px 0;
}

.highlight {
  color: var(--wine);
  font-size: 24px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px 0;
}

.review-grid img {
  width: 100%;
  border-radius: 8px;
}

.rings-icon {
  margin: 30px auto 0;
}

/* LEARN */
.learn-list {
  list-style: none;
  padding: 0;
}

.learn-list li {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  font-size: 15px;
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 8px;
  font-weight: 700;
}

.check-list li::marker {
  content: "✔ ";
  color: var(--green);
}

/* BONUS BANNER */
.bonus-banner {
  text-align: center;
  background: #fff3f6;
  border-radius: 12px;
  max-width: 560px;
}

.bonus-banner p {
  margin: 0;
}

/* BONUS CARDS */
.bonus-list {
  max-width: 560px;
}

.bonus-card {
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.bonus-header {
  background: var(--wine-header);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  padding: 14px 16px;
}

.bonus-body {
  padding: 20px;
  text-align: center;
}

.bonus-body img {
  margin: 0 auto 16px;
  border-radius: 8px;
  max-width: 280px;
}

.bonus-body .bonus-icon {
  max-width: 120px;
}

.bonus-body p {
  text-align: left;
}

.bonus-value {
  color: var(--price-red);
  font-weight: 700;
  text-align: center !important;
}

/* PRICING */
.pricing {
  background: var(--wine);
  max-width: 100%;
  color: #fff;
  text-align: center;
  padding: 40px 20px 60px;
}

.pricing h2 {
  color: #fff;
  font-size: 24px;
}

.ebook-mockup {
  margin: 0 auto 20px;
  max-width: 320px;
}

.plans {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 420px;
  margin: 0 auto;
}

.plan {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  color: var(--text-dark);
}

.plan header {
  background: var(--dark-header);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  padding: 14px;
}

.plan-full header {
  background: var(--pink);
}

.plan-full header span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #eee;
}

.plan-full {
  border: 3px dashed var(--dashed-blue);
}

.plan-body {
  padding: 20px;
}

.plan-features {
  text-align: left;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
}

.plan-features li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.plan-features li::before {
  content: "\2714";
  color: var(--green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.plan-price {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 0;
}

.plan-price--basic {
  color: var(--price-green-basic);
}

.plan-price--full {
  color: var(--price-green-full);
}

.plan-note {
  font-size: 14px;
  color: #555;
}

.pricing-footnote {
  font-size: 14px;
  margin-top: 20px;
}

/* SUMMARY */
.summary {
  text-align: center;
  padding-bottom: 0;
}

.summary p {
  text-align: left;
}

.text-center {
  text-align: center !important;
}

.mailbox-icon {
  max-width: 160px;
  margin: 20px auto;
}

.guarantee-question {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.guarantee-seal {
  max-width: 180px;
  margin: 0 auto 20px;
}

/* FAQ */
.faq h3 {
  text-align: left;
  font-size: 18px;
  margin-top: 30px;
}

.faq h3:first-child {
  margin-top: 0;
}

.faq p {
  font-size: 15px;
}

/* ABOUT */
.about {
  background: var(--gray-bg);
  max-width: 100%;
  text-align: center;
  padding: 50px 20px;
}

.about-photo {
  max-width: 220px;
  border-radius: 12px;
  margin: 0 auto 20px;
}

.about p {
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
.site-footer {
  background: var(--footer-dark);
  color: #ccc;
  max-width: 100%;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

.site-footer p {
  margin: 0 0 14px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}

.footer-links a {
  color: #ccc;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-box {
  background: #fdf6ef;
  border-radius: 16px;
  max-width: 380px;
  width: 100%;
  padding: 24px;
  text-align: center;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

.modal-box img {
  max-width: 200px;
  margin: 0 auto 16px;
}

.modal-title {
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
}

.modal-price {
  color: var(--green);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 0;
}

.modal-note {
  font-size: 14px;
}

.modal-highlight {
  color: var(--price-red);
  font-weight: 700;
  font-size: 14px;
}

/* NOTIFICATIONS (fake social proof toast) */
#notifications {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
}

.notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  background-color: var(--green);
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

@media (min-width: 640px) {
  .plans {
    flex-direction: row;
    max-width: 100%;
  }
}
