:root{
  --bg:#f5eddf;
  --bg-soft:#efe4d2;
  --panel:#fffaf1;
  --panel-2:#e0ead8;
  --green:#355f3c;
  --green-dark:#243f2a;
  --text:#2f2f2f;
  --muted:#6f6a61;
  --line:rgba(53,95,60,.18);
  --shadow:0 24px 70px rgba(53,95,60,.14);
  --radius:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit}
.pz-container{
  width:min(1160px, calc(100% - 36px));
  margin-inline:auto;
}

.pz-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(245,237,223,.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.pz-header__inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.pz-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.pz-logo__mark{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--green);
  border-radius:50%;
  font-family:"Playfair Display",serif;
  font-size:28px;
  color:var(--green);
}
.pz-logo small{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:-2px;
}
.pz-nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:14px;
}
.pz-nav a{
  text-decoration:none;
  color:var(--green-dark);
  font-weight:600;
}
@media(max-width:820px){
  .pz-nav{display:none}
}

.hero{
  position:relative;
  overflow:hidden;
  padding:80px 0 70px;
}
.hero:before{
  content:"";
  position:absolute;
  inset:-20% -10% auto auto;
  width:560px;
  height:560px;
  border-radius:50%;
  background:rgba(53,95,60,.08);
  filter:blur(2px);
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:54px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  color:var(--green);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  margin-bottom:14px;
}
h1,h2,h3{
  color:var(--green-dark);
  margin:0;
}
h1,h2{
  font-family:"Playfair Display",serif;
  line-height:1.04;
  font-weight:600;
}
h1{
  font-size:clamp(42px,7vw,82px);
  max-width:780px;
}
h2{
  font-size:clamp(34px,4.5vw,56px);
}
h3{
  font-size:21px;
}
.lead{
  font-size:clamp(19px,2vw,24px);
  color:#403d37;
  max-width:660px;
  margin:24px 0 14px;
}
.hero__promise{
  font-size:18px;
  color:var(--muted);
  max-width:620px;
  margin:0 0 28px;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}
.hero__actions--center{
  justify-content:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:800;
  transition:.18s ease;
}
.btn:hover{
  transform:translateY(-2px);
}
.btn--primary{
  background:var(--green);
  color:#fffaf1;
  box-shadow:0 12px 28px rgba(53,95,60,.22);
}
.btn--secondary{
  background:transparent;
  color:var(--green);
  border-color:var(--green);
}
.btn--ghost{
  background:#fffaf1;
  color:var(--green);
  border-color:var(--line);
}
.btn--full{width:100%}

.price-strip{
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:rgba(255,250,241,.72);
  border:1px solid var(--line);
  border-radius:18px;
  width:fit-content;
}
.price-strip__old{
  color:var(--muted);
  text-decoration:line-through;
}
.price-strip strong{
  font-size:24px;
  color:var(--green-dark);
}
.price-strip span:last-child{
  color:var(--muted);
  font-size:14px;
}

.hero__visual{
  position:relative;
  min-height:520px;
  display:grid;
  place-items:center;
}
.body-texture{
  position:absolute;
  width:min(92%,520px);
  opacity:.16;
  filter:saturate(.7);
}
.cover-card{
  position:relative;
  width:min(390px,82%);
  border-radius:26px;
  padding:14px;
  background:rgba(255,250,241,.78);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.cover-card img{
  border-radius:18px;
}

.section{
  padding:82px 0;
}
.section-head{
  max-width:820px;
  margin:0 auto 38px;
  text-align:center;
}
.section-head p{
  color:var(--muted);
  font-size:18px;
  margin:16px auto 0;
}

.problem{
  background:var(--panel);
}
.symptom-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.symptom{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
}
.symptom span{
  display:block;
  color:var(--green);
  font-weight:900;
  margin-bottom:12px;
}
.symptom p{
  color:var(--muted);
  margin-bottom:0;
}

.kit{
  background:var(--bg-soft);
}
.kit__grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:56px;
  align-items:center;
}
.kit__media{
  background:rgba(255,250,241,.65);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.kit__media img{border-radius:18px}
.big{
  font-size:21px;
  color:#403d37;
}
.checklist{
  list-style:none;
  margin:28px 0;
  padding:0;
  display:grid;
  gap:12px;
}
.checklist li{
  position:relative;
  padding-left:32px;
  color:var(--muted);
}
.checklist li:before{
  content:"";
  position:absolute;
  left:0;
  top:.35em;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--green);
  box-shadow:inset 0 0 0 5px var(--panel-2);
}
.note{
  background:var(--panel-2);
  color:var(--green-dark);
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(53,95,60,.18);
  font-weight:600;
}

