/* ============================================================
   דף נחיתה — איך כן | ליווי לילדים ולבני נוער
   ------------------------------------------------------------
   גיליון סגנון עצמאי לחלוטין. אינו תלוי ב-styles.css של האתר,
   כדי לשמור על טעינה מהירה ועל בידוד מלא מהאתר הראשי.

   פלטה לפי מסמך האפיון: סגול, ירוק, כחול וזהב על רקעים בהירים.
   הסגול נבחר עמוק ומעומעם (חצילי) ולא ויולט רווי, הירוק מרווה־
   מרווה (מרווה/אקליפטוס) והכחול אבק־כחול. הזהב הוא הצבע הבולט
   היחיד, ושמור לכפתור הראשי בלבד — כדי שתהיה קריאה לפעולה אחת
   ברורה בכל הדף.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;600;700&family=Gveret+Levin&family=Heebo:wght@300;400;500;600;700&display=swap');

:root{
  /* neutrals — warm paper, never stark white */
  --paper:      #FBF9F5;
  --paper-2:    #F4F1EA;
  --mist:       #F933;              /* fallback guard, overridden below */
  --mist:       #F1EDF5;            /* faint lavender panel */
  --sage-pale:  #EAF0EA;            /* faint green panel */
  --line:       #DFD8E4;

  /* the four brief colours */
  --plum:       #2E2140;            /* deep aubergine — ink + headings */
  --plum-mid:   #4C3A63;            /* secondary purple */
  --plum-soft:  #7A6892;            /* muted purple for meta text */
  --sage:       #5C7D61;            /* muted green */
  --sage-deep:  #46613F;
  --blue:       #3F5D89;            /* dusty blue — links, labels */
  --blue-soft:  #A9BBD9;
  --gold:       #C99A3E;            /* the single bright accent — CTA only */
  --gold-deep:  #A87F2C;
  --gold-pale:  #F3E7CC;

  --danger:     #9B2C1E;

  /* identical stacks to styles.css, so the landing page reads as the same brand */
  --font-display: 'Gveret Levin', 'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-body: 'Gveret Levin', 'Heebo', 'Arial Hebrew', Arial, sans-serif;

  --shell: 1120px;
  --pad: clamp(3.25rem, 7vw, 5.5rem);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; overflow-x: hidden; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: var(--blue); }

h1, h2, h3{
  font-family: var(--font-display);
  color: var(--plum);
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.005em;
}
p{ margin: 0; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }

.shell{
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* focus — visible everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible{
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position: fixed;
  top: .75rem;
  inset-inline-start: 50%;
  transform: translateX(50%) translateY(-160%);
  z-index: 300;
  background: var(--plum);
  color: var(--paper);
  padding: .7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s var(--ease);
}
.skip-link:focus{ transform: translateX(50%) translateY(0); }

.sr-only{
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================== BUTTONS ============================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .9rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform .22s var(--ease), background-color .22s var(--ease), box-shadow .22s var(--ease);
}
/* the one and only primary CTA colour on this page */
.btn-primary{
  background: var(--gold);
  color: var(--plum);
  box-shadow: 0 10px 24px -14px rgba(168,127,44,.9);
}
.btn-primary:hover{
  background: var(--gold-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-secondary{
  background: transparent;
  border-color: var(--plum-mid);
  color: var(--plum);
}
.btn-secondary:hover{ background: var(--plum); color: var(--paper); }
.btn-block{ width: 100%; }

/* ============================== HEADER (no navigation out) ============================== */
.lp-header{
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.lp-header .shell{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .8rem;
}
.lp-brand{
  display: flex;
  align-items: center;
  gap: .7rem;
}
.lp-brand img{
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.lp-brand-name{
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.2;
}
.lp-brand-tag{
  display: block;
  font-size: .74rem;
  color: var(--plum-soft);
  font-weight: 500;
}
.header-tel{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.header-tel svg{ width: 19px; height: 19px; flex: none; }
.header-tel:hover{ color: var(--plum); }

/* ============================== HERO ============================== */
.hero{ padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4rem); }
.hero .shell{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero h1{
  font-size: clamp(1.85rem, 4.3vw, 2.85rem);
  line-height: 1.32;
  margin-bottom: 1.1rem;
  max-width: 19ch;
}
.hero-sub{
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--plum-mid);
  max-width: 52ch;
  margin-bottom: 1.6rem;
}
.trust-line{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.35rem;
  margin-bottom: 1.8rem;
  padding-inline-start: 0;
}
.trust-line li{
  position: relative;
  font-size: .93rem;
  font-weight: 600;
  color: var(--sage-deep);
}
.trust-line li + li::before{
  content: "";
  position: absolute;
  inset-inline-start: -.78rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1rem;
}
.hero-note{
  font-size: .9rem;
  color: var(--plum-soft);
  max-width: 46ch;
}

/* portrait — a soft arch, one squared corner, thin gold offset frame */
.hero-media{
  position: relative;
  justify-self: center;
  width: min(400px, 88%);
}
.hero-media::before{
  content: "";
  position: absolute;
  inset: 7% 7% -8% -8%;
  border: 2px solid var(--gold);
  border-radius: 150px 150px 18px 18px;
  z-index: 0;
}
.hero-media figure{
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 150px 150px 18px 18px;
  overflow: hidden;
  aspect-ratio: 4 / 4.7;
  background: var(--paper-2);
}
.hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ============================== SECTION SHELL ============================== */
.band{ padding-block: var(--pad); }
.band--mist{ background: var(--mist); }
.band--sage{ background: var(--sage-pale); }
.band--paper2{ background: var(--paper-2); }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--blue);
  margin-bottom: .8rem;
}
.eyebrow::before{
  content: "";
  width: 24px; height: 2px;
  background: var(--gold);
  flex: none;
}
.band h2{
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 1.1rem;
  max-width: 24ch;
}
.band-intro{
  color: var(--plum-mid);
  max-width: 62ch;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.band-note{
  margin-top: 1.6rem;
  font-size: .93rem;
  color: var(--plum-soft);
  font-style: italic;
  max-width: 62ch;
  border-inline-start: 3px solid var(--blue-soft);
  padding-inline-start: 1rem;
}

/* ============================== IDENTIFICATION LIST ============================== */
.signs{
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  margin-bottom: 2rem;
}
.signs li{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 3rem 1rem 1.2rem;
  line-height: 1.7;
  color: var(--plum);
}
.signs li::before{
  content: "";
  position: absolute;
  inset-inline-start: 1.15rem;
  top: 1.5rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--sage);
}
.reassure{
  background: var(--paper);
  border-inline-start: 4px solid var(--sage);
  border-radius: 0 14px 14px 0;
  padding: 1.15rem 1.4rem;
  color: var(--plum);
  line-height: 1.8;
  max-width: 66ch;
  margin-bottom: 1.9rem;
}

/* ============================== GOALS LIST ============================== */
.goals{
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem 2.2rem;
}
.goals li{
  position: relative;
  padding-inline-start: 2rem;
  line-height: 1.75;
  color: var(--plum-mid);
}
.goals li::before{
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .62em;
  width: 11px; height: 7px;
  border-inline-start: 2.5px solid var(--sage);
  border-bottom: 2.5px solid var(--sage);
  transform: rotate(-45deg);
}

/* ============================== THE PATH — signature element ============================== */
.path{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: .5rem;
  counter-reset: pathstep;
}
.path li{
  counter-increment: pathstep;
  position: relative;
  padding: 0 3.4rem 2.1rem 0;
}
.path li:last-child{ padding-bottom: 0; }
/* the rail */
.path li::before{
  content: "";
  position: absolute;
  inset-inline-start: auto;
  inset-inline-end: 1.28rem;
  top: 2.6rem;
  bottom: -.2rem;
  width: 2px;
  background: var(--gold-pale);
}
.path li:last-child::before{ display: none; }
/* the node */
.path li::after{
  content: counter(pathstep);
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
  color: var(--plum);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.path h3{
  font-size: 1.12rem;
  margin-bottom: .35rem;
  padding-top: .35rem;
}
.path p{
  color: var(--plum-mid);
  line-height: 1.75;
  font-size: .99rem;
}

/* ============================== WHY / REASONS ============================== */
.reasons{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.reason{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  line-height: 1.75;
  color: var(--plum-mid);
}
.reason strong{ color: var(--plum); display: block; margin-bottom: .3rem; font-size: 1.03rem; }

/* ============================== ABOUT YAEL ============================== */
.about .shell{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.about-media{
  justify-self: center;
  width: min(330px, 78%);
}
.about-media figure{
  margin: 0;
  border-radius: 18px 120px 18px 120px;
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  background: var(--paper-2);
}
.about-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-copy p{ color: var(--plum-mid); line-height: 1.85; margin-bottom: 1.1rem; }
.about-copy p strong{ color: var(--plum); }

/* ============================== עמוד תודה ==============================
   מוצג רק אחרי שליחה מוצלחת. זהו המקום היחיד במשפך שבו נפתחת הדלת
   אל האתר המלא — לפני ההמרה דף הנחיתה נשאר סגור. */
.confirm{
  padding-block: clamp(2.75rem, 7vw, 4.75rem);
  text-align: center;
}
.confirm-mark{
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  background: var(--sage-pale);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.confirm-mark svg{ width: 34px; height: 34px; }
.confirm h1{
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.35;
  margin-bottom: 1.1rem;
}
.confirm-lead{
  color: var(--plum-mid);
  font-size: 1.06rem;
  line-height: 1.85;
  max-width: 46ch;
  margin: 0 auto 2rem;
}

/* ---------- הדלת אל האתר ---------- */
.explore-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: .5rem;
}
.explore-card{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.explore-card:hover{
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 30px -22px rgba(46,33,64,.55);
}
.explore-kind{
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--blue);
}
.explore-card h3{
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--plum);
}
.explore-card p{
  color: var(--plum-mid);
  font-size: .96rem;
  line-height: 1.7;
  flex-grow: 1;
}
.explore-more{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .93rem;
  color: var(--gold-deep);
}
.explore-more svg{ width: 17px; height: 17px; transition: transform .25s var(--ease); }
.explore-card:hover .explore-more svg{ transform: translateX(-4px); } /* RTL: קדימה = שמאלה */

.explore-extra{
  margin-top: 1.6rem;
  color: var(--plum-mid);
  font-size: .97rem;
  line-height: 1.8;
}
.explore-extra a{ color: var(--blue); font-weight: 600; }

@media (min-width: 640px){
  .explore-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ============================== TESTIMONIALS ============================== */
.quotes{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.quote{
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 5px;
  padding: 1.5rem 1.6rem 1.25rem;
}
.quote blockquote{ margin: 0; position: relative; padding-top: 1.3rem; }
.quote blockquote::before{
  content: "\201D";
  position: absolute;
  top: -.55rem;
  inset-inline-start: -.1rem;
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1;
  color: var(--gold);
  opacity: .6;
}
.quote blockquote p{ color: var(--plum); line-height: 1.8; }
.quote figcaption{
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--plum-soft);
}

/* ============================== FAQ ============================== */
.faq{
  display: grid;
  gap: .75rem;
  max-width: 68ch;
}
.faq details{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq summary{
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  color: var(--plum);
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  line-height: 1.6;
  min-height: 48px;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::before{
  content: "";
  flex: none;
  width: 10px; height: 10px;
  margin-top: .55em;
  border-inline-end: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(-45deg);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::before{ transform: rotate(45deg); }
.faq .answer{ padding: 0 1.3rem 1.2rem 1.3rem; }
.faq .answer p{
  color: var(--plum-mid);
  line-height: 1.8;
  padding-inline-start: 1.8rem;
}

/* ============================== FORM ============================== */
.form-band{ background: var(--mist); padding-block: var(--pad); scroll-margin-top: 1rem; }
.form-card{
  max-width: 720px;
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-card h2{ margin-bottom: .9rem; max-width: none; }
.form-lead{ color: var(--plum-mid); line-height: 1.8; margin-bottom: 1.8rem; }

.f-row{ margin-bottom: 1.35rem; }
.f-row label,
.f-legend{
  display: block;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: .45rem;
  font-size: .97rem;
}
.f-opt{ font-weight: 400; color: var(--plum-soft); font-size: .87rem; }
.req{ color: var(--gold-deep); }

.f-row input[type="text"],
.f-row input[type="tel"],
.f-row select,
.f-row textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--plum);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: .8rem 1rem;
  min-height: 50px;
  transition: border-color .2s var(--ease);
}
.f-row textarea{ resize: vertical; line-height: 1.65; }
.f-row select{
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234C3A63' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 17px;
  padding-inline-end: 1rem;
  padding-inline-start: 2.6rem;
}
.f-row input:focus,
.f-row select:focus,
.f-row textarea:focus{ outline: none; border-color: var(--blue); }
.f-row input[aria-invalid="true"],
.f-row select[aria-invalid="true"]{ border-color: var(--danger); }

.f-hint{ font-size: .86rem; color: var(--plum-soft); margin-top: .4rem; }
/* מונה תווים — עדין ולא בולט */
.f-count{
  font-size: .78rem;
  color: var(--plum-soft);
  opacity: .7;
  margin-top: .3rem;
  text-align: start;
}

/* ---------- קבוצות בחירה: כפתורים גדולים ונוחים ללחיצה ---------- */
.f-group{
  display: block;
  border: none;
  padding: 0;
  margin-inline: 0;
  min-inline-size: 0;    /* מאפשר ל-fieldset להתכווץ בתוך grid/flex */
}
.f-legend{
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
}

.chips{
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}
.chip{
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 54px;
  padding: .85rem 1.1rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  font-size: .99rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--plum);
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.chip input{
  flex: none;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--plum-mid);
  cursor: pointer;
}
.chip:hover{ border-color: var(--blue-soft); }
.chip:has(input:checked){
  border-color: var(--plum-mid);
  background: var(--mist);
}
.chip:has(input:focus-visible){
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
}
/* קבוצה עם תוויות קצרות — ארבע בשורה במסכים רחבים */
@media (min-width: 560px){
  .chips-4{ grid-template-columns: repeat(4, 1fr); }
  .chips-4 .chip{ justify-content: center; }
}

/* שדה שנפתח רק כשנבחר "קושי אחר" */
.f-conditional{
  margin-top: .85rem;
  padding: .95rem 1.1rem;
  background: var(--mist);
  border-radius: 12px;
}
.f-conditional label{ margin-bottom: .4rem; font-size: .93rem; }
.f-conditional[hidden]{ display: none; }

/* תגית חובה / לא חובה */
.req-tag{
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--gold-deep);
  background: var(--gold-pale);
  border-radius: 999px;
  padding: .1rem .5rem;
  margin-inline-start: .35rem;
  vertical-align: middle;
}
.f-error{
  font-size: .89rem;
  font-weight: 600;
  color: var(--danger);
  margin-top: .45rem;
}
.f-error::before{ content: "— "; }

.consent{
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-weight: 400 !important;
  line-height: 1.7;
  color: var(--plum);
  cursor: pointer;
  margin-bottom: 0 !important;
}
.consent input{
  flex: none;
  width: 21px; height: 21px;
  margin-top: .25rem;
  accent-color: var(--plum-mid);
}
.consent a{ color: var(--blue); font-weight: 600; }

.f-submit-note{
  font-size: .87rem;
  color: var(--plum-soft);
  line-height: 1.65;
  margin-top: .9rem;
}
.form-status{
  margin-top: 1rem;
  padding: .95rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.65;
}
.form-status[data-kind="error"]{
  background: #FBEAE7;
  color: var(--danger);
  border: 1px solid #E7BFB8;
}
.btn[aria-busy="true"]{ opacity: .72; pointer-events: none; }

/* thank-you */
.thanks{ text-align: center; }
.thanks .mark{
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--sage-deep);
}
.thanks .mark svg{ width: 28px; height: 28px; }
.thanks h2{ margin-inline: auto; margin-bottom: 1rem; }
.thanks p{ color: var(--plum-mid); line-height: 1.8; max-width: 48ch; margin: 0 auto 1.6rem; }

/* ============================== CLOSING CTA ============================== */
.closing{
  background: var(--paper-2);
  padding-block: var(--pad);
  text-align: center;
}
.closing h2{ margin-inline: auto; margin-bottom: 1.2rem; }
.closing p{
  color: var(--plum-mid);
  max-width: 56ch;
  margin: 0 auto 2rem;
  line-height: 1.85;
}
.closing .hero-actions{ justify-content: center; }
.closing-sign{
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--plum-soft);
}

/* ============================== FOOTER ============================== */
.lp-footer{
  background: var(--plum);
  color: #E8E2F0;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.8rem;
}
.lp-footer a{ color: #D9CFE8; }
.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-bottom: 1.9rem;
}
.footer-grid h3{
  color: #fff;
  font-size: 1rem;
  margin-bottom: .7rem;
}
.footer-grid p,
.footer-grid li{ font-size: .93rem; line-height: 1.75; }
.footer-contact li{ margin-bottom: .1rem; }
.footer-contact a{
  text-decoration: none;
  font-weight: 600;
  /* חיוג ווואטסאפ — יעדי מגע נוחים במובייל */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-contact a:hover{ color: var(--gold); }
.footer-legal{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.18);
  margin-bottom: 1.1rem;
}
.footer-legal a{
  font-size: .9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  /* יעד מגע נוח — אלה קישורי החובה */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.emergency{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.emergency strong{ color: #fff; }
.footer-fine{
  font-size: .84rem;
  color: #B6ABC9;
  line-height: 1.7;
}

/* ============================== FLOATING WHATSAPP ============================== */
.wa-fab{
  position: fixed;
  inset-block-end: 1.1rem;
  inset-inline-start: 1.1rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--sage-deep);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.3rem;
  min-height: 52px;
  border-radius: 999px;
  box-shadow: 0 12px 28px -12px rgba(46,33,64,.65);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.wa-fab svg{ width: 21px; height: 21px; flex: none; }
.wa-fab:hover{ background: var(--sage); transform: translateY(-2px); }
/* hidden while the form is on screen so it never covers it */
.wa-fab.is-hidden{
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

/* ============================== REVEAL ============================== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.shown{ opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  *{ animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   Tablet and up
   ============================================================ */
@media (min-width: 640px){
  .signs{ grid-template-columns: repeat(2, 1fr); }
  .goals{ grid-template-columns: repeat(2, 1fr); }
  .reasons{ grid-template-columns: repeat(2, 1fr); }
  .quotes{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: repeat(3, 1fr); }
  .f-grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
}

@media (min-width: 900px){
  .hero .shell{ grid-template-columns: 1.05fr .95fr; }
  .hero-media{ justify-self: end; width: 100%; }
  .about .shell{ grid-template-columns: .8fr 1.2fr; }
  .about-media{ justify-self: start; width: 100%; }
  /* the path stays a single column at every width: the rail connects the
     steps in their true order, and a two-column ladder would imply a
     sequence that does not exist (1 → 3 → 5). */
  .path{ max-width: 62ch; }
  .path li{ padding-bottom: 2.4rem; }
}
