/* ============================================================
   «Я готую сам» — MVP landing
   1. Tokens
   2. Base
   3. Layout helpers
   4. Buttons / price / badges
   5. Header
   6. Hero
   7. Product demonstration + lightbox
   8. Problem → Solution
   9. How it works
   10. Самостійно / допомога дорослого
   11. Why child can use it
   12. What's inside
   13. Benefits + emotional result
   14. Social proof
   15. Main offer
   16. FAQ
   17. Final CTA + footer
   18. Sticky CTA
   19. Modal / form
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root{
  /* colors */
  --bg-cream:#FBF6E9;
  --bg-soft:#F1F5E7;
  --surface:#FFFFFF;
  --green-900:#2E5A22;
  --green-700:#3E6E27;
  --green-600:#4F7F2A;
  --green-500:#67963A;
  --green-100:#E7F0D9;
  --amber-500:#F2A33C;
  --amber-600:#E08E22;
  --amber-100:#FDEFD6;
  --ink:#2B2A26;
  --muted:#6E6C63;
  --line:rgba(46,90,34,.12);
  --line-soft:rgba(46,90,34,.07);

  /* radius */
  --r-sm:12px;
  --r-md:16px;
  --r-lg:20px;
  --r-xl:26px;
  --r-pill:999px;

  /* shadow */
  --shadow-card:0 6px 22px rgba(80,66,26,.06);
  --shadow-media:0 14px 40px rgba(80,66,26,.10);
  --shadow-cta:0 8px 20px rgba(79,127,42,.24);

  /* spacing */
  --pad:20px;
  --section-y:56px;
  --gap:16px;

  /* layout */
  --container:1120px;
  --container-narrow:760px;

  /* type */
  --font:"Nunito","Segoe UI",Roboto,-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
  --fs-body:16.5px;
  --lh-body:1.6;

  /* controls */
  --btn-h:56px;
  --btn-h-sm:40px;
}

@media (min-width:600px){
  :root{ --pad:28px; --section-y:72px; }
}
@media (min-width:980px){
  :root{ --pad:32px; --section-y:96px; --fs-body:17px; --btn-h:60px; }
}

/* ---------- 2. BASE ---------- */
*,*::before,*::after{ box-sizing:border-box; }

html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg-cream);
  color:var(--ink);
  font-family:var(--font);
  font-size:var(--fs-body);
  line-height:var(--lh-body);
  font-weight:400;
  overflow-x:hidden;
  overflow-wrap:break-word;
  -webkit-font-smoothing:antialiased;
}

img{ display:block; max-width:100%; height:auto; }
figure{ margin:0; }
button{ font:inherit; color:inherit; }
a{ color:var(--green-700); }

h1,h2,h3{ margin:0; color:var(--green-900); font-weight:800; line-height:1.15; letter-spacing:-.01em; }
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }

:focus-visible{ outline:3px solid var(--green-600); outline-offset:3px; border-radius:6px; }

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* ---------- 3. LAYOUT HELPERS ---------- */
.container{
  width:100%;
  max-width:calc(var(--container) + var(--pad)*2);
  margin-inline:auto;
  padding-inline:var(--pad);
}
.container--narrow{ max-width:calc(var(--container-narrow) + var(--pad)*2); }

.section{ padding-block:var(--section-y); }
.section--white{ background:var(--surface); }
.section--tight{ padding-block:calc(var(--section-y) * .62); }
.section--soft{ background:var(--bg-soft); }

.section__head{
  max-width:720px;
  margin:0 auto 32px;
  text-align:center;
}
.section__cta{ margin-top:32px; text-align:center; }


.h2{ font-size:clamp(25px,5.4vw,38px); }
.lead{ color:var(--muted); font-size:clamp(16px,3.6vw,18px); }
.lead--center{ margin-top:14px; }