.who{
  background:var(--panel);
}
.who-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.who-grid div{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  color:var(--green-dark);
  font-weight:700;
}

.bonus{
  background:var(--bg);
}
.bonus-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.bonus-card{
  overflow:hidden;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 18px 40px rgba(53,95,60,.08);
}
.bonus-card img{
  aspect-ratio:4/3;
  object-fit:cover;
  width:100%;
  background:var(--bg-soft);
}
.bonus-card div{
  padding:24px;
}
.bonus-card span{
  color:var(--green);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:900;
}
.bonus-card p{
  color:var(--muted);
}

.offer{
  background:var(--green-dark);
  color:#fffaf1;
}
.offer h2,
.offer .eyebrow{
  color:#fffaf1;
}
.offer__box{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:36px;
  align-items:center;
}
.offer-list{
  padding-left:0;
  list-style:none;
  display:grid;
  gap:12px;
  font-size:18px;
}
.offer-card{
  background:#fffaf1;
  color:var(--text);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 24px 70px rgba(0,0,0,.18);
}
.price-old{
  color:var(--muted);
  text-decoration:line-through;
  font-size:18px;
}
.price-now{
  color:var(--green-dark);
  font-size:44px;
  font-weight:900;
  margin:2px 0;
}
.promo-note{
  color:var(--muted);
  margin-bottom:20px;
}
.small{
  color:var(--muted);
  font-size:13px;
  margin-bottom:0;
}

.author{
  background:var(--panel);
}
.author__grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:54px;
  align-items:center;
}
.author__image{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.author__copy p{
  font-size:18px;
  color:var(--muted);
}

.faq{
  background:var(--bg);
}
.faq-list{
  max-width:860px;
  margin-inline:auto;
  display:grid;
  gap:12px;
}
.faq-list details{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 20px;
}
.faq-list summary{
  cursor:pointer;
  font-weight:900;
  color:var(--green-dark);
}
.faq-list p{
  color:var(--muted);
  margin-bottom:0;
}

.final-cta{
  text-align:center;
  padding:84px 0;
  background:linear-gradient(180deg,var(--panel-2),var(--bg));
}
.final-cta p{
  max-width:720px;
  margin:18px auto 28px;
  color:var(--muted);
  font-size:18px;
}

.pz-footer{
  padding:28px 0 96px;
  background:var(--green-dark);
  color:#fffaf1;
}
.pz-footer__inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.pz-footer span{
  display:block;
  opacity:.75;
}
.pz-footer a{
  text-decoration:none;
  font-weight:800;
}

.sticky-buy{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:60;
  background:rgba(255,250,241,.9);
  backdrop-filter:blur(14px);
  border-top:1px solid var(--line);
}
.sticky-buy__inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.sticky-buy span{
  display:block;
  color:var(--muted);
  font-size:13px;
}

@media(max-width:900px){
  .hero{
    padding:54px 0;
  }
  .hero__grid,
  .kit__grid,
  .offer__box,
  .author__grid{
    grid-template-columns:1fr;
  }
  .hero__visual{
    min-height:auto;
  }
  .symptom-grid,
  .who-grid,
  .bonus-grid{
    grid-template-columns:1fr;
  }
  .price-now{
    font-size:36px;
  }
}