/* ===== therapistic - עיצוב משותף למשפך ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ff: 'Noto Sans Hebrew', sans-serif;
  --clr-bg: #F5F0ED;
  --clr-bg-alt: #EAE2DD;
  --clr-bg-lilac: #EAE2DD;
  --clr-surface: #D4C6BD;
  --clr-brand: #7B6D8E;
  --clr-primary: #3D5361;
  --clr-primary-dark: #3D5361;
  --clr-primary-light: #D4C6BD;
  --clr-accent: #D6B7B5;
  --clr-rose: #D6B7B5;
  --clr-rose-tint: #EDE2DF;
  --clr-text: #3D5361;
  --clr-text-light: #5B6B76;
  --clr-border: #E5DCD5;
  --clr-white: #FFFFFF;
  --max-w: 1140px;
  --section-py: 88px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(61, 83, 97, 0.08);
  --shadow-hover: 0 8px 40px rgba(61, 83, 97, 0.14);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; background: var(--clr-bg); }

body {
  font-family: var(--ff);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--ff); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 240, 237, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-brand);
  display: inline-flex;
  align-items: center;
}
.logo-img { height: 34px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-light);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--clr-primary); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-border);
}
.mobile-nav a:last-child { border: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--ff);
  border: none;
  cursor: pointer;
  transition: filter var(--transition);
  box-shadow: 0 4px 16px rgba(61, 83, 97, 0.25);
}
.btn-primary:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61, 83, 97, 0.32);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--clr-text);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ff);
  border: 1.5px solid var(--clr-border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  filter: brightness(0.92);
}

/* ===== SECTIONS (generic) ===== */
.section { padding: var(--section-py) 0; background: var(--clr-bg); }
.section-alt { padding: var(--section-py) 0; background: var(--clr-bg-lilac); }
.section-white { padding: var(--section-py) 0; background: var(--clr-white); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clr-primary);
  background: rgba(61, 83, 97, 0.08);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-brand);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--clr-text-light);
  max-width: 640px;
  line-height: 1.7;
  text-align: center;
  margin: -24px auto 40px;
}

/* ===== HERO ===== */
.hero {
  padding: 64px 0 72px;
  background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-rose-tint) 55%, var(--clr-bg-alt) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-white);
  border: 1.5px solid rgba(61, 83, 97, 0.35);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--clr-primary);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
}
.hero-credit {
  font-size: 13px;
  color: var(--clr-text-light);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-brand);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
}
.hero-text {
  font-size: 17px;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-price {
  font-size: 15px;
  color: var(--clr-text-light);
  margin-bottom: 24px;
}
.hero-note {
  font-size: 14px;
  color: var(--clr-text-light);
  line-height: 1.7;
  max-width: 520px;
  margin: -12px 0 24px;
}
.hero-solo .hero-note { text-align: center; margin-left: auto; margin-right: auto; }
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-actions-below {
  margin-top: 16px;
  text-align: center;
}
.hero-actions-below a {
  font-size: 14px;
  color: var(--clr-text-light);
  text-decoration: underline;
}
.hero-image-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.hero-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(61, 83, 97, 0.18);
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-text { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-image-wrapper { max-width: 340px; }
}

/* ===== PAIN POINTS ("מרגיש מוכר") ===== */
.pain-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  font-size: 16px;
}
.pain-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

/* ===== WORKBOOK CARDS ===== */
.workbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.workbook-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.workbook-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.workbook-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-brand);
  margin-bottom: 10px;
}
.workbook-card p {
  font-size: 14px;
  color: var(--clr-text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}
.workbook-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-primary-dark);
  margin-bottom: 20px;
}
.workbook-card .btn-primary,
.workbook-card .btn-secondary {
  width: 100%;
  height: 44px;
  padding: 0 32px;
}
.soon-badge {
  display: inline-block;
  background: var(--clr-bg-lilac);
  color: var(--clr-primary-dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 13px;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .workbook-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ===== STEPS ("איך זה עובד") ===== */
.steps-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  border: 1px solid var(--clr-border);
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.step-item p { font-size: 16px; }

/* ===== FEATURE CARDS ("למה דווקא") ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.feature-card {
  text-align: center;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 32px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(61, 83, 97, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--clr-primary); }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--clr-text-light); line-height: 1.6; }
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===== ABOUT CARD ("מי מאחורי") ===== */
.about-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-card img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.about-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.about-card p { font-size: 14.5px; color: var(--clr-text-light); line-height: 1.75; margin: 8px auto 0; max-width: 340px; }
.about-card .about-credentials { font-size: 12.5px; color: var(--clr-text-light); margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--clr-border); max-width: 380px; }
.lead-paragraph { font-size: 18px; line-height: 1.85; color: var(--clr-text); max-width: 680px; margin: 0 auto; text-align: center; }
.about-card a {
  font-size: 14px;
  color: var(--clr-primary);
  text-decoration: underline;
}

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--clr-border); border-radius: var(--radius-sm); overflow: hidden; background: var(--clr-white); transition: var(--transition); }
.faq-item.active { border-color: var(--clr-primary-light); box-shadow: 0 2px 16px rgba(61, 83, 97, 0.08); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; background: none; border: none;
  width: 100%; text-align: right; font-family: var(--ff);
  font-size: 16px; font-weight: 600; color: var(--clr-text);
  transition: var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--clr-primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(61, 83, 97, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--clr-primary); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--clr-primary); transition: var(--transition); }
.faq-item.active .faq-icon svg { stroke: var(--clr-white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 24px; font-size: 15px; color: var(--clr-text-light); line-height: 1.8; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  max-width: 760px;
  margin: 0 auto;
  background: var(--clr-bg-alt);
  border: 1px solid rgba(61, 83, 97, 0.18);
  border-radius: 999px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .disclaimer-bar { border-radius: var(--radius-sm); }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--clr-text-light);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--clr-primary); }
