:root {
  --blue: #2e86de;
  --blue-dark: #173a63;
  --blue-light: #90caf9;
  --green: #4caf50;
  --green-dark: #347d3c;
  --green-pale: #e8f5e9;
  --yellow-pale: #fff8d6;
  --gold: #f4d35e;
  --cream: #fffcf4;
  --ink: #333333;
  --gray: #777777;
  --line: #dce7ef;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(30, 65, 100, 0.14);
  --shadow-soft: 0 12px 34px rgba(30, 65, 100, 0.1);
  --radius: 26px;
  --font-display: "Baloo 2", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Nunito", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 930px;
}

.center {
  text-align: center;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 62px;
  width: 100%;
  padding: 22px 0;
}

.fixed-offer-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(46, 134, 222, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(30, 65, 100, 0.08);
}

.fixed-offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.fixed-offer-banner p {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.button-banner {
  min-height: 42px;
  padding: 10px 18px;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #1744be5c;
  border-radius: 50%;
  background: rgba(232, 245, 233, 0.9);
  color: var(--gold);
}

.brand-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  border-radius: 50%;
}

.testimonial-card .testimonial-example img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 27px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 21px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #2478ca;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(8px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 13px 28px rgba(46, 134, 222, 0.28);
}

.button-primary:hover {
  background: #2478ca;
  box-shadow: 0 16px 34px rgba(46, 134, 222, 0.34);
}

