/* ==========================================================================
   נשימאמא — דף נחיתה "רגע לפני שאני מאבדת את זה"
   טוקנים לפי design.md גרסה 2.0 (12.07.2026)
   הערה: Barlev/Ploni הם פונטי המותג הרשמיים, אך הרישוי לא אומת -
   כאן נעשה שימוש ב-Rubik/Heebo כתחליף, בדיוק כמו בפרוטוטייפ שאושר.
   ========================================================================== */

:root {
  /* צבעים ראשיים */
  --rose: #DE417D;
  --blush: #F6DBD4;
  --soft-pink: #EDB6BD;
  --ink: #3B0404;
  --cream: #FBEEE6;

  /* צבעים משניים */
  --dusty-rose: #C97A80;
  --magenta: #DC5D85;
  --sage: #5A7760;
  --gold: #E3C48F;

  /* טיפוגרפיה */
  --font-heading: 'Rubik', sans-serif;
  --font-body: 'Heebo', sans-serif;

  --fs-display: 60px;
  --fs-h1: 40px;
  --fs-h2: 25px;
  --fs-body: 19px;
  --fs-small: 15px;

  /* מרווחים — יחידת בסיס 8px */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* רדיוסים */
  --radius-card: 18px;
  --radius-pill: 32px;
  --radius-field: 28px;

  /* הנפשה */
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

/* במובייל overflow-x: hidden על body לבדו לא מונע מהדפדפן להרחיב את
   "חלון הפריסה" כשיש אלמנט רחב מהמסך — הדף נפתח מוגדל וזז הצידה לבד
   (רות, 7.9). clip נועל את הרוחב בלי ליצור מיכל גלילה חדש; hidden = גיבוי
   לדפדפנים ישנים. */
html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* גובר על display של flex/grid כשמסתירים אלמנט עם המאפיין hidden */
[hidden] { display: none !important; }

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--dusty-rose); }

::selection { background: var(--soft-pink); }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   מבנה עמוד
   -------------------------------------------------------------------------- */

.section { padding: var(--sp-3xl) var(--sp-md); }
.section--cream { background: var(--cream); }
.section--blush { background: var(--blush); }

.wrap {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.wrap--narrow { max-width: 620px; }
.wrap--tight { max-width: 600px; }
.wrap--form { max-width: 480px; }

.stack-sm { gap: 20px; }
.stack-md { gap: var(--sp-md); }
.stack-lg { gap: 28px; }
.stack-xl { gap: 40px; }
.stack-2xl { gap: var(--sp-xl); }

.center { text-align: center; }

/* --------------------------------------------------------------------------
   טיפוגרפיה משותפת
   -------------------------------------------------------------------------- */

.h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.25;
  margin: 0;
}
.h2--rose {
  color: var(--rose);
  font-weight: 800;
}

/* "נשמע כמו משהו שאת צריכה?" — נשאר רק פעם אחת (מעל הטופס) ומוגדל ממש
   (בקשת סופית 21.8; העותק הכפול במקטע ההמלצות הוסר) */
.signup-title { font-size: var(--fs-display); line-height: 1.25; }

.h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.4;
  margin: 0;
}

.body { font-size: var(--fs-body); line-height: 1.6; margin: 0; }
.body--sm { font-size: 16px; line-height: 1.5; }

.footnote {
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--dusty-rose);
  margin: 0;
}
.footnote--lg { font-size: 17px; }

.prose {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  font-size: var(--fs-body);
  line-height: 1.8;
}
.prose p { margin: 0; }