.footer-copy {
  font-size: 13px;
  color: var(--clr-text-light);
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ===== HERO SOLO (sales pages, no side image) ===== */
.hero-solo .hero-inner { grid-template-columns: 1fr; }
.hero-solo .hero-content { max-width: 640px; margin: 0 auto; text-align: center; }
.hero-solo .hero-badge { margin-inline: auto; }
.hero-solo .hero-text { margin: 0 auto 8px; max-width: 560px; }
.hero-solo .hero-price { text-align: center; }
.hero-solo .hero-actions { justify-content: center; }

/* ===== CHECKLIST GRID ("מה מקבלים") ===== */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 15px;
}
.checklist-item svg { width: 20px; height: 20px; stroke: var(--clr-primary); flex-shrink: 0; }
.checklist-item.full { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .checklist-grid { grid-template-columns: 1fr; }
}

/* ===== PREVIEW GRID ("הצצה לחוברת") ===== */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.preview-card { text-align: center; }
.preview-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--clr-bg-alt);
  border: 1.5px dashed var(--clr-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  font-size: 13px;
  padding: 16px;
  text-align: center;
  margin-bottom: 12px;
}
.preview-card p { font-size: 14px; color: var(--clr-text-light); }
.preview-frame {
  aspect-ratio: 3 / 4;
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.preview-img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 600px) {
  .preview-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

/* ===== FINAL CTA ===== */
.final-cta-text {
  text-align: center;
  font-size: 17px;
  color: var(--clr-text);
  max-width: 520px;
  margin: 0 auto 28px;
}
.final-cta-actions { display: flex; justify-content: center; margin-bottom: 16px; }

/* ===== LEAD FORM (free-chapter) ===== */
.lead-form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lead-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 1.5px solid var(--clr-border);
  border-radius: 100px;
  font-family: var(--ff);
  font-size: 15px;
  color: var(--clr-text);
  background: var(--clr-white);
}
.lead-form input[type="email"]:focus {
  outline: none;
  border-color: var(--clr-primary);
}
.lead-form button { white-space: nowrap; }
.lead-note {
  text-align: center;
  font-size: 13px;
  color: var(--clr-text-light);
  margin-top: 16px;
}
.lead-success {
  display: none;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 15px;
  color: var(--clr-primary-dark);
  font-weight: 600;
}
@media (max-width: 500px) {
  .lead-form { flex-direction: column; }
}

/* ===== SUPPORT LINE ===== */
.support-line {
  text-align: center;
  font-size: 14px;
  color: var(--clr-text-light);
  margin-top: 8px;
}

/* ===== SCROLL-IN ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

*:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

/* ===== תוספות 12.7 — דף בית משודרג (כריכות, מדריך צמוד, פס פרק חינם) ===== */
/* minmax(0, 1fr) ולא 1fr: מבטיח שהעמודות מתכווצות לרוחב הזמין ולא נפתחות לפי תוכן פנימי */
.workbook-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1140px; }
@media (max-width: 1024px) { .workbook-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; } }
@media (max-width: 640px) { .workbook-grid.four { grid-template-columns: 1fr; max-width: 420px; } }
.workbook-cover { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.workbook-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.soon-badge { display: inline-block; background: var(--clr-bg-lilac); color: var(--clr-primary-dark); font-size: 13px; font-weight: 500; border-radius: 999px; padding: 4px 12px; margin-bottom: 10px; }
.cta-band { background: var(--clr-primary); text-align: center; padding: 64px 0; }
.cta-band h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; color: var(--clr-white); }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.88); max-width: 480px; margin: 0 auto 24px; }
.btn-light { display: inline-block; background: var(--clr-white); color: var(--clr-primary-dark); font-weight: 700; border-radius: 999px; padding: 14px 32px; transition: var(--transition); text-decoration: none; }
.btn-light:hover { background: var(--clr-bg-alt); }

/* יישור סימטרי של כרטיסי החוברות: כפתור תמיד בתחתית, תג על הכריכה */
.workbook-card { display: flex; flex-direction: column; }
.workbook-card .btn-primary, .workbook-card .btn-secondary { margin-top: auto; }
.workbook-card h3 { min-height: 58px; display: flex; align-items: center; justify-content: center; }
.workbook-card p { flex-grow: 0; }
.workbook-price { margin-top: auto; margin-bottom: 14px; }
.workbook-cover { position: relative; }
.cover-badge { position: absolute; top: 10px; right: 10px; background: var(--clr-white); color: var(--clr-primary-dark); font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 5px 13px; box-shadow: var(--shadow); }