/* ---------- 4. BUTTONS / PRICE / BADGES ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:var(--btn-h-sm);
  padding:0 18px;
  border:0;
  border-radius:var(--r-sm);
  background:var(--green-600);
  color:#fff;
  font-weight:800;
  font-size:15px;
  line-height:1.2;
  text-align:center;
  cursor:pointer;
  transition:background .18s ease, transform .12s ease, box-shadow .18s ease;
}
.btn:hover{ background:var(--green-700); }
.btn:active{ transform:translateY(1px); }


.btn--lg{
  min-height:var(--btn-h);
  padding:0 26px;
  border-radius:var(--r-md);
  font-size:17.5px;
  box-shadow:var(--shadow-cta);
}
.btn--lg:hover{ transform:translateY(-1px); }

.btn--block{ display:flex; width:100%; }

.btn--ghost{
  background:transparent;
  color:var(--green-700);
  border:2px solid var(--green-600);
  min-height:52px;
  padding:0 24px;
  border-radius:var(--r-md);
  font-size:16.5px;
  box-shadow:none;
}
.btn--ghost:hover{ background:var(--green-100); color:var(--green-900); transform:none; }

/* price */
.price{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:6px;
}
.price__old{
  font-size:17px;
  font-weight:600;
  color:#78756A;
  text-decoration:line-through;
}
.price__new{
  font-size:clamp(32px,7vw,40px);
  font-weight:900;
  color:var(--green-900);
  letter-spacing:-.02em;
  line-height:1;
}
.price__badge{
  align-self:center;
  padding:4px 10px;
  border-radius:var(--r-pill);
  background:var(--amber-500);
  color:#fff;
  font-size:13.5px;
  font-weight:800;
  letter-spacing:.02em;
}
.price--lg .price__new{ font-size:clamp(38px,8vw,48px); }
.price--sm .price__new{ font-size:30px; }

.fineprint{
  margin:12px 0 0;
  font-size:13.5px;
  color:var(--muted);
}

/* chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 22px;
  padding:0;
  list-style:none;
}
.chip{
  padding:7px 13px;
  border-radius:var(--r-pill);
  background:var(--green-100);
  color:var(--green-900);
  font-size:14px;
  font-weight:700;
}

/* badges — фірмова система позначок продукту */
.badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:9px 15px 9px 10px;
  border-radius:var(--r-md);
  font-size:15px;
  font-weight:800;
  line-height:1.25;
}
.badge__icon{ width:24px; height:24px; flex:none; }
.badge__icon svg{ width:100%; height:100%; display:block; }
.badge--self{ background:var(--green-100); color:var(--green-900); }
.badge--self .badge__icon{ color:var(--green-600); }
.badge--adult{ background:var(--amber-100); color:#8A5A11; }
.badge--adult .badge__icon{ color:var(--amber-500); }

.legend{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:22px 0 0;
  padding:0;
  list-style:none;
}

/* ticks */
.ticks{ margin:0; padding:0; list-style:none; }
.ticks li{
  position:relative;
  padding-left:30px;
  margin-bottom:12px;
  font-size:16px;
}
.ticks li:last-child{ margin-bottom:0; }
.ticks li::before{
  position:absolute;
  left:0; top:.15em;
  width:20px; height:20px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-size:13px;
  font-weight:900;
}
.ticks--plus li::before{ content:"✓"; background:var(--green-100); color:var(--green-700); }

/* generic card */
.card{
  padding:22px;
  border-radius:var(--r-lg);
  background:var(--surface);
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-card);
}
.card__title{ font-size:19px; margin-bottom:12px; }
.card p{ color:var(--muted); font-size:15.5px; }

/* ---------- 5. HEADER ---------- */
.site-header{
  padding-block:14px;
  background:var(--bg-cream);
}
.site-header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  color:var(--green-900);
  font-weight:900;
  font-size:21px;
  letter-spacing:-.015em;
}
.logo__mark{
  width:36px; height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green-100);
  color:var(--green-600);
}
.logo__mark svg{ width:22px; height:22px; }
.site-footer__brand .logo__mark{ width:30px; height:30px; }
.site-footer__brand .logo__mark svg{ width:19px; height:19px; }

/* ---------- 6. HERO ---------- */
.hero{
  position:relative;
  padding-block:14px 44px;
}
.hero__grid{ display:grid; gap:22px; }
.hero__intro{ order:1; }
.hero__media{ order:2; }
.hero__offer{ order:3; }

