/* ============================================================
   Standout — landing page styles
   Palette sampled from notes/Book Landing Page.pdf
   ============================================================ */

:root {
  --blue: #3E64D0;        /* bold blue section background */
  --light-blue: #E0E8F5;  /* light blue-grey section background */
  --white-bg: #F7F7F7;    /* near-white section background */
  --navy: #001B3D;        /* dark headings / body-on-light emphasis */
  --navy-btn: #001B47;    /* Amazon pill buttons */
  --ink: #2B2B33;         /* body copy on light */
  --ink-soft: #4a4a55;    /* softer body copy */
  --star: #5BA3F8;        /* rating stars */
  --card-shadow: 0 10px 30px rgba(0, 20, 60, 0.10);
  --radius: 10px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

em.book { font-style: italic; font-weight: 800; }

/* ---------- Section shells ---------- */
.section { padding: 96px 0; }
.section--white { background: var(--white-bg); }
.section--light-blue { background: var(--light-blue); }
.section--blue { background: var(--blue); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.center { text-align: center; }

/* ---------- Headings ---------- */
.section__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: -0.01em;
}
.section__title--on-blue { color: #fff; }
.section__title--left { text-align: left; margin-bottom: 20px; }

.section__title .underline {
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section__closing {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  text-align: center;
  margin: 48px auto 0;
  max-width: 760px;
  color: var(--navy);
}
.section__closing--on-blue { color: #fff; }

/* ---------- Stars ---------- */
.stars {
  color: var(--star);
  letter-spacing: 3px;
  font-size: 1.1rem;
  line-height: 1;
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero { padding: 80px 0 96px; }

.hero__headline {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 56px;
}
.hero__headline span { display: block; }
/* On desktop keep each sentence on a single line so the headline stays
   two lines (no orphaned last word). Wraps naturally on smaller screens. */
@media (min-width: 901px) {
  .hero__headline span { white-space: nowrap; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.hero__cover img {
  width: 340px;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(0, 20, 60, 0.28);
}

/* ---------- Testimonials (hero) ---------- */
.testimonial {
  margin: 0;
  text-align: center;
  max-width: 340px;
  margin-inline: auto;
}
.testimonial .stars { margin-bottom: 16px; }

.testimonial__quote {
  margin: 0 0 20px;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.5;
}
.testimonial__quote em { font-weight: 600; }

.testimonial__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
}

.testimonial__attr {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.testimonial__name { display: block; font-weight: 700; color: var(--navy); }
.testimonial__attr em { font-style: italic; }

/* ============================================================
   2 & 11. SPLIT (text + media)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--center { align-items: center; }

.split__text p {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 18px;
}
.split__text p:last-child { margin-bottom: 0; }
.split__text em { font-style: italic; }

.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

/* ============================================================
   3. SIX CONVERSATIONS — card grid
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.conv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--card-shadow);
  color: var(--ink);
}
.conv-card__num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.conv-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.conv-card p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

/* ============================================================
   4. MYTHS DIAGRAM
   ============================================================ */
.diagram { max-width: 900px; margin: 0 auto; }
.diagram img { width: 100%; }

/* ============================================================
   5. NEW MANAGEMENT SYSTEM
   ============================================================ */
.system-heading {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--card-shadow);
}
.system-heading h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.25;
  text-align: center;
  margin: 0;
}

.chart-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--card-shadow);
}
.chart-card img { width: 100%; }

/* ============================================================
   6. THIS BOOK IS FOR YOU IF — panel card on blue
   ============================================================ */
.panel-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 56px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
}
.panel-card .section__title { margin-bottom: 24px; }

.checklist { margin: 0; padding-left: 22px; }
.checklist li {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.checklist li:last-child { margin-bottom: 0; }
.checklist--plain { list-style: disc; }

/* Section 9 emphasis checklist — left aligned, wider */
.checklist--emph {
  list-style: disc;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.checklist--emph li { margin-bottom: 14px; }
.checklist--emph strong { font-weight: 700; color: var(--navy); }

/* ============================================================
   7 & 13. BUY SECTIONS
   ============================================================ */
.buy .buy__cover img {
  width: 300px;
  max-width: 70%;
  margin: 0 auto 28px;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 20, 60, 0.25);
}
.buy .section__title {
  margin-bottom: 40px;
  /* Narrower width + balanced wrapping so these short headings break into
     two even lines instead of leaving a single orphaned word. */
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.buy__subtext {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--navy);
  margin: 0 0 34px;
  line-height: 1.4;
}

.amazon-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 34px;
  margin-bottom: 14px;
}
.btn-amazon {
  display: inline-block;
  background: var(--navy-btn);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-amazon:hover { background: #0a2a63; transform: translateY(-2px); }

.buy__worldwide {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

/* ============================================================
   8 & 12. FEATURE CARDS (3 across)
   ============================================================ */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  color: var(--ink);
}
.feature-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 12px;
}
.feature-card p { margin: 0; font-size: 0.97rem; color: var(--ink-soft); }
.feature-card p strong { color: var(--navy); }

/* ============================================================
   10. MORE PRAISE — quote cards
   ============================================================ */
.praise-grid { gap: 28px; }
.praise-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 34px 30px;
  margin: 0;
  text-align: center;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.praise-card .stars { margin-bottom: 18px; }
.praise-card blockquote {
  margin: 0 0 22px;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}
.praise-card blockquote em { font-style: italic; }
.praise-card blockquote strong { font-weight: 700; color: var(--navy); }
.praise-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
}
.praise-card figcaption {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-top: auto;
}

/* What's Inside chart card */
.chart-card--inside {
  max-width: 420px;
  margin: 40px auto 0;
}

/* ============================================================
   14. REVIEWS FROM READERS — masonry of white cards on blue
   ============================================================ */
.reviews-masonry {
  column-count: 2;
  column-gap: 28px;
}
@media (max-width: 900px) {
  .reviews-masonry { column-count: 1; }
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  margin: 0 0 28px;
  box-shadow: var(--card-shadow);
  color: var(--ink);
  break-inside: avoid;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #dfe3ea url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239aa4b5'><circle cx='12' cy='9' r='4'/><path d='M3.5 21c0-4.7 4-7.5 8.5-7.5s8.5 2.8 8.5 7.5z'/></svg>") center/24px no-repeat;
}
.review-card__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.review-card .stars {
  /* Amazon-style orange stars so the reviews read as recognizable Amazon reviews */
  color: #E47911;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.35;
  margin: 0 0 8px;
}

.review-card__meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 14px;
}
.review-card__verified {
  color: #1f7a4d;
  font-weight: 600;
  white-space: nowrap;
}

.review-card__body {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 12px;
}
.review-card__body:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white-bg);
  text-align: center;
  padding: 40px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.footer em { font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__cover { order: -1; }
  .hero__cover img { margin: 0 auto; }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split__media { order: 2; }
  .split__media img { max-width: 480px; margin: 0 auto; }
  .section__title--left { text-align: center; }

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

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }

  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }

  .panel-card { padding: 34px 26px; }
  .checklist--emph { text-align: left; }

  .amazon-buttons { gap: 14px; }
  .btn-amazon { padding: 12px 22px; }

  .hero__cover img { width: 260px; }
}
