.head1 { margin-top: 0; line-height: 1.14; font-size: clamp(2.45rem, 5vw, 3.5rem); font-weight: 700; }
.head2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.025em; font-weight: 700; }
.head3 { margin-bottom: 10px; font-size: 1.25rem; }
.head3, .head2, .head1 { margin-top: 0; line-height: 1.14; }

:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-soft: #eef6e8;
  --text: #17211a;
  --muted: #5c685f;
  --brand: #4b9e2f;
  --brand-dark: #2f761c;
  --accent: #f4b740;
  --border: #dce4da;
  --shadow: 0 18px 50px rgba(30, 55, 34, 0.10);
  --radius: 22px;
  --max: 1300px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a { color: var(--brand-dark); }

.plus-page {
  width: min(calc(100% - 20px), var(--max));
  margin: 22px auto 52px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 44px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  background: radial-gradient(circle at top right, rgba(244,183,64,.22), transparent 34%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 22px;
}

.price strong, .checkout__price strong {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -.04em;
}

.price span, .checkout__price span {
  color: var(--muted);
  font-weight: 700;
}

.checklist {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 30px;
}

.checklist li::before {
  position: absolute;
  left: 0;
  content: "\2713";
  color: var(--brand);
  font-size: 1.18rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(75,158,47,.24);
}

.button--primary:hover { background: var(--brand-dark); }
.button--wide { width: 100%; }
.button--light { color: var(--brand-dark); background: #fff; }

.microcopy, .payment-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.hero__card {
  padding: 30px;
  background: linear-gradient(155deg, var(--surface-soft), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mascot {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fff;
  font-size: 2.8rem;
}

.hero__card-label {
  margin: 0 0 6px;
  color: var(--brand-dark);
  font-weight: 800;
}

.hero__card .head2 { margin-bottom: 12px; font-size: 2rem; }
.hero__card p { color: var(--muted); }

.support-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: rgba(244,183,64,.14);
  border-radius: 10px;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 22px 0 70px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--border);
}

.trust-strip div {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: var(--surface);
  text-align: center;
}

.trust-strip strong { font-size: 1.45rem; }
.trust-strip span { color: var(--muted); font-size: .92rem; }

.section { margin: 84px 0; }
.section__intro { max-width: 760px; margin-bottom: 32px; }
.section__intro > p:last-child { color: var(--muted); font-size: 1.08rem; }

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.benefit__icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  background: var(--surface-soft);
  font-size: 1.6rem;
}

.benefit p, .story p, .faq p { color: var(--muted); }

.story {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  margin: 84px 0;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  background: #203723;
  color: #fff;
}

.story .eyebrow { color: #b9e1a8; }
.story p { color: #d8e2da; font-size: 1.07rem; }

.checkout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
  margin: 84px 0;
  padding: clamp(30px, 5vw, 58px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.checkout__price {
  display: flex;
  flex-direction: column;
  margin: 16px 0 22px;
}

.checklist--compact { margin-bottom: 0; }

.checkout__payment {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(155deg, var(--surface-soft), #fff);
}

.legal-check {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.legal-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.faq__items { display: grid; gap: 12px; }

details {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

summary { cursor: pointer; font-weight: 800; }

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
}

.final-cta .eyebrow { color: #d6efcc; }
.final-cta p:last-child { margin-bottom: 0; color: #e5f2e0; }

@media (max-width: 900px) {
  .hero, .story, .checkout { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .plus-page { width: min(calc(100% - 20px), var(--max)); margin-top: 10px; }
  .hero { padding: 26px 22px; border-radius: 20px; }
  .head1 { font-size: 2.5rem; }
  .benefits, .trust-strip { grid-template-columns: 1fr; }
  .final-cta { align-items: stretch; flex-direction: column; }
  .button { width: calc(100% - 50px); }
}

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark
{
  position: relative;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  cursor: pointer;
}

.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}