.hero__title{
  font-size:clamp(28px,7.6vw,44px);
  line-height:1.1;
  margin-bottom:14px;
  text-wrap:balance;
}
.hero__media img{
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-media);
  width:100%;
  height:auto;
}

@media (min-width:980px){
  .hero{ padding-block:26px 84px; }
  .hero__grid{
    grid-template-columns:minmax(0,1fr) minmax(0,1.02fr);
    column-gap:56px;
    row-gap:26px;
    align-items:start;
  }
  .hero__intro{ grid-column:1; grid-row:1; }
  .hero__offer{ grid-column:1; grid-row:2; }
  .hero__media{ grid-column:2; grid-row:1 / span 2; align-self:center; }
  .hero__offer .btn--block{ display:inline-flex; width:auto; }
  .hero__title{ margin-bottom:18px; }
}

/* ---------- 7. PRODUCT DEMONSTRATION ---------- */
.flow{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:8px;
  max-width:760px;
  margin:0 auto 26px;
  padding:0;
  list-style:none;
}
.flow__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.flow__item span{
  padding:8px 14px;
  border-radius:var(--r-pill);
  background:var(--bg-soft);
  color:var(--green-900);
  font-size:14px;
  font-weight:700;
}
.section--white .flow__item span{ background:var(--bg-cream); }
.flow__item + .flow__item::before{
  content:"→";
  color:var(--green-500);
  font-weight:800;
}

.recipes{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  margin-inline:calc(var(--pad) * -1);
  padding:4px var(--pad) 8px;
}
.recipes::-webkit-scrollbar{ display:none; }

.recipe{ flex:0 0 84%; scroll-snap-align:center; }
.recipe__btn{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:none;
  cursor:zoom-in;
  border-radius:var(--r-lg);
}
.recipe__btn img{
  width:100%;
  border-radius:var(--r-lg);
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-media);
  background:#fff;
}
.recipe__cap{
  margin-top:11px;
  text-align:center;
  font-size:15px;
  font-weight:800;
  color:var(--green-900);
}
.only-desktop{ display:none; }
.recipes__hint{
  margin:14px 0 0;
  text-align:center;
  font-size:14px;
  color:var(--muted);
}

@media (min-width:980px){
  .recipes{
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(0,1fr);
    align-content:start;
    align-items:start;
    gap:22px 26px;
    overflow:visible;
    margin-inline:0;
    padding:0;
  }
  .recipe{ flex:none; }
  .recipe.is-active{ grid-column:1; grid-row:1 / span 3; }
  .recipe:not(.is-active){ grid-column:2; }
  .recipe:not(.is-active) .recipe__btn{ cursor:pointer; }
  .recipe:not(.is-active) img{
    aspect-ratio:16/9;
    object-fit:cover;
    object-position:top center;
    opacity:.86;
    transition:opacity .18s ease, transform .18s ease;
    box-shadow:var(--shadow-card);
  }
  .recipe:not(.is-active):hover img{ opacity:1; transform:translateY(-2px); }
  .recipe:not(.is-active) .recipe__cap{ font-size:14.5px; margin-top:8px; }
  .recipes__hint{ text-align:left; }
  .only-desktop{ display:inline; }
  .only-mobile{ display:none; }
}

/* lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:80;
  display:flex;
  flex-direction:column;
  background:rgba(32,29,20,.94);
  padding-bottom:env(safe-area-inset-bottom);
}
.lightbox[hidden]{ display:none; }
.lightbox__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 16px;
  color:#fff;
}
.lightbox__title{ font-weight:800; font-size:15.5px; }
.lightbox__close,
.lightbox__arrow{
  width:44px; height:44px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:#fff;
  cursor:pointer;
}
.lightbox__close svg,
.lightbox__arrow svg{ width:22px; height:22px; }
.lightbox__close:hover,
.lightbox__arrow:hover{ background:rgba(255,255,255,.26); }
.lightbox__stage{
  flex:1;
  min-height:0;
  overflow:auto;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:0 12px 12px;
}
.lightbox__stage img{
  max-height:100%;
  width:auto;
  max-width:100%;
  border-radius:var(--r-md);
  background:#fff;
  cursor:zoom-in;
  margin:auto;
}
.lightbox__stage.is-zoomed{ align-items:flex-start; }
.lightbox__stage.is-zoomed img{
  width:1024px;
  max-width:none;
  max-height:none;
  cursor:zoom-out;
  margin:0 auto;
}
.lightbox__nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:10px 16px 16px;
  color:#fff;
}
.lightbox__count{ font-weight:700; font-size:15px; min-width:52px; text-align:center; }

/* ---------- 8. PROBLEM → SOLUTION ---------- */
.compare{ display:grid; gap:12px; }
.compare .card{ padding:18px 20px; }
.compare .card__title{ font-size:17px; margin-bottom:8px; }
.compare .card p{ font-size:15.5px; }
.card--plain{ background:#F7F5EE; box-shadow:none; }
.card--plain .card__title{ color:#7C7A70; }
.card--highlight{ border:2px solid var(--green-500); }
@media (min-width:760px){
  .compare{ grid-template-columns:1fr 1fr; gap:20px; }
}

/* ---------- 9. HOW IT WORKS ---------- */
.how{ display:grid; gap:28px; }
.steps{ margin:0; padding:0; list-style:none; }
.step{
  display:flex;
  gap:14px;
  padding:16px 0;
  border-bottom:1px solid var(--line-soft);
}
.step:last-child{ border-bottom:0; }
.step__num{
  flex:none;
  width:34px; height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green-600);
  color:#fff;
  font-weight:900;
  font-size:16px;
}
.step__title{ font-size:18px; margin-bottom:5px; }
.step__text{ color:var(--muted); font-size:15.5px; margin:0; }

.how__media img{
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-media);
  width:100%;
  height:auto;
}

@media (min-width:980px){
  .how{ grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
  }

.offerline{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-top:36px;
  padding:24px;
  border-radius:var(--r-xl);
  background:var(--surface);
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-card);
  text-align:center;
}
.offerline .price{ margin-bottom:0; justify-content:center; }
.offerline .btn{ width:100%; }
@media (min-width:760px){
  .offerline{ flex-direction:row; justify-content:center; gap:28px; padding:26px 32px; }
  .offerline .btn{ width:auto; }
}
.section--white .offerline{ background:var(--bg-cream); }

/* ---------- 10. САМОСТІЙНО / ДОПОМОГА ---------- */
.split{
  margin:0 0 26px;
}
/* V10 — цілісна композиція: показуємо повністю, без cover і без фіксованої висоти */
.split img{
  display:block;
  width:100%;
  height:auto;
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-media);
}
@media (min-width:760px){
  .split{ margin-bottom:32px; }
  .split img{ border-radius:var(--r-xl); }
}

.safety{ display:grid; gap:14px; }
.safety__col{
  padding:18px;
  border-radius:var(--r-lg);
  background:var(--surface);
  border:1px solid var(--line-soft);
}
.safety__col p{ margin:10px 0 0; color:var(--muted); font-size:15.5px; }
@media (min-width:640px){
  .safety{ grid-template-columns:1fr 1fr; gap:18px; }
}

/* ---------- 12. WHAT'S INSIDE ---------- */
.inside{ display:grid; gap:22px; }
.inside__media img{
  width:100%;
  height:auto;
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-media);
}
.inside__list{
  padding:20px;
  border-radius:var(--r-lg);
  background:var(--surface);
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-card);
}
.inside__list li{ font-weight:700; color:var(--green-900); font-size:16px; }
.formats-line{
  margin:14px 0 0;
  text-align:center;
  font-size:14.5px;
  font-weight:700;
  color:var(--muted);
  letter-spacing:.01em;
}
@media (min-width:880px){
  .inside{ grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:40px; align-items:center; }
  .formats-line{ text-align:left; padding-left:20px; }
}