.prose__list {
  list-style: disc;
  margin: 0;
  padding-inline-start: 1.3em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prose__list li::marker { color: var(--rose); }

.statement {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.35;
  text-align: center;
  color: var(--rose);
  margin: 0;
}

/* "זה אפשרי." — שורת פתיחה קטנה מעל "לעצור. להבין. לבחור" */
.statement__lead {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
  color: var(--ink);
  margin: var(--sp-sm) 0 0;
}

.statement__choose {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.statement__tail {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.6em;
  font-weight: 700;
}

.pill {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--blush);
  padding: 10px var(--sp-md);
  border-radius: var(--radius-pill);
  margin: 4px 0 0;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* המחיר הקודם — קטן ובצבע שונה, מתחת למחיר ההשקה */
.price__was {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--magenta);
  margin: 0;
}

/* --------------------------------------------------------------------------
   כפתורים
   -------------------------------------------------------------------------- */

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-body);
  padding: 18px 40px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  /* בלי השהיית double-tap-to-zoom באייפון — הלחיצה הראשונה נקלטת מיד */
  touch-action: manipulation;
  transition: background-color 0.25s var(--ease-soft),
              transform 0.25s var(--ease-soft),
              box-shadow 0.25s var(--ease-soft);
}

.btn--primary {
  background: var(--rose);
  color: var(--cream);
  box-shadow: 0 8px 24px -12px rgba(222, 65, 125, 0.7);
}
.btn--primary:hover {
  background: var(--dusty-rose);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(201, 122, 128, 0.75);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary[disabled] {
  background: var(--soft-pink);
  cursor: progress;
  transform: none;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  /* הורחב מ-720px כדי ששם הסדנה ייכנס בשורה אחת בדסקטופ (סופית, 6.9) */
  max-width: 840px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md) var(--sp-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
  /* העיגול ה"נושם" (::before) רחב מהמסך במובייל ומשנה גודל כל הזמן — בלי
     החיתוך הזה רוחב הדף משתנה ברציפות והדף נגרר לצדדים לבד (רות, 7.9) */
  overflow: hidden;
}

/* נשימה רכה מאחורי ה-Hero — רמז ויזואלי לשם המותג */
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4%;
  left: 50%;
  width: 620px;
  height: 620px;
  max-width: 130%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 182, 189, 0.5) 0%, rgba(246, 219, 212, 0.25) 45%, rgba(251, 238, 230, 0) 70%);
  animation: breathe 9s var(--ease-soft) infinite;
  pointer-events: none;
}

.hero__header {
  display: flex;
  justify-content: center;
  padding: 0 var(--sp-md) var(--sp-xs);
}

/* שם הסדנה — מעוצב אחרת משאר הכותרות (רוז + גדול יותר) כדי שיהיה ברור
   שזה שם הסדנה, לא עוד כותרת (בקשת סופית 20.8; Barlev ממתין לאימות רישיון) */
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  /* בדסקטופ: שורה אחת תמיד — "המילה 'זה' יורדת שורה" (סופית, 6.9).
     הגודל נצמד לרוחב החלון כדי שלא ייחתך במסכים בינוניים; במובייל חוזר לשתי שורות. */
  font-size: min(var(--fs-display), 7vw);
  line-height: 1.3;
  white-space: nowrap;
  color: var(--rose);
  margin: 0 0 var(--sp-sm);
}

/* "לפעמים את מאבדת את הסבלנות / ולפעמים את פשוט מאבדת את עצמך" — שתי שורות מודגשות */
.hero__couplet {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}

.hero__subtitle {
  font-size: var(--fs-h2);
  line-height: 1.4;
  font-weight: 600;
  color: var(--rose);
  margin: 0;
}

.hero__lead {
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.hero__cta { margin-top: var(--sp-xs); }

/* שורת התועלות מתחת לכפתור — הוגדלה והוכהתה: "הפונט צריך להיות גדול וקריא יותר,
   אולי בצבע כהה יותר" (סופית, 6.9) */
.hero__microline {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  max-width: 600px;
  margin: 0;
}

/* איור המותג */
.hero__art {
  margin: var(--sp-xs) 0 0;
  width: 100%;
  /* הוקטן מ-680px — "התמונה מעולה באנרגיה אבל גדולה מדי" (סופית, 20.8) */
  max-width: 440px;
}

.art {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.art__ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: ring-breathe 7s var(--ease-soft) infinite;
  opacity: 0.5;
}
.art__ring--2 { animation-delay: 0.5s; }
.art__ring--3 { animation-delay: 1s; }

.art__figures {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: float-soft 8s var(--ease-soft) infinite;
}

.art__dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: float-dot 6s var(--ease-soft) infinite;
}
.art__dot--2 { animation-delay: 1.2s; animation-duration: 7.5s; }
.art__dot--3 { animation-delay: 2.4s; animation-duration: 6.8s; }