/* ===== מדריך צמוד — פריסת ההדמיה בצבעי האתר ===== */
.amat { font-family: 'Amatic SC', cursive; font-weight: 700; letter-spacing: .01em; }
.guide-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; max-width: 1040px; margin: 0 auto; }
.guide-label { display: inline-block; background: var(--clr-white); border: 1px solid var(--clr-border); padding: 7px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--clr-primary-dark); margin-bottom: 14px; }
.guide-title { font-size: 34px; font-weight: 700; line-height: 1.2; color: var(--clr-text); margin-bottom: 14px; }
.guide-text { font-size: 16.5px; line-height: 1.75; color: var(--clr-text-light); margin-bottom: 22px; }
.guide-note { font-size: 14.5px; line-height: 1.7; color: var(--clr-primary-dark); font-weight: 600; margin-bottom: 22px; }
.guide-checks { display: flex; flex-direction: column; gap: 14px; }
.guide-check { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.6; color: var(--clr-text); }
.guide-check .ck { width: 28px; height: 28px; border-radius: 999px; background: var(--clr-bg-lilac); flex: none; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.guide-check .ck svg { width: 15px; height: 15px; stroke: var(--clr-primary-dark); stroke-width: 2.75; fill: none; }
.guide-card-wrap { position: relative; display: flex; justify-content: center; }
.guide-card-blob { position: absolute; bottom: -14px; left: -10px; width: 120px; height: 120px; border-radius: 999px; background: var(--clr-bg-alt); }
.guide-card { position: relative; background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-hover); width: 82%; transform: rotate(-2.5deg); }
.guide-card-label { font-size: 13px; font-weight: 600; color: var(--clr-text-light); letter-spacing: .06em; margin-bottom: 12px; }
.guide-card-hand { font-size: 34px; color: var(--clr-primary-dark); line-height: 1; margin-bottom: 10px; }
.guide-card p { font-size: 14.5px; line-height: 1.7; color: var(--clr-text-light); margin: 0; }
.guide-card-divider { height: 1px; background: var(--clr-border); margin: 14px 0; }
.guide-card-meta { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--clr-primary-dark); font-weight: 600; }
.guide-card-meta svg { width: 16px; height: 16px; stroke: var(--clr-primary-dark); stroke-width: 2.5; fill: none; }
.mark-l { color: var(--clr-brand); font-weight: 700; }
@media (max-width: 900px) { .guide-grid { grid-template-columns: 1fr; gap: 34px; } .guide-card { transform: none; width: 100%; } }

