@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

:root {
  --bg: #f7f3ea;
  --surface: #fffdf8;
  --surface-2: #fff8ee;
  --card: #ffffff;
  --text: #2b2a28;
  --muted: #6e675d;
  --heading: #000080;
  --accent: #800000;
  --accent-dark: #630101;
  --accent-soft: #fde6dc;
  --line: #1d2b53;
  --success: #2f6b43;
  --shadow: 0 14px 34px rgba(56, 36, 14, 0.08);
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.blue{color:#7dd3fc;}
.violet{color:#a78bfa;}
.amber{color:#fbbf24;}
.red{color:#cc0000;}
.white{color:#ffffff;}
.sky{color:#0382da;}


body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f8f4ec 0%, #fdf9f2 100%);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 10px 0 14px;
  line-height: 1.14;
  color: var(--heading);
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

h1 {
  font-size: clamp(1.2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
  font-size: 1.06rem;
  color: var(--text);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 16px 0;
}

.book-page .em-underline,
.book-page .h1-underline {
  position: relative;
  display: inline-block;
  background: none;
  padding-bottom: 0.06em;
}

.book-page .em-underline{
  display:inline-block;
  padding-bottom:4px;
  background: linear-gradient(
    90deg,
    rgba(125,211,252,0.00) 0%,
    rgba(125,211,252,0.24) 30%,
    rgba(125,211,252,0.42) 44%,
    rgba(167,139,250,0.46) 78%,
    rgba(223,179,71,0.58) 100%
  );
  background-size:100% 6px;
  background-repeat:no-repeat;
  background-position:0 100%;
  border-radius:6px;
}


.subheadline,
.section-intro,
.footer-note {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero {
  padding: 28px 0 22px;
}

.hero-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 241, 0.98));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 34px;
  align-items: start;
}

.headline-accent {
  font-size: 0.9em;
  display: block;
  color: var(--accent-dark);
  margin-top: 6px;
}

.headline-sub {
  display: block;
  font-size: clamp(1.05rem, 3vw, 1.6rem);
  line-height: 1.35;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 600;
}

.subheadline {
  max-width: 100%;
  font-size: 1.15rem;
  margin: 0 0 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(199, 92, 54, 0.24);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--heading);
  border-color: var(--line);
}

.hero-wide-cta {
  width: calc(100% - 68px);
  margin: 0 auto 34px;
  padding: 30px 34px;
  border: 1px solid rgba(0, 0, 128, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-sizing: border-box;
}

.hero-wide-cta .wide-kicker {
  margin-top: 0;
  color: var(--heading);
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.hero-wide-cta .cta-row {
  justify-content: center;
  margin: 22px auto 20px;
}

.hero-wide-cta .mini-proof {
  justify-content: center;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.mini-proof li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--heading);
}

.card,
.panel,
.feature-card,
.faq-item,
.author-box,
.cta-box,
.offer-card,
.chapter-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.offer-card {
  position: sticky;
  top: 18px;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 12px;
  font-weight: 800;
  color: var(--heading);
}

.price-tag strong {
  font-size: 2.2rem;
  line-height: 1;
}

/* FAQ Dropdown Accordion */



/* FAQ Dropdown Accordion */

.faq-accordion {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.faq-accordion .faq-item {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  box-shadow: 0 8px 22px rgba(19, 37, 94, 0.06);
}

.faq-accordion .faq-item summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 24px 72px 24px 28px;
  color: var(--heading);
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.faq-accordion .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff4f1;
  border: 1px solid #d9dfea;
  color: #b11e14; /* RED closed icon */
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.faq-accordion .faq-item[open] summary::after {
  content: "−";
  background: #b11e14; /* RED open icon background */
  color: #ffffff;
  border-color: #8e180f;
}

.faq-accordion .faq-item p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--text);
  font-size: 1.13rem;
  line-height: 1.8;
}

.faq-accordion .faq-item[open] {
  background: linear-gradient(180deg, #fffdf9 0%, #fff8eb 100%);
  box-shadow: 0 12px 26px rgba(19, 37, 94, 0.09);
}

.faq-accordion .faq-item summary:hover {
  background: rgba(223, 179, 71, 0.08);
}

.package-list,
.check-list,
.bullet-list,
.chapter-list,
.usage-list,
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-list li,
.check-list li,
.bullet-list li,
.usage-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.package-list li::before,
.check-list li::before,
.bullet-list li::before,
.usage-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #edf8f0;
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 900;
}

/* Bigger shifted checklist */

.bigList {
  margin: 18px 0 22px 34px;
  padding: 0;
}

.bigList li {
  font-size: 1.18rem;
  line-height: 1.65;
  margin-bottom: 14px;
  padding-left: 36px;
}

.bigList li::before {
  width: 24px;
  height: 24px;
  font-size: 0.95rem;
  top: 0.18em;
}

@media (max-width: 640px) {
  .bigList {
    margin-left: 12px;
  }

  .bigList li {
    font-size: 1.08rem;
    padding-left: 34px;
  }
}

.band,
.quote-box,
.lead-box {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(56, 36, 14, 0.05);
}

.band.alt {
  background: var(--surface-2);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.section-header {
  max-width: 100%;
  margin-bottom: 22px;
}

.section-header-wide {
  margin-bottom: 18px;
}

.section-header.intro-header {
  max-width: 100%;
}

.section-title-bar {
  width: 100%;
  margin: 0 0 16px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #fff8ee 0%, #fff3e3 100%);
  border: 1px solid #d9c7b1;
  border-left: 10px solid var(--accent);
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(56, 36, 14, 0.05);
}

.section-title-bar h2 {
  margin: 0;
  color: var(--heading);
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.1rem;
  font-weight: 900;
  flex: 0 0 40px;
}

.chapter-list {
  display: grid;
  gap: 16px;
}

.chapter-item strong {
  display: block;
  color: var(--heading);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.angle-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.92));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(80, 60, 20, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.angle-step:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: 0 12px 24px rgba(80, 60, 20, 0.08);
  background: linear-gradient(180deg, #fffdf8, #fff8ec);
}

.angle-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(180deg, #000080 0%, #1f3db8 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 128, 0.18);
}

.angle-copy h3 {
  margin: 0 0 6px;
  font-size: 21px;
  color: #000080;
}

.angle-copy p {
  margin: 0 0 12px;
  font-size: 17px;
  color: var(--text);
}

.angle-copy p:last-child {
  margin-bottom: 0;
}

.usage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}

.quote-box {
  border: 1px solid var(--line);
  border-left: 6px solid #7aa2ff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(20, 28, 60, 0.18);
  background: linear-gradient(135deg, #1d2b53 0%, #000080 100%);
  color: rgba(255, 255, 255, 0.94);
}

.quote-box h2,
.quote-box p {
  color: rgba(255, 255, 255, 0.96);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.author-photo {
  width: 110px;
  border-radius: 20px;
  border: 1px solid var(--line);
  object-fit: cover;
  min-height: 110px;
  background: #f4ede2;
}

.round {
  border-radius: 20px;
  border: 1px solid var(--line);
  margin: 10px 0 14px;
}

.lead-box {
  text-align: center;
  background: linear-gradient(180deg, #fff3d8 0%, #fffaf0 55%, #ffffff 100%);
}

.lead-box p:last-child {
  margin-bottom: 0;
}

.plain-english-box {
  border: 1px solid var(--line);
}

.cta-box {
  text-align: center;
  background: linear-gradient(180deg, #fff9f0 0%, #fff 100%);
}

.cta-box .cta-row {
  justify-content: center;
  margin-bottom: 10px;
}

.footer-note {
  text-align: center;
  font-size: 0.92rem;
  padding-bottom: 38px;
}

.training-depth-box {
  margin-top: 22px;
  background: linear-gradient(180deg, #fffaf2 0%, #fffdf8 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(56, 36, 14, 0.05);
}

.training-depth-box h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 1.45rem;
}

.training-depth-intro {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--text);
}

.training-depth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.depth-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(56, 36, 14, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.depth-item h4 {
  margin: 0 0 8px;
  color: var(--heading);
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.depth-item p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text);
}

.depth-item-pro {
  background: linear-gradient(180deg, #fff8ee 0%, #fffdf8 100%);
  grid-column: 1 / -1;
}

.depth-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(56, 36, 14, 0.10);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
  border-color: #142c74;
}

.book-page {
  background:
    radial-gradient(circle at top left, rgba(134, 208, 255, 0.18) 0%, transparent 28%),
    radial-gradient(circle at top right, rgba(223, 179, 71, 0.16) 0%, transparent 30%),
    radial-gradient(circle at center, rgba(183, 156, 255, 0.14) 0%, transparent 35%),
    linear-gradient(180deg, #fbf8f1 0%, #fffdf9 100%);
}

.book-page .band.alt,
.book-page .training-depth-box,
.book-page .cta-box,
.book-page .lead-box {
  box-shadow: 0 10px 30px rgba(19, 37, 94, 0.06);
}

.book-page .section-title-bar {
  background: linear-gradient(180deg, #fffdf9 0%, #f7f8ff 48%, #fff8eb 100%);
  border: 1px solid #d7dff0;
  border-left: 10px solid #dfb347;
  box-shadow: 0 8px 20px rgba(19, 37, 94, 0.06);
}

.book-page .section-title-bar h2 {
  color: #13255e;
}

.book-page .depth-item,
.book-page .panel,
.book-page .card,
.book-page .feature-card,
.book-page .faq-item {
  border-color: #cfd9ee;
}

.book-page .depth-item:hover,
.book-page .panel:hover,
.book-page .feature-card:hover {
  box-shadow: 0 14px 28px rgba(19, 37, 94, 0.10);
  border-color: #aebfe6;
}

.book-page .angle-number {
  background: linear-gradient(180deg, #86d0ff 0%, #b79cff 100%);
  box-shadow: 0 10px 20px rgba(134, 208, 255, 0.18);
}

.book-page .btn-primary {
  background: linear-gradient(180deg, #dfb347 0%, #c99824 100%);
  box-shadow: 0 10px 24px rgba(223, 179, 71, 0.24);
}

.book-page .btn-primary:hover {
  background: linear-gradient(180deg, #c99824 0%, #b88314 100%);
}

.offer-support-section {
  padding: 24px 0;
}

.offer-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.offer-box {
  background: linear-gradient(180deg, #fffaf1 0%, #fffdf8 100%);
  border: 1px solid #d8c6aa;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(56, 36, 14, 0.08);
}

.offer-box h2 {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.offer-kicker {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.offer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(29, 43, 83, 0.14);
  font-size: 1.02rem;
}

.offer-row span {
  color: var(--text);
}

.offer-row strong {
  color: var(--heading);
  font-weight: 800;
  white-space: nowrap;
}

.offer-divider {
  height: 1px;
  background: rgba(29, 43, 83, 0.18);
  margin: 18px 0 14px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 0 0 14px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--heading);
}

.price-row strong {
  font-size: 1.18rem;
}

.offer-button {
  width: 100%;
  margin-top: 2px;
}

.offer-small-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

.support-box {
  background:
    radial-gradient(circle at top left, rgba(128, 0, 0, 0.07) 0%, transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fff8ee 100%);
}

.support-box p {
  font-size: 1.03rem;
}

.support-list {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.support-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 13px;
  color: var(--text);
  font-size: 1.02rem;
}

.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #7aa2ff;
  box-shadow: 0 0 0 4px rgba(122, 162, 255, 0.18);
}

.support-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(29, 43, 83, 0.16);
  color: var(--muted);
}

@media (max-width: 960px) {
  .training-depth-grid {
    grid-template-columns: 1fr 1fr;
  }

  .depth-item-pro {
    grid-column: 1 / -1;
  }

  .hero-grid,
  .two-col,
  .three-col,
  .usage-list,
  .author-box {
    grid-template-columns: 1fr;
  }

  .offer-card {
    position: static;
  }
}

@media (max-width: 880px) {
  .offer-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .angle-step {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .angle-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .section-intro {
    font-size: 18px;
  }

  .angle-copy h3 {
    font-size: 19px;
  }

  .section-title-bar {
    padding: 12px 16px;
  }
}

@media (max-width: 640px) {
  .training-depth-box {
    padding: 20px;
  }

  .training-depth-grid {
    grid-template-columns: 1fr;
  }

  .depth-item-pro {
    grid-column: auto;
  }

  .hero-grid,
  .band,
  .feature-card,
  .panel,
  .card,
  .faq-item,
  .offer-card,
  .author-box,
  .cta-box,
  .chapter-item,
  .lead-box,
  .quote-box {
    padding: 20px;
  }

  .hero-wide-cta {
    width: calc(100% - 40px);
    margin: 0 auto 24px;
    padding: 22px 20px;
  }

  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mini-proof li {
    width: 100%;
  }

  .offer-box {
    padding: 20px;
  }

  .offer-row,
  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .offer-row strong,
  .price-row strong {
    justify-self: start;
  }
}

/* Green Theme For 25 PLR Page */

.plr-green-page {
  --heading: #064d2f;
  --accent: #0b6b3a;
  --accent-dark: #043d24;
  --accent-soft: #e8f7ee;
  --line: #0a3b28;
  --success: #0b7a3b;
}

.plr-green-page h1,
.plr-green-page h2,
.plr-green-page h3,
.plr-green-page h4,
.plr-green-page .headline-accent,
.plr-green-page .headline-sub,
.plr-green-page .wide-kicker,
.plr-green-page .mini-proof li,
.plr-green-page .package-list strong,
.plr-green-page .price-row,
.plr-green-page .offer-row strong,
.plr-green-page .chapter-item strong,
.plr-green-page .angle-copy h3,
.plr-green-page .depth-item h4,
.plr-green-page .faq-accordion .faq-item summary {
  color: #064d2f !important;
}

.plr-green-page .eyebrow {
  background: #e8f7ee;
  color: #064d2f;
  border-color: #0a3b28;
}

.plr-green-page .eyebrow span {
  color: #064d2f !important;
}

.plr-green-page .headline-accent {
  color: #0b6b3a !important;
}

.plr-green-page .section-title-bar {
  background: linear-gradient(180deg, #f5fff8 0%, #e8f7ee 55%, #fffaf0 100%);
  border: 1px solid #b9d8c5;
  border-left: 10px solid #0b6b3a;
  box-shadow: 0 8px 20px rgba(6, 77, 47, 0.08);
}

.plr-green-page .section-title-bar h2 {
  color: #064d2f !important;
}

.plr-green-page .hero-shell,
.plr-green-page .offer-card,
.plr-green-page .band,
.plr-green-page .quote-box,
.plr-green-page .lead-box,
.plr-green-page .training-depth-box,
.plr-green-page .cta-box,
.plr-green-page .panel,
.plr-green-page .card,
.plr-green-page .faq-item,
.plr-green-page .depth-item,
.plr-green-page .chapter-item,
.plr-green-page .hero-wide-cta,
.plr-green-page .offer-box {
  border-color: #0a3b28 !important;
}

.plr-green-page .btn-primary {
  background: linear-gradient(180deg, #0f8a49 0%, #0b6b3a 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(11, 107, 58, 0.24) !important;
}

.plr-green-page .btn-primary:hover {
  background: linear-gradient(180deg, #0b6b3a 0%, #043d24 100%) !important;
}

.plr-green-page .btn-secondary {
  color: #064d2f !important;
  border-color: #0a3b28 !important;
}

.plr-green-page .mini-proof li {
  border-color: #0a3b28;
  background: #ffffff;
}

.plr-green-page .package-list li::before,
.plr-green-page .check-list li::before,
.plr-green-page .bullet-list li::before,
.plr-green-page .usage-list li::before {
  background: #e8f7ee;
  color: #0b7a3b;
}

.plr-green-page .angle-number {
  background: linear-gradient(180deg, #0f8a49 0%, #064d2f 100%) !important;
  box-shadow: 0 10px 20px rgba(6, 77, 47, 0.18) !important;
}

.plr-green-page .quote-box {
  background: linear-gradient(135deg, #043d24 0%, #064d2f 100%) !important;
  border-left: 6px solid #1ecb70 !important;
}

.plr-green-page .quote-box h2,
.plr-green-page .quote-box p {
  color: #ffffff !important;
}

.plr-green-page .support-list li::before {
  background: #0f8a49;
  box-shadow: 0 0 0 4px rgba(15, 138, 73, 0.18);
}

.plr-green-page .faq-accordion .faq-item summary::after {
  background: #e8f7ee;
  border-color: #b9d8c5;
  color: #0b6b3a;
}

.plr-green-page .faq-accordion .faq-item[open] summary::after {
  background: #0b6b3a;
  color: #ffffff;
  border-color: #043d24;
}

.plr-green-page .faq-accordion .faq-item[open] {
  background: linear-gradient(180deg, #ffffff 0%, #f0fff5 100%);
}

.plr-green-page .faq-accordion .faq-item summary:hover {
  background: rgba(11, 107, 58, 0.08);
}

.plr-green-page .depth-item:hover,
.plr-green-page .panel:hover,
.plr-green-page .feature-card:hover {
  border-color: #0b6b3a !important;
  box-shadow: 0 14px 28px rgba(6, 77, 47, 0.12) !important;
}

.plr-green-page .depth-item-pro .section-title-bar h2 {
  color: #064d2f !important;
}

/* Stronger Green + Gold Accent Overrides For 25 PLR Page */

.plr-green-page {
  --heading: #064d2f;
  --accent: #d8a82f;
  --accent-dark: #a86f08;
  --accent-soft: #fff4d6;
  --line: #0a3b28;
  --success: #0b7a3b;
}

/* Make the secondary accent obvious */

.plr-green-page .headline-accent {
  color: #a86f08 !important;
}

.plr-green-page .eyebrow {
  background: linear-gradient(180deg, #fff7dc 0%, #fff0c2 100%) !important;
  border-color: #d8a82f !important;
  color: #064d2f !important;
}

.plr-green-page .eyebrow span {
  color: #064d2f !important;
}

/* Gold section title accent */

.plr-green-page .section-title-bar {
  background: linear-gradient(180deg, #fffdf7 0%, #fff4d6 65%, #f3fff7 100%) !important;
  border: 1px solid #d7bf7a !important;
  border-left: 12px solid #d8a82f !important;
  box-shadow: 0 8px 20px rgba(216, 168, 47, 0.14) !important;
}

.plr-green-page .section-title-bar h2 {
  color: #064d2f !important;
}

/* Gold buttons */

.plr-green-page .btn-primary {
  background: linear-gradient(180deg, #e4bd4d 0%, #c6921f 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(216, 168, 47, 0.30) !important;
}

.plr-green-page .btn-primary:hover {
  background: linear-gradient(180deg, #c6921f 0%, #a86f08 100%) !important;
}

/* Gold number blocks */

.plr-green-page .angle-number {
  background: linear-gradient(180deg, #e4bd4d 0%, #a86f08 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(216, 168, 47, 0.25) !important;
}

/* Gold hover accents on cards */

.plr-green-page .depth-item:hover,
.plr-green-page .panel:hover,
.plr-green-page .feature-card:hover,
.plr-green-page .card:hover {
  border-color: #d8a82f !important;
  box-shadow: 0 14px 28px rgba(216, 168, 47, 0.16) !important;
}

/* Add a subtle gold top edge to the reuse cards */

.plr-green-page .depth-item {
  border-top: 4px solid rgba(216, 168, 47, 0.55) !important;
}

/* Keep the main card headings green */

.plr-green-page .depth-item h4,
.plr-green-page .angle-copy h3,
.plr-green-page h1,
.plr-green-page h2,
.plr-green-page h3,
.plr-green-page h4 {
  color: #064d2f !important;
}

/* Gold quote box accent */

.plr-green-page .quote-box {
  background: linear-gradient(135deg, #043d24 0%, #064d2f 100%) !important;
  border-left: 8px solid #d8a82f !important;
}

.plr-green-page .quote-box h2,
.plr-green-page .quote-box p {
  color: #ffffff !important;
}

/* Gold FAQ icon */


.plr-green-page .faq-accordion .faq-item summary::after {
  background: #fff4d6 !important;
  border-color: #d7bf7a !important;
  color: #a86f08 !important;
}

.plr-green-page .faq-accordion .faq-item[open] summary::after {
  background: #d8a82f !important;
  color: #ffffff !important;
  border-color: #a86f08 !important;
}

/* Gold support dots */

.plr-green-page .support-list li::before {
  background: #d8a82f !important;
  box-shadow: 0 0 0 4px rgba(216, 168, 47, 0.22) !important;
}