.hero__photo {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-card);
  display: block;
}

/* assets/neshimama-logo.png נוצר מקובץ המותג המקורי: הרקע הלבן הוסר
   לשקיפות אמיתית והתמונה נחתכה לגבולות האיור, כדי שלא נזדקק ל-mix-blend-mode. */
.logo {
  object-fit: contain;
  height: auto;
}
.logo--header { width: 168px; }
.logo--footer { width: 132px; }

/* --------------------------------------------------------------------------
   ציפיות + שלושה שלבים
   -------------------------------------------------------------------------- */

.expectations {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  font-size: var(--fs-body);
  line-height: 1.7;
  text-align: center;
}
.expectations p { margin: 0; }
/* "אני לא באמת חושבת ש…" — הוגדל והוכהה, כמו שורת התועלות ב-Hero (סופית, 6.9) */
.expectations__soft {
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
}
.expectations__strong { font-weight: 600; }

/* משפט ההבטחה — ריבוע ייעודי עם פונט שונה (בקשת סופית 20.8) */
.promise-box {
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--blush);
  border: 2px solid var(--soft-pink);
  border-radius: var(--radius-card);
  padding: var(--sp-md) var(--sp-lg);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-md);
}

.step {
  background: var(--blush);
  border-radius: var(--radius-card);
  padding: var(--sp-lg) var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -20px rgba(59, 4, 4, 0.35);
}

.step__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
}
.step__num--rose { color: var(--magenta); }
.step__num--sage { color: var(--sage); }
.step__num--gold { color: var(--gold); }

/* אותו גודל כמו המספר (01/02/03) — "שהכותרת תהיה בגודל של המספר
   ולא קטנה ממנו" (סופית, 21.8) */
.step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}

.step__text {
  font-size: var(--fs-small);
  line-height: 1.5;
}

.steps-photo {
  margin: 0 auto;
  width: 100%;
  /* הוקטן מ-360px — "גם פה התמונה מאוד גדולה" (סופית, 21.8) */
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
}

.steps-photo__img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-card);
  display: block;
  box-shadow: 0 18px 40px -24px rgba(59, 4, 4, 0.35);
}

.steps-photo__caption {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h2);
  color: var(--rose);
  margin: 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   מה כלול
   -------------------------------------------------------------------------- */

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* שורת משנה מתחת ל-"28 ימים בתוך החיים עצמם" */
.section-head__sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.45;
  color: var(--dusty-rose);
  margin: 0;
}

.included {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: var(--sp-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

/* אייקון מימין לכל כרטיס תוכן (בקשת סופית 21.8) — ב-RTL תחילת השורה = ימין */
.card__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__icon svg { width: 24px; height: 24px; }

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(59, 4, 4, 0.4);
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 1.4;
  color: var(--rose);
  margin: 0;
}

.card__text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* השאלות שמנחות כל מפגש LIVE — מובלטות בקו צד */
.card__text--quote {
  border-inline-start: 3px solid var(--soft-pink);
  padding-inline-start: 12px;
  color: var(--ink);
}

.card__list {
  list-style: disc;
  margin: 0;
  padding-inline-start: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  line-height: 1.6;
}
.card__list li::marker { color: var(--rose); }

/* --------------------------------------------------------------------------
   המלצות
   -------------------------------------------------------------------------- */

.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-md);
}

.image-slot {
  height: 420px;
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 2px dashed var(--soft-pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--dusty-rose);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--sp-md);
}

.image-slot__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--soft-pink);
  position: relative;
}
.image-slot__icon::after {
  content: "";
  position: absolute;
  inset: 8px 8px 12px;
  border-radius: 6px;
  background: var(--soft-pink);
  opacity: 0.55;
}

.testimonial-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

/* --------------------------------------------------------------------------
   טופס
   -------------------------------------------------------------------------- */

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  text-align: right;
}