/* ---------- 13. EMOTIONAL RESULT ---------- */
.emotion{ padding-block:0 var(--section-y); background:var(--bg-cream); }
.emotion__media img{
  width:100%;
  height:auto;
}
.emotion__title{
  margin:26px auto 0;
  max-width:760px;
  text-align:center;
  font-size:clamp(24px,5.6vw,38px);
  line-height:1.2;
  text-wrap:balance;
}
.emotion__text{
  margin:14px auto 0;
  max-width:640px;
  text-align:center;
  color:var(--muted);
  font-size:clamp(16px,3.6vw,18px);
}
.emotion__pair{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  max-width:760px;
  margin:20px auto 0;
  padding:0;
  list-style:none;
}
.emotion__pair li{
  padding:10px 16px;
  border-radius:var(--r-pill);
  background:var(--green-100);
  color:var(--green-900);
  font-size:15px;
}
.emotion__pair strong{ font-weight:800; }
@media (min-width:760px){
  .emotion{ padding-block:var(--section-y); }
  .emotion__media{
    max-width:1040px;
    margin-inline:auto;
    padding-inline:var(--pad);
  }
  .emotion__media img{
    border-radius:var(--r-xl);
    box-shadow:var(--shadow-media);
  }
}

/* ---------- 14. SOCIAL PROOF ---------- */
.reviews{ display:grid; gap:14px; }
.review{
  margin:0;
  padding:18px 20px;
  border-radius:var(--r-lg);
  background:var(--surface);
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-card);
}
.review p{ font-size:15.5px; color:var(--ink); margin-bottom:14px; }
.review footer{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:14.5px;
  color:var(--muted);
}
.review__ini{
  width:36px; height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green-100);
  color:var(--green-700);
  font-size:13.5px;
  font-weight:900;
}
@media (min-width:880px){
  .reviews{ grid-template-columns:repeat(3,1fr); gap:18px; }
}

/* ---------- 15. MAIN OFFER ---------- */
.offer{
  display:grid;
  gap:24px;
  padding:20px;
  border-radius:var(--r-xl);
  background:var(--surface);
  border:2px solid var(--green-500);
  box-shadow:var(--shadow-media);
}
.offer__media img{
  width:100%;
  height:auto;
  border-radius:var(--r-lg);
}
.offer__title{ font-size:clamp(26px,6vw,34px); }
.offer__sub{ margin:6px 0 18px; color:var(--muted); font-size:16.5px; }
.offer__list{ margin-bottom:18px; }
.offer__list li{ font-size:15.5px; }
.offer__meta{
  margin:0 0 16px;
  font-size:14.5px;
  font-weight:700;
  color:var(--muted);
}
@media (min-width:980px){
  .offer{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:44px;
    padding:36px;
    align-items:center;
  }
}

/* ---------- 16. FAQ ---------- */
.faq{ display:grid; gap:10px; }
.faq__item{
  border-radius:var(--r-md);
  background:var(--bg-cream);
  border:1px solid var(--line-soft);
  overflow:hidden;
}
.faq__item summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:17px 18px;
  cursor:pointer;
  font-weight:800;
  font-size:16.5px;
  color:var(--green-900);
  list-style:none;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::after{
  content:"";
  flex:none;
  width:12px; height:12px;
  border-right:2.5px solid var(--green-600);
  border-bottom:2.5px solid var(--green-600);
  transform:rotate(45deg) translateY(-3px);
  transition:transform .2s ease;
}
.faq__item[open] summary::after{ transform:rotate(225deg) translateY(-3px); }
.faq__body{ padding:0 18px 18px; color:var(--muted); font-size:15.5px; }

/* ---------- 17. FINAL CTA + FOOTER ---------- */
.final{
  padding-block:var(--section-y);
  background:var(--bg-soft);
}
.final__grid{ display:grid; gap:26px; }
.final__media img{
  width:100%;
  height:auto;
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-media);
}
.final__body .lead{ margin-bottom:22px; }
@media (min-width:980px){
  .final__grid{ grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:56px; align-items:center; }
  .final__body .btn--block{ display:inline-flex; width:auto; }
}

