:root {
  --paper: #fbf4e6;
  --paper-card: #fffaf0;
  --ink: #33291f;
  --muted: #776b5d;
  --green: #1f4d3a;
  --green-soft: #e4efe8;
  --gold: #c08a2b;
  --gold-light: #f6d986;
  --terra: #a94e32;
  --line: #e8dcc8;
  --shadow: 0 18px 46px rgba(50, 41, 31, .15);
  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "Mulish", Arial, sans-serif;
  --ff-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--ff-body);
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
.wrap { width: min(100% - 28px, 560px); margin: 0 auto; }
.annbar {
  padding: 10px 12px;
  background: linear-gradient(90deg, #8b6020, #f0ce73, #8b6020);
  color: #281b0c;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero {
  padding: 28px 0 42px;
  text-align: center;
  background: radial-gradient(circle at top, #fffaf0, var(--paper) 65%);
}
.kicker, .eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--ff-display);
  line-height: 1.04;
  letter-spacing: 0;
}
h1 { font-size: 36px; }
h2 { font-size: 30px; text-align: center; }
h3 { font-size: 21px; }
.lead {
  margin: 15px auto 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}
.sublead, .center, .section p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}
.sublead { margin: 10px auto 20px; }
.hero-img {
  margin: 18px auto 24px;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #28b86a, #15733f);
  box-shadow: 0 8px 0 rgba(19, 87, 50, .32), 0 18px 28px rgba(21, 115, 63, .22);
  font-size: 15px;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-soft { margin-top: 18px; background: linear-gradient(180deg, #2b664e, #1f4d3a); }
.pulse { animation: pulse 1.35s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.025); } }
.note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.section { padding: 46px 0; }
.problem, .receive, .access, .faq { background: #fffaf0; }
.paper-list, .change-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.paper-list p, .change-list p {
  margin: 0;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}
.benefits, .steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.benefits article, .steps article, .offer-card, .receive-box, .guarantee-box, details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-card);
  box-shadow: var(--shadow);
}
.benefits article, .steps article {
  padding: 20px;
}
.benefits span, .steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-family: var(--ff-display);
  font-weight: 900;
}
.story { background: var(--green); color: #fff; }
.story h2, .story .eyebrow { color: #fff; text-align: left; }
.story p { color: #f5ead7; }
.story-grid { display: grid; gap: 22px; }
.artist {
  border: 7px solid #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.proof { background: #f5ead7; }
.proof-grid,
.testimonial-grid,
.bonus-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.proof-grid img {
  width: 100%;
  border: 6px solid #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.testimonial,
.bonus-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonial {
  padding: 14px;
}

.test-product {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
}

.person {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.person small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.bonuses {
  background: var(--green);
}

.bonuses h2,
.bonuses .eyebrow {
  color: #fff;
}

.bonus-card img {
  width: 100%;
}

.bonus-card div {
  padding: 18px;
}

.bonus-card span {
  display: inline-block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 1000;
}

.bonus-card s {
  color: var(--terra);
  margin-right: 6px;
}
.change {
  background: #163729;
  color: #fff;
  text-align: center;
}
.change h2 { color: #fff; }
.change-list p { border-left-color: var(--gold-light); }
.receive-box { margin-top: 22px; padding: 20px; }
.receive-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.receive-box li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 900;
}
.receive-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 1000;
}
.offer-section {
  background: linear-gradient(180deg, #fffaf0, #f6e5be);
  text-align: center;
}
.offer-card {
  position: relative;
  margin-top: 26px;
  padding: 26px 20px 22px;
  border: 3px solid var(--gold);
}
.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  color: #33220c;
  background: var(--gold-light);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}
.offer-copy { margin: 10px 0 0; }
.offer-table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  text-align: left;
}

.offer-table div {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

.offer-table span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 1000;
}

.offer-table p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}
.price { margin: 18px 0; text-align: center; }
.price .was {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-decoration: line-through;
}
.price strong {
  display: block;
  color: var(--terra);
  font-family: var(--ff-display);
  font-size: 54px;
  line-height: 1;
}
.price small { color: var(--muted); font-weight: 900; }
.guarantee { background: var(--green-soft); }
.guarantee-box {
  display: grid;
  gap: 18px;
  padding: 22px;
  text-align: center;
}
.guarantee-box img {
  width: 150px;
  margin: 0 auto;
}
details {
  margin-top: 12px;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 17px;
  font-weight: 1000;
}
details p { margin: 0; padding: 0 17px 17px; }
.final {
  padding: 48px 0 26px;
  background: #1f1a14;
  color: #fff;
  text-align: center;
}
.final h2 {
  margin-bottom: 22px;
  color: #fff;
}
.secure {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  opacity: .9;
}
.secure img { max-height: 34px; width: auto; }

@media (min-width: 780px) {
  .wrap { width: min(1120px, calc(100% - 48px)); }
  h1 { max-width: 920px; margin: 0 auto; font-size: 62px; }
  h2 { font-size: 44px; }
  .lead, .sublead { max-width: 760px; }
  .hero-img { max-width: 660px; }
  .benefits, .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story-grid, .guarantee-box { grid-template-columns: .82fr 1.18fr; align-items: center; }
  .proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .testimonial-grid,
  .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offer-card, .receive-box { max-width: 720px; margin-left: auto; margin-right: auto; }
}