.button-secondary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 27px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.payment-actions {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.refund-highlight {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(76, 175, 80, 0.24);
  background: rgba(76, 175, 80, 0.1);
  border-radius: 18px;
  color: var(--green-dark);
  font-weight: 800;
}

.button-full {
  width: 100%;
}

.discount-note {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  background:
    radial-gradient(circle at 8% 18%, rgba(244, 211, 94, 0.2), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(144, 202, 249, 0.29), transparent 28%),
    linear-gradient(150deg, #fffcf2 0%, #ffffff 51%, #eef8ff 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  opacity: 0.6;
  pointer-events: none;
}

.hero::before {
  top: 70px;
  right: -130px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(46, 134, 222, 0.13);
}

.hero::after {
  bottom: -160px;
  left: -110px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(76, 175, 80, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  gap: clamp(56px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slogan {
  display: inline-block;
  margin: 0 0 24px;
  padding: 11px 18px 11px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 248, 214, 0.62);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.3;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  line-height: 1.08;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(3rem, 5.2vw, 5rem);
  letter-spacing: -0.035em;
}

h1 span {
  color: var(--blue);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: #4f5961;
  font-size: 1.17rem;
}

.hero-points,
.check-list,
.checkout-details {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-points li {
  position: relative;
  padding-left: 29px;
}

.hero-points li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  content: "✓";
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 19px;
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.microcopy {
  color: var(--gray);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  justify-content: center;
}

.book-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 211, 94, 0.3), rgba(144, 202, 249, 0.08) 58%, transparent 72%);
  filter: blur(2px);
}

.book-cover {
  position: relative;
  z-index: 1;
  width: min(390px, 86%);
  margin: 0;
  transform: perspective(1200px) rotateY(-7deg) rotateX(1.5deg) rotateZ(1deg);
}

.book-cover::before {
  position: absolute;
  z-index: -1;
  top: 2%;
  bottom: -1%;
  left: -14px;
  width: 22px;
  border-radius: 9px 0 0 9px;
  background: linear-gradient(90deg, #d2cdbd, #fbf5e6);
  box-shadow: -10px 20px 30px rgba(31, 57, 80, 0.16);
  content: "";
}

.book-cover img {
  border-radius: 4px 10px 10px 4px;
  box-shadow: 20px 32px 55px rgba(25, 55, 83, 0.24);
}

.cover-note {
  position: absolute;
  z-index: 2;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
  font-size: 0.76rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(8px);
}

.cover-note-top {
  top: 16%;
  left: -5%;
}

.cover-note-bottom {
  right: -2%;
  bottom: 14%;
}

.trust-strip {
  border-top: 1px solid rgba(46, 134, 222, 0.08);
  border-bottom: 1px solid rgba(46, 134, 222, 0.08);
  background: var(--white);
}

.trust-grid {
  display: grid;
  padding: 32px 0;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  padding: 5px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.trust-grid span {
  color: #626b72;
  font-size: 0.86rem;
  font-weight: 700;
}

.section {
  padding: 108px 0;
}

.warm-section {
  background: var(--cream);
}

.large-copy {
  max-width: 850px;
  margin: 0 auto 16px;
  color: #535d64;
  font-size: 1.14rem;
}

.pain-grid {
  display: grid;
  margin: 40px 0 34px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.pain-grid article {
  padding: 25px 22px;
  border: 1px solid #eee3c4;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.pain-grid span {
  display: block;
  margin-bottom: 8px;
  color: #b89020;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}

.pain-grid p {
  margin: 0;
  color: #4f5960;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.relief-copy {
  max-width: 820px;
  margin: 0 auto;
  color: #4f5d54;
  font-size: 1.08rem;
}

.journey {
  position: relative;
  display: grid;
  margin-top: 55px;
  grid-template-columns: repeat(4, 1fr);
}

.journey::before {
  position: absolute;
  top: 24px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--blue-light), var(--gold));
  content: "";
}

.journey div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey span,
.step-number {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 12px;
  place-items: center;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
}

.journey strong {
  color: var(--blue-dark);
}

.journey small {
  max-width: 150px;
  color: var(--gray);
  font-size: 0.76rem;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 56px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p,
.center-heading > p {
  margin: 0;
  color: #5e6870;
}

.center-heading {
  display: block;
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.center-heading h2 {
  margin-bottom: 18px;
}

.testaments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.testament-card {
  position: relative;
  overflow: hidden;
  padding: 40px 44px;
  border: 1px solid;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.testament-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  opacity: 0.6;
}

.old-testament {
  border-color: #c6e5c8;
  background: linear-gradient(145deg, #f7fcf7, var(--green-pale));
}

.old-testament::after {
  background: rgba(76, 175, 80, 0.12);
}

.new-testament {
  border-color: #bfd9f0;
  background: linear-gradient(145deg, #f7fbff, #e8f3fc);
}

.new-testament::after {
  background: rgba(46, 134, 222, 0.1);
}

.card-kicker {
  margin: 0 0 4px;
  color: var(--gray);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testament-card ol {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: stories;
  gap: 11px;
}

.testament-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  counter-increment: stories;
}

.testament-card li::before {
  display: grid;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  content: counter(stories);
  font-size: 0.72rem;
  font-weight: 800;
}

.old-testament li::before {
  background: rgba(76, 175, 80, 0.14);
  color: var(--green-dark);
}

.new-testament li::before {
  background: rgba(46, 134, 222, 0.12);
  color: var(--blue-dark);
}

.gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(144, 202, 249, 0.16), transparent 25%),
    linear-gradient(180deg, #f8fbfd, #ffffff);
}

.page-gallery {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.page-shot {
  margin: 0;
}

.page-shot img {
  width: 100%;
  border: 8px solid var(--white);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(32, 64, 91, 0.16);
}

.page-shot:nth-child(even) {
  margin-top: 46px;
}

.page-shot figcaption {
  padding: 13px 6px 0;
  color: #63707a;
  font-size: 0.79rem;
  font-weight: 700;
  text-align: center;
}

.price-original {
  margin: 0 0 6px;
  color: #ff0000;
  font-size: 0.86rem;
  text-decoration: line-through;
}

.feature-grid,
.audience-grid,
.diploma-grid,
.offer-wrap,
.faq-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 105px);
}

.feature-copy > p:not(.eyebrow),
.audience-grid > div > p:not(.eyebrow),
.diploma-grid > div > p:not(.eyebrow) {
  color: #5c666e;
}

.activity-tags {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.activity-tags span {
  padding: 8px 14px;
  border: 1px solid #cfe1ed;
  border-radius: 999px;
  background: #f8fbfd;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.benefit-card {
  padding: 42px;
  border: 1px solid #c8e3ca;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f9fdf9, var(--green-pale));
  box-shadow: var(--shadow-soft);
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--green-dark);
  content: "✓";
  font-weight: 900;
}

.gentle-note {
  margin: 25px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(76, 175, 80, 0.2);
  color: #5d695f;
  font-size: 0.86rem;
}

.use-section {
  background: var(--cream);
}

.use-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.use-cards article {
  padding: 34px;
  border: 1px solid #eee7d3;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.step-number {
  width: 45px;
  height: 45px;
  border: 0;
  background: var(--yellow-pale);
  color: #a17911;
}

.use-cards h3 {
  margin-bottom: 9px;
}

.use-cards p {
  margin: 0;
  color: #626c73;
  font-size: 0.92rem;
}

.audience-section {
  background: var(--blue-dark);
  color: var(--white);
}

.audience-section h2 {
  color: var(--white);
}

.audience-section .eyebrow {
  color: #a9d6a8;
}

.audience-grid > div > p:not(.eyebrow) {
  color: #d7e2ea;
}

.audience-list {
  display: grid;
  gap: 13px;
}

.audience-list div {
  display: grid;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  grid-template-columns: 110px 1fr;
  gap: 18px;
}

.audience-list strong {
  color: #fff2aa;
}

.audience-list span {
  color: #dce6ed;
  font-size: 0.87rem;
}

.diploma-section {
  background: linear-gradient(180deg, #ffffff, #fffdf7);
}

.diploma-preview {
  position: relative;
  width: min(460px, 88%);
  margin: 0 auto;
}

.diploma-preview::before {
  position: absolute;
  z-index: 0;
  inset: 8% -8%;
  border-radius: 50%;
  background: rgba(244, 211, 94, 0.19);
  content: "";
  filter: blur(25px);
}

.diploma-preview img {
  position: relative;
  z-index: 1;
  border: 9px solid var(--white);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.brand-section {
  padding-top: 94px;
  padding-bottom: 94px;
  background: var(--green-pale);
}

.testimonials-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 211, 94, 0.16), transparent 22%),
    linear-gradient(180deg, #fffdf7, #ffffff);
}

.proof-placeholder {
  max-width: 740px;
  margin: 0 auto 78px;
  padding: 28px 34px;
  border: 1px dashed #d2a93a;
  border-radius: 22px;
  background: var(--yellow-pale);
  text-align: center;
}

.proof-number {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.proof-placeholder > p:nth-child(2) {
  margin: 8px 0 16px;
  color: #5c625c;
}

.draft-badge,
.testimonial-example {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff0c2;
  color: #82641a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-heading {
  margin-bottom: 42px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid #dce8ef;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.testimonial-card blockquote {
  margin: 22px 0 24px;
  color: #46535d;
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-role {
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid #edf1f3;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.brand-story {
  max-width: 850px;
  text-align: center;
}

.brand-story p:last-child {
  margin-bottom: 0;
  color: #53615a;
  font-size: 1.08rem;
}

.brand-symbol {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 2rem;
}

.offer-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(244, 211, 94, 0.14), transparent 24%),
    #f5f9fc;
}

.offer-summary > p:not(.eyebrow) {
  color: #5c6870;
}

.offer-list {
  margin-top: 27px;
}

.checkout-card {
  padding: 45px;
  border: 1px solid rgba(46, 134, 222, 0.16);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.checkout-label {
  margin: 0 0 7px;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.countdown-box {
  margin: 16px 0 18px;
  padding: 16px 20px;
  border: 1px solid rgba(46, 134, 222, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(46, 134, 222, 0.08), rgba(76, 175, 80, 0.08));
}

.countdown-label {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-timer {
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price-block {
  margin: 8px 0 0;
}

.price-placeholder {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.payment-note {
  margin: 3px 0 25px;
  color: var(--gray);
  font-size: 0.8rem;
}

.checkout-details {
  display: grid;
  margin-top: 25px;
  gap: 8px;
  color: #53606a;
  font-size: 0.82rem;
  text-align: left;
}

.checkout-details li {
  position: relative;
  padding-left: 21px;
}

.checkout-details li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.guarantee-note {
  margin: 25px 0 0;
  padding-top: 18px;
  border-top: 1px solid #edf0f2;
  color: #8a9196;
  font-size: 0.7rem;
  line-height: 1.45;
}

.faq-wrap {
  align-items: start;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
}

.faq-heading {
  position: sticky;
  top: 40px;
}

.faq-heading > p:last-child {
  color: var(--gray);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--blue);
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: -4px 48px 22px 0;
  color: #5e6870;
  font-size: 0.92rem;
}

.final-cta {
  padding: 95px 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(244, 211, 94, 0.18), transparent 30%),
    var(--blue-dark);
  color: var(--white);
}

.final-cta-inner {
  max-width: 860px;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin: 0 0 28px;
  color: #dce7ef;
}

.final-symbol {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 2rem;
}

.site-footer {
  padding: 42px 0;
  background: #102d4d;
  color: #cfdae3;
}

.footer-inner {
  align-items: flex-end;
  font-size: 0.78rem;
}

.footer-inner strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-inner p {
  margin: 3px 0 0;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  color: #9fb0bf;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .cover-note-top {
    left: 11%;
  }

  .cover-note-bottom {
    right: 11%;
  }

  .page-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-shot:nth-child(even) {
    margin-top: 28px;
  }

  .feature-grid,
  .audience-grid,
  .diploma-grid,
  .offer-wrap,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .diploma-preview {
    width: min(420px, 82%);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 16px 0;
  }

  .button-small {
    display: none;
  }

  .hero {
    padding: 110px 0 64px;
  }

  .hero-grid {
    gap: 40px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .microcopy {
    text-align: center;
  }

  .hero-visual {
    min-height: 500px;
  }

  .book-cover {
    width: min(320px, 79%);
  }

  .cover-note-top {
    top: 12%;
    left: 2%;
  }

  .cover-note-bottom {
    right: 1%;
    bottom: 10%;
  }

  .trust-grid {
    padding: 20px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div {
    align-items: center;
    flex-direction: column;
    gap: 2px;
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n+2) {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:nth-child(n+3) {
    padding-top: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .journey {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 12px;
  }

  .pain-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .proof-placeholder {
    margin-bottom: 55px;
    padding: 25px 20px;
  }

  .journey::before {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 17px;
  }

  .testaments-grid,
  .use-cards {
    grid-template-columns: 1fr;
  }

  .testament-card,
  .benefit-card,
  .checkout-card {
    padding: 30px 25px;
  }

  .page-gallery {
    gap: 14px;
  }

  .page-shot:nth-child(even) {
    margin-top: 20px;
  }

  .page-shot img {
    border-width: 5px;
    border-radius: 9px;
  }

  .page-shot figcaption {
    font-size: 0.7rem;
  }

  .audience-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .faq-list summary {
    padding-right: 38px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 20;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(46, 134, 222, 0.15);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -8px 24px rgba(28, 57, 84, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .mobile-cta .button {
    width: 100%;
    min-height: 48px;
  }

  .site-footer {
    padding-bottom: 105px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