.field {
  font-family: var(--font-body);
  font-size: 16px; /* 16px ומעלה — מונע זום-אין אוטומטי של iOS בפוקוס */
  touch-action: manipulation;
  padding: var(--sp-sm) 20px;
  border-radius: var(--radius-field);
  border: 2px solid var(--soft-pink);
  background: #fff;
  color: var(--ink);
  direction: rtl;
  transition: border-color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
}
.field::placeholder { color: var(--dusty-rose); opacity: 0.7; }
.field:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(222, 65, 125, 0.14);
}
.field[aria-invalid="true"] { border-color: var(--magenta); }

.lead-form .btn { margin-top: var(--sp-xs); }

/* הודעת האישור אחרי שליחה — גדולה ובולטת: ורוד פוקסיה + פונט לבן
   (בקשת סופית 21.8) */
.form-success {
  background: var(--rose);
  border-radius: var(--radius-card);
  padding: var(--sp-lg);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.form-error {
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--magenta);
  margin: 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   פוטר
   -------------------------------------------------------------------------- */

.site-footer {
  padding: var(--sp-xl) var(--sp-md) var(--sp-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.site-footer__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--rose);
  margin: 0;
}
.site-footer__role {
  font-size: var(--fs-small);
  color: var(--dusty-rose);
  margin: 0;
}

/* --------------------------------------------------------------------------
   הנפשות
   -------------------------------------------------------------------------- */

@keyframes breathe {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50%      { transform: translateX(-50%) scale(1.12); opacity: 1; }
}

@keyframes ring-breathe {
  0%, 100% { transform: scale(0.9);  opacity: 0.35; }
  50%      { transform: scale(1.08); opacity: 0.8; }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.012); }
}

@keyframes float-dot {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(-12px); opacity: 1; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* כניסת ה-Hero בטעינה — נכנס לפעולה רק כש-JS סימן את הדף */
.js .hero > * {
  animation: rise 0.8s var(--ease-soft) both;
}
.js .hero__header  { animation-delay: 0s; }
.js .hero__title   { animation-delay: 0.1s; }
.js .hero__subtitle{ animation-delay: 0.2s; }
.js .hero__couplet { animation-delay: 0.3s; }
.js .hero__lead    { animation-delay: 0.4s; }
.js .hero__cta     { animation-delay: 0.5s; }
.js .hero__microline { animation-delay: 0.6s; }
.js .hero .price   { animation-delay: 0.7s; }
.js .hero__art     { animation-delay: 0.8s; }

/* חשיפה בגלילה */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-soft), transform 0.6s var(--ease-soft);
}
.js [data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}
.js [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.js [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.js [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.js [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   רספונסיביות
   -------------------------------------------------------------------------- */

@media (max-width: 860px) {
  .steps { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  :root {
    --fs-display: 38px;
    --fs-h1: 30px;
    --fs-h2: 22px;
    --fs-body: 18px;
  }

  .section { padding: var(--sp-2xl) 20px; }
  .hero { padding: var(--sp-lg) 20px var(--sp-xl); gap: var(--sp-md); }
  .hero::before { top: 0; width: 420px; height: 420px; }
  .logo--header { width: 128px; height: auto; }

  .hero__title { font-size: var(--fs-display); white-space: normal; }
  .hero__couplet { font-size: 19px; }
  .hero__microline { font-size: 16px; }
  .expectations__soft { font-size: 19px; }
  .section-head__sub { font-size: 18px; }

  .statement { font-size: 30px; }
  .statement__lead { font-size: 19px; }
  .card, .step { padding: var(--sp-md); }
  /* במובייל הסקשן מוגדל — הכותרת בגודל המספר וטקסט השלב גדול יותר (סופית, 21.8) */
  .step__text { font-size: 16px; }
  .btn { width: 100%; padding: 18px var(--sp-md); }

  .testimonials { grid-template-columns: minmax(0, 1fr); }
  .image-slot, .testimonial-img { height: 340px; }
}

@media (max-width: 380px) {
  :root { --fs-display: 31px; }
}

/* --------------------------------------------------------------------------
   העדפת תנועה מופחתת — מכבה כל הנפשה
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal],
  .js [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