.site-footer{
  padding-block:32px calc(32px + env(safe-area-inset-bottom));
  background:var(--green-900);
  color:rgba(255,255,255,.78);
  font-size:14.5px;
}
.site-footer__row{ display:grid; gap:14px; }
.site-footer__brand{
  display:flex;
  align-items:center;
  gap:9px;
  color:#fff;
  font-weight:900;
  font-size:16px;
}
.site-footer__brand .logo__mark{ background:rgba(255,255,255,.14); color:#fff; }
.site-footer__links{ display:flex; flex-wrap:wrap; gap:8px 20px; }
.site-footer__links a{ color:rgba(255,255,255,.86); text-decoration:none; }
.site-footer__links a:hover{ color:#fff; text-decoration:underline; }
.site-footer__copy{ margin:0; color:rgba(255,255,255,.6); font-size:13.5px; }
@media (min-width:880px){
  .site-footer__row{
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:32px;
  }
  .site-footer__links{ justify-content:center; }
}

/* ---------- 18. STICKY CTA ---------- */
.stickybar{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  padding:10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background:rgba(251,246,233,.96);
  backdrop-filter:blur(6px);
  border-top:1px solid var(--line);
  transform:translateY(120%);
  transition:transform .26s ease;
}
.stickybar[hidden]{ display:none; }
.stickybar.is-visible{ transform:translateY(0); }
.stickybar__inner{
  display:flex;
  align-items:center;
  gap:14px;
  max-width:var(--container);
  margin-inline:auto;
}
.stickybar__price{ display:flex; flex-direction:column; line-height:1.15; }
.stickybar__old{
  font-size:12.5px;
  color:#78756A;
  text-decoration:line-through;
}
.stickybar__new{
  font-size:20px;
  font-weight:900;
  color:var(--green-900);
}
.btn--sticky{
  flex:1;
  min-height:52px;
  border-radius:var(--r-md);
  font-size:16.5px;
}
@media (min-width:980px){
  .stickybar{ display:none; }
}

/* ---------- 19. MODAL / FORM ---------- */
.modal{
  position:fixed;
  inset:0;
  z-index:90;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:0;
}
.modal[hidden]{ display:none; }
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(35,32,22,.55);
}
.modal__dialog{
  position:relative;
  width:100%;
  max-width:460px;
  max-height:92vh;
  overflow-y:auto;
  padding:26px 20px calc(24px + env(safe-area-inset-bottom));
  border-radius:var(--r-xl) var(--r-xl) 0 0;
  background:var(--bg-cream);
  box-shadow:0 -10px 40px rgba(35,32,22,.22);
}
@media (min-width:600px){
  .modal{ align-items:center; padding:24px; }
  .modal__dialog{ border-radius:var(--r-xl); padding:30px 28px; }
}
.modal__close{
  position:absolute;
  top:12px; right:12px;
  width:40px; height:40px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:50%;
  background:rgba(46,90,34,.08);
  color:var(--green-900);
  cursor:pointer;
}
.modal__close svg{ width:20px; height:20px; }
.modal__close:hover{ background:rgba(46,90,34,.16); }
.modal__title{ font-size:24px; padding-right:44px; }
.modal__text{ margin:10px 0 20px; color:var(--muted); font-size:15.5px; }
.modal__step--success{ text-align:center; padding-top:8px; }
.modal__step--success .modal__title{ padding-right:0; }
.modal__check{
  display:block;
  width:56px; height:56px;
  margin:0 auto 14px;
  color:var(--green-600);
}
.modal__check svg{ width:100%; height:100%; }

.field{ margin-bottom:16px; }
.field label{
  display:block;
  margin-bottom:6px;
  font-weight:700;
  font-size:15px;
  color:var(--green-900);
}
.field__opt{ font-weight:600; color:var(--muted); }
.field input{
  width:100%;
  min-height:52px;
  padding:0 14px;
  border:1.5px solid var(--line);
  border-radius:var(--r-sm);
  background:#fff;
  font-family:inherit;
  font-size:16px;
  color:var(--ink);
}
.field input:focus{ outline:none; border-color:var(--green-600); box-shadow:0 0 0 3px rgba(79,127,42,.16); }
.field.has-error input{ border-color:#C0442E; }
.field__error,
.form__error{
  margin:6px 0 0;
  font-size:14px;
  color:#C0442E;
  font-weight:600;
}
.form__error{ margin-bottom:12px; }
#leadSubmit[disabled]{ opacity:.65; cursor:progress; }

body.is-locked{ overflow:hidden; }