/* ===== איך זה עובד — שלוש עמודות עם עיגולי מספר ===== */
.steps-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
.step-col { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.step-circle { width: 56px; height: 56px; border-radius: 999px; background: var(--clr-bg-lilac); color: var(--clr-primary-dark); font-weight: 700; font-size: 22px; display: inline-flex; align-items: center; justify-content: center; }
.step-col h3 { font-size: 19px; font-weight: 700; color: var(--clr-text); margin: 0; }
.step-col p { font-size: 15px; color: var(--clr-text-light); line-height: 1.65; max-width: 30ch; margin: 0; }
@media (max-width: 760px) { .steps-cols { grid-template-columns: 1fr; max-width: 420px; } }

/* ===== הירו קומפקטי ===== */
.hero { padding: 44px 0 52px; }
@media (max-width: 640px) {
  .hero { padding: 28px 0 36px; }
  .hero-content h1 { font-size: 30px; }
  .hero-actions { flex-wrap: wrap; }
}

/* ===== תוספות 12.7 (ערב) — קו אייקונים + אנימציית הירו + תיקוני UX ===== */

/* כפתור CTA בתפריט הדביק (מוסתר במובייל, שם יש המבורגר) */
.header-cta { padding: 8px 20px; font-size: 14px; box-shadow: 0 3px 12px rgba(61, 83, 97, 0.22); }
@media (max-width: 768px) { .header-cta { display: none; } }

/* הגדלת אזור המגע של כפתור ההמבורגר (קרוב ל-44x44) */
.mobile-toggle { padding: 12px; gap: 6px; }

/* אייקוני קו אחידים בכרטיסי החוברות — בצבעי הלבנדר של האתר */
.wb-icon {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--clr-bg-lilac);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.wb-icon svg {
  width: 24px; height: 24px;
  stroke: var(--clr-primary); stroke-width: 2.4; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ===== הירו v6: מוקאפ סטטי (אווירה) — אייפד+טלפון עם עמודים צבעוניים, חד ברטינה ===== */
.hero-image { display: flex; justify-content: center; }
.hero-mock { width: 100%; max-width: 540px; height: auto; display: block; }

/* מסגרות המכשירים — משמשות עכשיו בהדמיה החיה שבסקשן "ככה זה נראה מבפנים" */
.hero-stage { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; max-width: 100%; margin: 0 auto; }

/* מסגרת האייפד — קטע קריאה סטטי */
.ipad {
  flex: 0 0 auto;
  transform: rotate(-1deg);
  width: 292px; height: 428px;
  background: var(--clr-text);
  border-radius: 26px;
  padding: 12px;
  box-shadow: var(--shadow-hover);
}
.ipad-cam {
  position: absolute; top: 50%; right: 4px; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.28); z-index: 2;
}
.ipad-screen {
  width: 100%; height: 100%;
  background: var(--clr-white);
  border-radius: 17px; overflow: hidden;
  display: flex; flex-direction: column;
}

/* מסגרת הטלפון — שאלון מונפש (שאלה, סימון, פס התקדמות) */
.mini-phone {
  flex: 0 0 auto;
  width: 200px; height: 410px;
  background: var(--clr-text);
  border-radius: 30px; padding: 9px;
  box-shadow: var(--shadow-hover);
  transform: rotate(1.5deg);
}
.mini-phone-screen { width: 100%; height: 100%; background: var(--clr-white); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; }
.mp-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 12px 13px 10px; border-bottom: 1px solid var(--clr-border); }
.mp-title { font-size: 13.5px; font-weight: 700; color: var(--clr-primary-dark); }
.mp-chip { font-size: 11px; font-weight: 600; color: var(--clr-primary-dark); background: var(--clr-bg-lilac); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
/* אזור פס ההתקדמות ואזור השאלה בטלפון */
.mp-progress-wrap { padding: 13px 14px 2px; }
.mp-ex { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 8px 14px 16px; }

/* הדמיה חיה בתוך הסקשן — טלפון זקוף, ממורכז, מעט גדול יותר */
.peek-live { display: flex; justify-content: center; align-items: center; height: 100%; }
.peek-live .mini-phone { transform: rotate(0deg); width: 224px; height: 456px; }

/* פס עליון = שפת פרקים */
.page-top { flex-shrink: 0; padding: 12px 15px 10px; border-bottom: 1px solid var(--clr-border); }
.page-top-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 9px; }
.page-title { font-size: 15px; font-weight: 700; color: var(--clr-primary-dark); }
.page-chip { font-size: 12px; font-weight: 600; color: var(--clr-primary-dark); background: var(--clr-bg-lilac); border-radius: 999px; padding: 4px 12px; white-space: nowrap; }
.page-progress { height: 5px; border-radius: 999px; background: var(--clr-border); overflow: hidden; }
.page-progress-fill { display: block; height: 100%; width: 0; background: var(--clr-primary); border-radius: 999px; transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.page-progress-label { margin-top: 7px; font-size: 12px; font-weight: 600; color: var(--clr-primary-dark); min-height: 15px; }

/* אזור הקריאה הסטטי באייפד */
.page-read { flex: 1; overflow: hidden; padding: 20px 20px; display: flex; flex-direction: column; justify-content: center; }
.pg-h { font-size: 19px; font-weight: 700; color: var(--clr-primary-dark); line-height: 1.3; margin-bottom: 11px; }
.pg-intro { font-size: 13.5px; line-height: 1.6; color: var(--clr-text-light); margin-bottom: 14px; }
.pg-p { font-size: 14px; line-height: 1.7; color: var(--clr-text); margin-bottom: 16px; }
.pg-quote { font-size: 15px; line-height: 1.55; color: #AC8482; font-style: italic; margin-bottom: 0; }

/* כרטיס התרגיל */
.pg-ex { background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 18px 16px 20px; }
.hdc-q { font-size: 15px; line-height: 1.45; color: var(--clr-text); font-weight: 600; margin-bottom: 13px; }
.hdc-field {
  position: relative;
  display: flex; align-items: center; flex-wrap: wrap; gap: 2px;
  min-height: 54px;
  border: 1px solid var(--clr-border); border-radius: var(--radius-sm);
  padding: 11px 13px; background: var(--clr-white);
  font-size: 14px; line-height: 1.5; color: var(--clr-text-light);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.hdc-field.filled { background: var(--clr-bg-lilac); border-color: var(--clr-primary-light); }
.hdc-caret {
  display: inline-block; width: 2px; height: 1.05em;
  background: var(--clr-primary); margin-inline-start: 1px; vertical-align: -2px;
  animation: hdcBlink 1s step-end infinite;
}
@keyframes hdcBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hdc-done {
  position: absolute; top: 50%; left: 9px; transform: translateY(-50%) scale(0.6);
  width: 20px; height: 20px; border-radius: 999px; background: var(--clr-primary);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hdc-done.show { opacity: 1; transform: translateY(-50%) scale(1); }
.hdc-done svg { width: 11px; height: 11px; stroke: var(--clr-white); stroke-width: 3; fill: none; }

/* בועת המנחה — אופציה כבויה (SHOW_GUIDE). מוסתרת עד שמדליקים את הדגל */
.guide-bubble { display: none; margin-top: 10px; background: var(--clr-rose-tint); border-radius: 10px 10px 10px 3px; padding: 8px 11px; }
.guide-bubble.show { display: block; animation: bubbleIn 0.45s ease; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.guide-name { display: block; font-size: 9px; font-weight: 700; color: var(--clr-brand); letter-spacing: 0.04em; margin-bottom: 3px; }
.guide-msg { font-size: 10.5px; line-height: 1.45; color: var(--clr-text); }

@media (max-width: 640px) {
  /* במובייל: טלפון בלבד (השאלון המונפש), מוגדל וממורכז; האייפד יורד */
  .ipad { display: none; }
  .mini-phone { transform: rotate(0deg); width: 240px; height: 470px; }
}

/* הפחתת תנועה: אין תנועה (המצב הסטטי המלא מטופל ב-JS) */
@media (prefers-reduced-motion: reduce) {
  .hdc-caret { animation: none; display: none; }
  .page-progress-fill { transition: none; }
  .guide-bubble.show { animation: none; }
}

/* ===== סקשן "חוברת עבודה, לא ספר קריאה" ===== */
.explain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
.explain-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.explain-icon { width: 48px; height: 48px; border-radius: 999px; background: var(--clr-bg-lilac); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.explain-icon svg { width: 25px; height: 25px; stroke: var(--clr-primary); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.explain-card p { font-size: 15px; line-height: 1.7; color: var(--clr-text-light); }
.explain-card b { color: var(--clr-text); font-weight: 700; }
@media (max-width: 760px) { .explain-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ===== סקשן "ככה זה נראה מבפנים" — הדמיה חיה + מוקאפ סטטי ===== */
.peek-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; max-width: 860px; margin: 0 auto; align-items: center; }
.peek-item { margin: 0; }
.peek-item figcaption { margin-top: 18px; text-align: center; font-size: 14.5px; color: var(--clr-text-light); }
/* מוקאפ סטטי (תמונה) — חד ברטינה */
.peek-mock { width: 100%; max-width: 430px; height: auto; border-radius: var(--radius); display: block; margin: 0 auto; }

@media (max-width: 760px) { .peek-grid { grid-template-columns: 1fr; max-width: 420px; gap: 40px; } }

/* תמונת המוקאפ בסקשן "המדריך הצמוד" */
.guide-mockup { width: 100%; max-width: 320px; margin: 0 auto; display: block; }

/* ===== כרטיס תרגיל חי (טעימה) + קישור CTA אמצע ===== */
.taste-exercise { max-width: 620px; margin: 34px auto 0; background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow); }
.taste-label { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--clr-primary); background: var(--clr-bg-lilac); border-radius: 999px; padding: 4px 14px; margin-bottom: 14px; }
.taste-exercise h3 { font-size: 20px; font-weight: 700; color: var(--clr-text); margin-bottom: 12px; }
.taste-exercise > p { font-size: 15.5px; line-height: 1.7; color: var(--clr-text-light); margin-bottom: 18px; }
.taste-exercise label { display: block; font-size: 15px; font-weight: 500; color: var(--clr-text); margin-bottom: 10px; }
.taste-exercise input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm); font-family: var(--ff); font-size: 15px; color: var(--clr-text); background: var(--clr-bg); }
.taste-exercise input:focus { outline: none; border-color: var(--clr-primary); }
.taste-more { text-align: center; margin-top: 20px; font-size: 15px; color: var(--clr-text-light); }
.taste-more a { color: var(--clr-primary); font-weight: 600; text-decoration: none; }
.taste-more a:hover { text-decoration: underline; }
.guide-cta-link { margin-top: 20px; }
.guide-cta-link a { color: var(--clr-primary); font-weight: 600; font-size: 15px; text-decoration: none; }
.guide-cta-link a:hover { text-decoration: underline; }

/* ===== תוספות 19.7: רשת 4 כרטיסים, צ'יפים בהדמיה, מדף הכלים המודרכים ===== */

/* רשת של 4 כרטיסים (2x2). הרשת של 3 נשארת כפי שהיא */
.explain-grid.four { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
@media (max-width: 760px) { .explain-grid.four { grid-template-columns: 1fr; max-width: 420px; } }

/* צ'יפים בהדמיה החיה: בחירה סגורה, כמו בשאלון שבחוברת */
.hdc-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.hdc-chip {
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: inherit; font-size: 12px; font-weight: 600; line-height: 1.3;
  color: var(--clr-text-light); background: var(--clr-white);
  border: 1px solid var(--clr-border); border-radius: 999px; padding: 9px 6px;
  transition: background .3s ease, color .3s ease, border-color .3s ease, opacity .3s ease;
}
.hdc-chip.sel { background: var(--clr-primary); border-color: var(--clr-primary); color: var(--clr-white); }
.hdc-chip.dim { opacity: .4; }

/* מדף הכלים המודרכים */
.tools-strip { max-width: 860px; margin: 40px auto 0; }
.tools-strip h3 { font-size: 21px; font-weight: 700; color: var(--clr-text); text-align: center; margin-bottom: 10px; }
.tools-strip .tools-lead { font-size: 15px; line-height: 1.75; color: var(--clr-text-light); text-align: center; max-width: 660px; margin: 0 auto 26px; }
.tools-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tool-chip {
  background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius);
  padding: 18px 16px; text-align: center; font-size: 14px; font-weight: 600; color: var(--clr-text);
}
.tool-chip span { display: block; margin-top: 6px; font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--clr-text-light); }
.tools-note { margin-top: 18px; font-size: 14px; line-height: 1.7; color: var(--clr-text-light); text-align: center; }
.tools-note b { color: var(--clr-text); font-weight: 700; }
@media (max-width: 760px) { .tools-row { grid-template-columns: 1fr; } .tools-strip { margin-top: 32px; } }
.peek-note { max-width: 640px; margin: 26px auto 0; font-size: 15px; line-height: 1.75; color: var(--clr-text-light); text-align: center; }

/* ===== פלטה 27.7 — פסי צבע בכרטיסי החוברות (לפי כיוון-האתר-הסופי) ===== */
.wb-bar { height: 5px; border-radius: 3px; margin-bottom: 14px; flex-shrink: 0; }
.wb-bar-anxiety { background: #7B6D8E; }
.wb-bar-adhd { background: #3D5361; }
.wb-bar-couples { background: #AC8482; }
.wb-bar-boundaries { background: #9C8A7E; }

/* ── הפרדה בצבע מלא בכרטיסי החוברות (הכרעת ליאת 27.7 בוקר) ──
   הכריכות הישנות (עיצוב לילך ישן) הוסתרו; במקומן בלוק צבע מלא של זהות החוברת.
   כשיהיו כריכות חדשות בקו הבית — מחזירים את התמונות. */
.workbook-card .wb-bar { display: none; }
.workbook-card .workbook-cover {
  height: 150px;
  /* תיקון גלישה 27.7: בלי הביטול הזה, aspect-ratio 16/10 מהכלל הישן + height 150px
     כופים על הבלוק רוחב פנימי של 240px, הכרטיסים מתנפחים והשורה גולשת מחוץ למסך */
  aspect-ratio: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.workbook-card .workbook-cover img { display: none; }
.workbook-card .workbook-cover::after {
  content: "";
  width: 46px; height: 26px;
  background: no-repeat center / contain url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 38"><path d="M8 34 A27 27 0 0 1 62 34" fill="none" stroke="white" stroke-opacity=".85" stroke-width="7" stroke-linecap="round"/><path d="M19 34 A16 16 0 0 1 51 34" fill="none" stroke="white" stroke-opacity=".55" stroke-width="7" stroke-linecap="round"/><path d="M30 34 A5 5 0 0 1 40 34" fill="none" stroke="white" stroke-opacity=".35" stroke-width="7" stroke-linecap="round"/></svg>');
}
.wb-bar-anxiety + .workbook-cover    { background: #7B6D8E; }
.wb-bar-adhd + .workbook-cover       { background: #3D5361; }
.wb-bar-couples + .workbook-cover    { background: #AC8482; }
.wb-bar-boundaries + .workbook-cover { background: #9C8A7E; }

/* ── הכרעת ליאת 27.7 ערב: בלי כתמי צבע. הצבעוניות: כפתור ורוד עתיק + אייקונים + בלוקי הכרטיסים ── */

/* אייקוני explain בארבעת צבעי החוברות */
.explain-grid .explain-card:nth-child(1) .explain-icon { color: #7B6D8E; background: #7B6D8E1A; }
.explain-grid .explain-card:nth-child(2) .explain-icon { color: #3D5361; background: #3D53611A; }
.explain-grid .explain-card:nth-child(3) .explain-icon { color: #AC8482; background: #AC84821A; }
.explain-grid .explain-card:nth-child(4) .explain-icon { color: #8A7355; background: #9C8A7E26; }

/* ── הכרעת ליאת 27.7: הכפתור הראשי בוורוד עתיק (הצבעוניות: כתמים + כפתור + צבעי חוברות) ── */
.btn-primary, a.btn-primary { background: #B4767E; }
.btn-primary:hover, a.btn-primary:hover { background: #9d6169; }
/* הערת נגישות: לבן על #B4767E = ~3.2, לאישור בבדיקת הנגישות של שלב 1 (אפשר להכהות מעט אם יידרש) */

/* ── כלי שאלת ההתבוננות (הכרעת ליאת 27.7: שאלות 2/5/9/11) ── */
.tt-radio { position: absolute; opacity: 0; pointer-events: none; }
.tt-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 16px; }
.tt-tabs label {
  border: 1.5px solid var(--clr-border, #E5DCD5); background: #fff; border-radius: 999px;
  padding: 7px 16px; font-size: .88rem; cursor: pointer; color: #5b6b76;
}
.tt-panel { display: none; }
#tt-anx:checked  ~ .tt-tabs .tt-l-anx  { background: #7B6D8E; border-color: #7B6D8E; color: #fff; font-weight: 700; }
#tt-adhd:checked ~ .tt-tabs .tt-l-adhd { background: #3D5361; border-color: #3D5361; color: #fff; font-weight: 700; }
#tt-cpl:checked  ~ .tt-tabs .tt-l-cpl  { background: #AC8482; border-color: #AC8482; color: #fff; font-weight: 700; }
#tt-bnd:checked  ~ .tt-tabs .tt-l-bnd  { background: #9C8A7E; border-color: #9C8A7E; color: #fff; font-weight: 700; }
#tt-anx:checked  ~ .tt-p-anx  { display: block; }
#tt-adhd:checked ~ .tt-p-adhd { display: block; }
#tt-cpl:checked  ~ .tt-p-cpl  { display: block; }
#tt-bnd:checked  ~ .tt-p-bnd  { display: block; }
.tt-panel h3 { margin-bottom: 2px; }
.tt-sub { color: #5b6b76; font-size: .85rem; margin-bottom: 12px; }
.tt-write {
  width: 100%; box-sizing: border-box; background: #faf7f4;
  border: 1px dashed #D6B7B5; border-radius: 10px;
  min-height: 52px; height: 52px; padding: 13px 12px;
  font-family: inherit; font-size: .95rem; line-height: 1.6; color: #3f4a52;
  resize: none; overflow: hidden; transition: height .25s ease, min-height .25s ease;
}
.tt-write:focus { outline: 2px solid #B4767E; outline-offset: 1px; min-height: 110px; height: 110px; overflow: auto; }
.tt-send {
  margin-top: 10px; border: 0; border-radius: 10px; color: #fff;
  padding: 10px 22px; font-family: inherit; font-weight: 700; font-size: .9rem;
  cursor: pointer; background: #B4767E;
}
.tt-send:hover { background: #9d6169; }
.tt-echo { display: none; margin-top: 12px; border-radius: 10px; padding: 12px 14px; font-size: .9rem; text-align: right; }
.tt-echo.on { display: block; }
.tt-echo a { font-weight: 800; text-decoration: none; color: inherit; }
.tt-privacy { font-size: .76rem; color: #8b8178; margin-top: 10px; }

/* ── ההדגמה החיה בהירו (27.7): מניעת גלישת גריד + מרכוז ── */
.hero-content, .hero-image { min-width: 0; }
.hero-image .peek-live { max-width: 100%; display: flex; justify-content: center; }
.hero-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
@media (max-width: 800px) { .hero-inner { grid-template-columns: 1fr !important; } }
/* תיקון קריטי 27.7: הרדיו הנסתרים ירשו width:100% גלובלי והרחיבו את הדף ב-360px */
.tt-tool .tt-radio { width: 1px; height: 1px; inset-inline-start: 0; top: 0; margin: 0; padding: 0; }

/* ── סצנות ההדמיה בהירו (27.7) — עובד גם בלי JS (מחזור CSS), JS משדרג להקלדה חיה ── */
.mp-stage { position: relative; height: 252px; overflow: hidden; }
.mp-scene { padding: 12px 16px 14px; box-sizing: border-box; }
.mp-scene { position: absolute; inset: 0; opacity: 0; animation: mpCycle 13.5s infinite; background: #fff; }
.mp-s1 { z-index: 1; } .mp-s2 { z-index: 2; } .mp-s3 { z-index: 3; }
.mp-s1 { animation-delay: 0s; }
.mp-s2 { animation-delay: 4.5s; }
.mp-s3 { animation-delay: 9s; }
@keyframes mpCycle {
  0%, 2.5% { opacity: 0; }
  6%, 30% { opacity: 1; }
  33.3%, 100% { opacity: 0; }
}
/* מצב JS: הסקריפט שולט, המחזור מנוטרל */
.js .mp-scene { animation: none; opacity: 1; display: none; position: absolute; inset: 0; }
.js .mp-scene.on { display: block; }
.mp-read { animation: mpScroll 4.2s ease-in-out infinite; }
@keyframes mpScroll { 0%, 20% { transform: translateY(0); } 78%, 100% { transform: translateY(-34px); } }
.mp-read p { font-size: .72rem; line-height: 1.65; color: #3f4a52; margin: 0 0 8px; text-align: right; }
.mp-read b { color: #5A4E6A; }
.hdc-chip.on { background: #3D5361; border-color: #3D5361; color: #fff; font-weight: 700; }
/* בלי JS: הצ'יפ "הרבה" נצבע מעצמו בתוך חלון הסצנה */
.mp-s2 .hdc-chip:nth-child(3) { animation: mpPick 13.5s infinite; animation-delay: 4.5s; }
.js .mp-s2 .hdc-chip:nth-child(3) { animation: none; }
@keyframes mpPick {
  0%, 14% { background: #fff; color: #5b6b76; border-color: #E5DCD5; }
  17%, 33.3% { background: #3D5361; color: #fff; border-color: #3D5361; font-weight: 700; }
  33.4%, 100% { background: #fff; color: #5b6b76; border-color: #E5DCD5; }
}
.mp-writebox { text-align: right; }
.mp-wq { font-size: .74rem; font-weight: 800; color: #5A4E6A; margin-bottom: 8px; }
.mp-wa { background: #faf7f4; border: 1px dashed #D6B7B5; border-radius: 8px; min-height: 58px; padding: 9px 10px; font-size: .74rem; line-height: 1.6; color: #3f4a52; }
/* בלי JS: התשובה נגלית בהדרגה בתוך חלון הסצנה */
.mp-wa .mp-nojs-answer { display: inline; animation: mpReveal 13.5s infinite; animation-delay: 9s; }
.js .mp-wa .mp-nojs-answer { display: none; }
@keyframes mpReveal { 0%, 6% { opacity: 0; } 20%, 33.3% { opacity: 1; } 33.4%, 100% { opacity: 0; } }
.mp-caret { display: inline-block; width: 2px; height: .9em; background: #B4767E; margin-inline-start: 2px; vertical-align: middle; animation: mpBlink 1s steps(1) infinite; }
@keyframes mpBlink { 50% { opacity: 0; } }
.mp-saved { display: none; font-size: .68rem; color: #687868; font-weight: 700; margin-top: 8px; }
.mp-saved.on { display: block; }
/* בלי JS: אישור השמירה מופיע בסוף חלון הסצנה */
.mp-scene.mp-s3 .mp-saved { display: block; opacity: 0; animation: mpSavedIn 13.5s infinite; animation-delay: 9s; }
.js .mp-scene.mp-s3 .mp-saved { display: none; opacity: 1; animation: none; }
.js .mp-scene.mp-s3 .mp-saved.on { display: block; }
@keyframes mpSavedIn { 0%, 22% { opacity: 0; } 27%, 33.3% { opacity: 1; } 33.4%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .mp-scene, .mp-read, .mp-caret, .mp-s2 .hdc-chip:nth-child(3), .mp-wa .mp-nojs-answer, .mp-scene.mp-s3 .mp-saved { animation: none !important; }
  .mp-scene { opacity: 0; } .mp-s3 { opacity: 1; } .mp-wa .mp-nojs-answer { opacity: 1; display: inline; }
  .mp-scene.mp-s3 .mp-saved { opacity: 1; }
}

/* ── טעימה קטנה מהכלים: שני כלים זה לצד זה (27.7) ── */
.taste-exercise.tt-tool { position: relative; }  /* תיקון: הרדיו נעגן כאן, לחיצה לא מקפיצה את הדף */
.tools-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
@media (max-width: 820px) { .tools-duo { grid-template-columns: 1fr; } }
.breathe-tool { text-align: center; display: flex; flex-direction: column; }
.breathe-lead { color: var(--clr-text-light, #5b6b76); font-size: .9rem; margin: 6px 0 4px; }
.breathe-stage { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 150px; }
.breathe-arc { transform-origin: 50% 88%; animation: breatheArc 10s ease-in-out infinite; }
@keyframes breatheArc { 0% { transform: scale(.72); } 40% { transform: scale(1); } 100% { transform: scale(.72); } }
.breathe-words { position: relative; height: 1.7em; font-weight: 800; color: #5A4E6A; }
.breathe-words span { position: absolute; inset: 0; opacity: 0; animation: breatheWord 10s infinite; }
.breathe-words .bw-in { animation-delay: 0s; }
.breathe-words .bw-out { animation-delay: 4s; }
@keyframes breatheWord { 0%, 4% { opacity: 0; } 8%, 36% { opacity: 1; } 42%, 100% { opacity: 0; } }
.breathe-words .bw-out { animation-name: breatheWordOut; }
@keyframes breatheWordOut { 0%, 4% { opacity: 0; } 8%, 52% { opacity: 1; } 58%, 100% { opacity: 0; } }
.breathe-note { font-size: .8rem; color: #8b8178; margin-top: 8px; }
@media (prefers-reduced-motion: reduce) {
  .breathe-arc, .breathe-words span { animation: none; }
  .breathe-words .bw-in { opacity: 1; }
}

/* ── כלי מפת הגוף (החליף את הנשימה, הכרעת ליאת 27.7) ── */
.body-tool { position: relative; text-align: center; display: flex; flex-direction: column; }
.bm-radio { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; inset-inline-start: 0; top: 0; margin: 0; }
.bm-lead { color: var(--clr-text-light, #5b6b76); font-size: .9rem; margin: 6px 0 10px; }
.bm-figure { position: relative; width: 150px; margin: 0 auto; flex: none; }
.bm-spot {
  position: absolute; width: 26px; height: 26px; border-radius: 50%;
  background: #B4767E33; border: 2px solid #B4767E; cursor: pointer;
  animation: bmPulse 2.2s ease-in-out infinite;
}
.bm-spot:hover { background: #B4767E66; }
@keyframes bmPulse { 0%, 100% { box-shadow: 0 0 0 0 #B4767E44; } 50% { box-shadow: 0 0 0 7px #B4767E00; } }
#bm-head:checked ~ .bm-figure label[for="bm-head"],
#bm-shoulders:checked ~ .bm-figure label[for="bm-shoulders"],
#bm-chest:checked ~ .bm-figure label[for="bm-chest"],
#bm-belly:checked ~ .bm-figure label[for="bm-belly"],
#bm-hands:checked ~ .bm-figure label[for="bm-hands"] { background: #B4767E; animation: none; }
.bm-echos { position: relative; min-height: 118px; margin-top: 14px; }
.bm-hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: .88rem; color: #8b8178; padding: 12px 14px;
}
.bm-echo {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  border-radius: 10px; padding: 12px 14px; overflow: auto;
  font-size: .9rem; line-height: 1.7; text-align: right; background: #B4767E15; color: #3f4a52;
  transition: opacity .2s ease;
}
#bm-head:checked ~ .bm-echos .e-head, #bm-shoulders:checked ~ .bm-echos .e-shoulders,
#bm-chest:checked ~ .bm-echos .e-chest, #bm-belly:checked ~ .bm-echos .e-belly,
#bm-hands:checked ~ .bm-echos .e-hands { opacity: 1; }
#bm-head:checked ~ .bm-echos .bm-hint, #bm-shoulders:checked ~ .bm-echos .bm-hint,
#bm-chest:checked ~ .bm-echos .bm-hint, #bm-belly:checked ~ .bm-echos .bm-hint,
#bm-hands:checked ~ .bm-echos .bm-hint { opacity: 0; }
.bm-more { margin-top: auto; padding-top: 12px; font-size: .88rem; }
.bm-more a { color: #B4767E; font-weight: 700; text-decoration: none; }
@media (prefers-reduced-motion: reduce) { .bm-spot { animation: none; } }
/* קיבוע גובה: מעבר בין נושאים לא משנה את גודל הכרטיס */
.tt-panel h3 { min-height: 2.7em; display: flex; align-items: flex-end; }
.tt-panel .tt-sub { min-height: 1.6em; }

/* שריון מקום להד גם בכלי ההתבוננות: הלחיצה לא משנה גובה */
.tt-echo { display: block; visibility: hidden; min-height: 84px; }
.tt-echo.on { visibility: visible; }

/* ── ערימת פאנלים: גובה הכלי קבוע בכל רוחב מסך (27.7) ── */
.tt-stage { display: grid; }
.tt-stage .tt-panel { grid-area: 1 / 1; display: block; visibility: hidden; }
#tt-anx:checked ~ .tt-stage .tt-p-anx,
#tt-adhd:checked ~ .tt-stage .tt-p-adhd,
#tt-cpl:checked ~ .tt-stage .tt-p-cpl,
#tt-bnd:checked ~ .tt-stage .tt-p-bnd { visibility: visible; }

/* ── שלושת הצעדים על פס נייבי (הכרעת ליאת 27.7: לא נבלע יותר) ── */
.steps-band { background: #3D5361; border-radius: 18px; padding: 34px 30px 28px; margin-top: 44px; }
.steps-band-title { text-align: center; color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }
.steps-band .step-num, .steps-band h3:not(.steps-band-title) { color: #fff; }
.steps-band p { color: #E9EEF2; }
.band-sub { margin-top: 14px; font-size: .9rem; }
.band-sub a { color: #DCE4EA; text-decoration: underline; }
/* הרחבת כרטיס "מי מאחורי" (הכרעת ליאת 27.7: היה צר וארוך) */
.about-card { max-width: 840px; }

/* ===== HERO SPLIT: תמונת אווירה לצד תוכן ההירו בעמודי המכירה (27.7) ===== */
.hero-inner-split {
  display: flex;
  align-items: center;
  gap: 56px;
}
.hero-inner-split .hero-content { flex: 1 1 55%; }
.hero-photo {
  flex: 1 1 45%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(61, 83, 97, 0.16);
}
.hero-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
@media (max-width: 768px) {
  .hero-inner-split { flex-direction: column; }
  .hero-inner-split .hero-content { flex: 1 1 auto; width: 100%; }
  .hero-photo { flex: 1 1 auto; width: 100%; margin-top: 28px; }
  .hero-photo img { height: 240px; }
}

/* ── כל כרטיס חוברת לחיץ במלואו (בקשת ליאת 27.7 לילה) ── */
.workbook-card { position: relative; cursor: pointer; }
.workbook-card > a.btn-primary::after,
.workbook-card > a.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.workbook-card > a.btn-primary,
.workbook-card > a.btn-secondary {
  position: relative;
  z-index: 2;
}
.workbook-card .cover-badge {
  z-index: 2;
}

/* ── פס שלושת הצעדים ברוחב מלא (בקשת ליאת 28.7) ── */
.steps-band {
  background: #3D5361;
  border-radius: 0;
  padding: 56px 0;
  margin-top: 0;
}
.pb-tight { padding-bottom: 44px; }
.pt-tight { padding-top: 56px; }
@media (max-width: 760px) {
  .steps-band { padding: 44px 0; }
  .pb-tight { padding-bottom: 32px; }
  .pt-tight { padding-top: 40px; }
}
