/* ==================================================
   משתנים כלליים
================================================== */
:root {
  --bg: #efe2d5;
  --surface: #fffaf6;
  --surface-2: #f7eee6;
  --blue: #8d9bca;
  --blue-dark: #6e7fb5;
  --text: #201b20;
  --muted: #6c6368;
  --shadow: 0 16px 34px rgba(72, 54, 46, 0.15);
  --radius: 26px;
  --header-height: 74px;
}

/* ==================================================
   איפוס והגדרות בסיס
================================================== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  margin: 0;
  direction: rtl;
  font-family: "Assistant", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow-container {
  width: min(900px, calc(100% - 40px));
  margin-inline: auto;
}

/* ==================================================
   HEADER / NAVIGATION
================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 250, 246, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  flex-shrink: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 2px;
  white-space: nowrap;
}
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 16px;
  font-weight: 700;
}
.nav-links > a {
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links > a:hover {
  color: var(--blue-dark);
}
.nav-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-whatsapp {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.nav-whatsapp img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.nav-whatsapp:hover {
  transform: translateY(-2px);
}
.nav-whatsapp:hover img {
  transform: scale(1.1);
}
.whatsapp-community-btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: var(--blue);
  color: white;
  font-weight: 800;
  white-space: nowrap;
  transition:
          background-color 0.25s ease,
          color 0.25s ease,
          transform 0.25s ease,
          box-shadow 0.25s ease;
}
.whatsapp-community-btn:hover,
.nav-cta:hover {
  background-color: var(--blue-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(110, 127, 181, 0.24);
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.mobile-whatsapp-actions {
  display: none;
}

/* ==================================================
   HERO
================================================== */
.hero {
  position: relative;
  min-height: 720px;
  background-image: url("assets/hadas-hero-bg.png");
  background-repeat: no-repeat;
  background-size: auto 140%;
  background-position: left bottom;
  background-color: #eedbc8;
  overflow: hidden;
}
.hero-overlay {
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background:
          linear-gradient(
                  to left,
                  rgba(239, 226, 213, 0.96) 0%,
                  rgba(239, 226, 213, 0.90) 28%,
                  rgba(239, 226, 213, 0.60) 48%,
                  rgba(239, 226, 213, 0.15) 70%,
                  rgba(239, 226, 213, 0) 84%
          );
}
.hero-copy {
  width: 48%;
  max-width: 820px;
  margin-right: 4%;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: right;
}
.hero-kicker {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 5px;
}
.hero h1 {
  margin: 0 0 24px;
  font-family: "Heebo", sans-serif;
  font-size: clamp(46px,4vw,66px);
  line-height: 1.15;
  color: #7181b6;
}
.hero-text {
  margin-bottom: 35px;
  font-size: 21px;
  line-height: 1.7;
}
.hero-button {
  min-width: 300px;
}

/* ==================================================
   כפתורים
================================================== */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 0;
  border-radius: 999px;
  color: white;
  background-color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(110, 127, 181, 0.3);
  cursor: pointer;
  transition:
          background-color 0.2s ease,
          transform 0.2s ease,
          box-shadow 0.2s ease;
}
.primary-button:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(110, 127, 181, 0.36);
}

/* ==================================================
   אזורים כלליים
================================================== */
.section {
  padding: 90px 0;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 25px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}
.section h2,
.contact-section h2 {
  margin: 0 0 20px;
  font-family: "Heebo", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
}
.section p {
  font-size: 18px;
}

/* ==================================================
   מערכי Grid
================================================== */
.cards-grid {
  display: grid;
  gap: 28px;
}
.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pain-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  min-height: 240px;
  margin-inline: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background-color: var(--blue);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 14px 25px rgba(74, 83, 126, 0.28);
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.reverse > :first-child {
  order: 2;
}

/* ==================================================
   אזור הכאבים
================================================== */
.pain-section {
  background-color: #fffdfa;
}

/* ---------- הכותרת ---------- */
.pain-heading {
  max-width: none;
  margin-bottom: 55px;
}
.pain-main-title {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Heebo", sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transform: translateY(20px);
}

/* ---------- הכרטיסים ---------- */
.pain-card span {
  display: block;
  text-align: right;
  font-size: 19px;
  font-weight: 800;
}
.pain-card h3 {
  margin: 8px 0;
  font-size: 21px;
}
.pain-card p {
  margin: 0;
  font-size: 16px;
}

/* ---------- הכיתוב והחץ מתחת לכרטיסים ---------- */
.solution-callout {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.solution-callout p {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

/* החץ שלך */
.solution-arrow {
  width: 100px;
  height: auto;
  margin-top: 5px;
  object-fit: contain;
}

/* ==================================================
   אזור אודות
================================================== */
.about-section {
  background-color: var(--bg);
}
.about-copy p {
  margin: 0 0 17px;
}
.photo-frame {
  position: relative;
  padding: 18px;
  background-color: white;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 16px -17px -17px 18px;
  z-index: -1;
  background-color: #d7dce9;
}
.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 65%;
}

.about-copy .eyebrow {
  font-size: 30px !important;
  font-weight: 800;
  margin-bottom: 14px;
}
/* ==================================================
   TRANSFORMATION
================================================== */
.transformation-section {
  background-color: #fffdfa;
}
.transformation-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

/* ==================================================
   TRANSFORMATION TEXT
================================================== */
.transformation-copy {
  width: 100%;
  max-width: 720px;

  text-align: right;
}
.transformation-copy h2 {
  width: 100%;
  max-width: 700px;

  margin: 0 0 24px;

  font-size: clamp(42px, 3.2vw, 54px);
  line-height: 1.12;

  color: var(--text);
}

/* ==================================================
   BEFORE / AFTER AREA
================================================== */
.comparison-area {
  width: 100%;
}

/* ---------- מסגרת התמונות ---------- */
.before-after {
  position: relative;
  width: min(470px, 100%);
  height: min(590px, 70vh);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  direction: ltr;
}

/* ---------- שתי התמונות ---------- */
.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

/* ---------- אזור החשיפה של אחרי ---------- */
.after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width 0.35s ease;
}
.after-image {
  width: 470px;
  max-width: none;
}

/* ---------- קו באמצע ---------- */
.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: white;
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 0.35s ease;
}

/* ---------- הידית ---------- */
.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: white;
  color: var(--blue-dark);
  font-size: 23px;
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  transition: left 0.35s ease;
}

/* ---------- הסליידר השקוף ---------- */
.comparison-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

/* ---------- לפני / אחרי ---------- */

.before-label,
.after-label {
  position: absolute;
  top: 18px;

  padding: 7px 16px;

  border-radius: 999px;

  background-color: rgba(110, 127, 181, 0.92);

  color: white;

  font-weight: 800;

  pointer-events: none;
}

.before-label {
  right: 18px;
  left: auto;
}

.after-label {
  left: 18px;
  right: auto;
}


/* הגדלה רק של תמונת After1 */

.after-image[src$="hadas-After1.jpeg"] {
  transform: scale(1.60);
  transform-origin: center center;
}

/* ==================================================
   DOTS
================================================== */
.comparison-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.comparison-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #d2d5e1;
  cursor: pointer;
  transition: 0.2s;
}
.comparison-dot.active {
  width: 28px;
  border-radius: 999px;
  background-color: var(--blue);
}


/* ==================================================
   REBUILD
================================================== */
.rebuild-section {
  background-color: #fffdfa;
}
.rebuild-art {
  position: relative;
  min-height: 430px;
}
.rebuild-logo-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.berries-img {
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid #fffdfa;
  box-shadow: var(--shadow);
}
.rebuild-copy p {
  margin-bottom: 18px;
}

/* ==================================================
   PROGRAM
================================================== */
.program-section {
  background-color: var(--bg);
}
.program-grid {
  margin-top: 40px;
}
.program-card {
  overflow: hidden;
  background-color: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.program-card:hover {
  transform: translateY(-6px);
}

/* תמונות */
.program-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* תמונות שבהן חשוב לראות את הראש */
.program-card img.show-head {
  object-position: center 20%;
}

/* תוכן */
.program-card div {
  padding: 22px;
}
.program-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}
.program-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* ==================================================
   CLIENTS TITLE
================================================== */

/* ==================================================
   TESTIMONIALS
================================================== */
.testimonials-section {
  padding: 70px 0 90px;
  background-color: #fffdfa;
}
.clients-title {
  margin: 0 0 45px;
  text-align: center;
  color: var(--blue-dark);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
}

/* ---------- הקרוסלה ---------- */

/* ==================================================
   TESTIMONIALS CAROUSEL
================================================== */
.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.testimonials-window {
  width: 100%;
  max-width: 850px;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.45s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.testimonial-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 290px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(76, 59, 53, 0.14);
}

/* חצים */
.carousel-button {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background-color: var(--blue);
  color: white;
  font-size: 32px;
  cursor: pointer;
}
/* ==================================================
   FAQ
================================================== */
.faq-section {
  background-color: var(--bg);
}
.faq-heading {
  margin-bottom: 30px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}
.faq-question span {
  font-size: 28px;
  transition: .25s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 16px;
}
.faq-item.open .faq-answer {
  max-height: 240px;
}
.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

/* ==================================================
   CONTACT
================================================== */
.contact-section {
  position: relative;
  background:
          url("assets/contact-new.jpg")
          center center / cover
          no-repeat;
  overflow: hidden;
}

/* ---------- שכבת הבהרה מעל התמונה ---------- */
.contact-overlay {
  padding: 80px 0;
  background:
          linear-gradient(
                  90deg,
                  rgba(239, 226, 213, 0.78) 0%,
                  rgba(239, 226, 213, 0.88) 45%,
                  rgba(239, 226, 213, 0.95) 100%
          );
}

/* ---------- סידור כל האזור ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas: "form copy";
  align-items: center;
  gap: 90px;
  direction: ltr;
}

/* ==================================================
   טקסט בצד ימין
================================================== */
.contact-copy {
  grid-area: copy;
  direction: rtl;
  text-align: right;
  width: 100%;
  max-width: 600px;
  justify-self: end;
  padding-right: 20px;
}
.contact-copy .eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 800;
}
.contact-copy h2 {
  font-family: "Fredoka", "Assistant", sans-serif;
  font-size: clamp(48px, 4.2vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #7181b6;
  margin: 0 0 28px;
}
.contact-copy p {
  max-width: 500px;
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.8;
}
.contact-copy .contact-small-note {
  margin-top: 22px;
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 800;
}

/* ==================================================
   טופס בצד שמאל
================================================== */
.contact-form {
  grid-area: form;
  direction: rtl;
  width: 100%;
  max-width: 460px;
  justify-self: center;
  padding: 28px 30px;
  background: rgba(255, 250, 246, 0.97);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

/* ---------- כותרת הטופס ---------- */
.contact-form h3 {
  margin: 0 0 22px;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 26px;
}

/* ---------- כותרות השדות ---------- */
.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
  direction: rtl;
  text-align: right;
  font-weight: 700;
}

/* ---------- שדות ---------- */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  direction: rtl;
  text-align: right;
  border: 1px solid transparent;
  border-radius: 14px;
  background-color: #d9ddec;
  outline: none;
  transition: 0.2s;
}
.contact-form input {
  height: 48px;
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

/* ---------- מספר טלפון ---------- */
.contact-form input[type="tel"] {
  direction: rtl;
  text-align: right;
}

/* ---------- פוקוס ---------- */
.contact-form input:focus,
.contact-form textarea:focus {
  background-color: white;
  border-color: var(--blue-dark);
}

/* ---------- כפתור ---------- */
.contact-form .primary-button {
  display: flex;
  width: fit-content;
  margin: 16px auto 0;
  padding: 11px 30px;
}

/* ---------- טקסט מתחת לכפתור ---------- */
.form-success,
.form-error {
  display: none;
  margin: 16px 0 0;
  text-align: center;
  font-weight: 700;
}
.form-success {
  color: var(--blue-dark);
}
.form-error {
  color: #a64b4b;
}

/* ==================================================
   FOOTER
================================================== */
.footer{
  background:#17151a;
  color:white;
}
.footer-inner{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ==================================================
   HEADER - RESPONSIVE
================================================== */
@media (max-width: 1220px) {
  .navbar {
    position: relative;
    min-height: 64px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    direction: ltr;
  }

  .menu-button {
    grid-column: 1;
    grid-row: 1;
    display: block;
    justify-self: start;
    padding: 6px;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    direction: ltr;
    font-size: 24px;
  }

  .nav-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    direction: rtl;
  }

  .nav-actions > .nav-whatsapp,
  .nav-actions > .whatsapp-community-btn {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 15px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    direction: rtl;
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    width: 100%;
    padding: 10px 12px;
    text-align: center;
  }

  .mobile-whatsapp-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-whatsapp-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background-color: #f2f4fb;
    color: var(--text);
    font-weight: 800;
  }

  .mobile-whatsapp-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .mobile-whatsapp-actions .whatsapp-community-btn {
    width: 100%;
  }

  .mobile-whatsapp-actions .whatsapp-community-btn:hover {
    color: white;
  }
}

/* ==================================================
   TABLET
================================================== */
@media (max-width: 900px) {

  /* ---------- Hero בטאבלט ---------- */
  .hero {
    min-height: 760px;
    background-image: url("assets/hadas-hero-bg.png");
    background-repeat: no-repeat;
    background-size: auto 64%;
    background-position: left bottom;
    background-color: #efe2d5;
  }
  .hero-overlay {
    width: 100%;
    min-height: 760px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background:
            linear-gradient(
                    to bottom,
                    rgba(239, 226, 213, 1) 0%,
                    rgba(239, 226, 213, 1) 42%,
                    rgba(239, 226, 213, 0.92) 54%,
                    rgba(239, 226, 213, 0.38) 68%,
                    rgba(239, 226, 213, 0) 80%
            );
  }
  .hero-copy {
    width: 48%;
    max-width: 820px;
    margin-right: 4%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: right;
  }
  .hero-kicker {
    margin: 0 0 18px;
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 5px;
  }
  .hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    font-family: "Heebo", sans-serif;
    font-size: clamp(42px, 3.6vw, 58px);
    line-height: 1.12;
    color: #7181b6;
  }
  .hero-text {
    max-width: 520px;
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.6;
  }
  .hero-button {
    width: auto;
    min-width: 270px;
  }

  /* ---------- גרידים ---------- */
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .reverse > :first-child {
    order: initial;
  }
  .three-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---------- יצירת קשר ---------- */
  .contact-overlay {
    background: rgba(239, 226, 213, 0.9);
  }
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 620px) {

  /* ==================================================
     בסיס
  ================================================== */
  .container,
  .narrow-container {
    width: min(100% - 26px, 1180px);
  }
  .section {
    padding: 65px 0;
  }

  .logo {
    font-size: 21px;
    letter-spacing: 1.5px;
  }
  .nav-cta {
    min-height: 38px;
    padding: 8px 15px;
    font-size: 14px;
  }


  /* ==================================================
     HERO
  ================================================== */
  .hero {
    min-height: 700px;
    background-image: url("assets/hadas-hero-bg.png");
    background-repeat: no-repeat;
    background-size: auto 65%;
    background-position: 10% bottom;
    background-color: #efe2d5;
  }
  .hero-overlay {
    width: 100%;
    min-height: 700px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    background:
            linear-gradient(
                    to bottom,
                    rgba(239, 226, 213, 1) 0%,
                    rgba(239, 226, 213, 1) 45%,
                    rgba(239, 226, 213, 0.82) 52%,
                    rgba(239, 226, 213, 0.35) 60%,
                    rgba(239, 226, 213, 0) 68%
            );
  }
  .hero-copy {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 28px 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-kicker {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
  }
  .hero h1 {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 18px;
    font-size: 34px;
    line-height: 1.15;
  }
  .hero-text {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 20px;
    font-size: 15px;
    line-height: 1.6;
  }
  .hero-text br {
    display: none;
  }
  .hero-button {
    width: auto;
    min-width: 230px;
    padding: 11px 24px;
    font-size: 15px;
  }
  

  /* ==================================================
     PAIN CARDS - MOBILE
  ================================================== */
  .three-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pain-card {
    width: calc(100% - 28px);
    max-width: 380px;
    min-height: 0;
    margin: 0 auto;
    padding: 24px 22px;
    border-radius: 16px;
  }
  .pain-card > span {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .pain-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.35;
  }
  .pain-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  /* ==================================================
     ABOUT
  ================================================== */
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-copy {
    text-align: right;
  }
  .about-copy .eyebrow {
    font-size: 28px;
  }

  /* ==================================================
   TRANSFORMATION - MOBILE
================================================== */
  .transformation-section {
    padding: 55px 0;
  }

  /* הופכים את כל הסקשן לעמודה אחת */
  .transformation-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  /* ---------- הטקסט ---------- */
  .transformation-copy {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 12px;
    text-align: center;
  }
  .transformation-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .about-copy .eyebrow,
  .rebuild-copy .eyebrow {
    font-size: 24px;
  }
  
  .transformation-copy h2 {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 18px;
    font-size: 34px;
    line-height: 1.12;
  }
  .transformation-copy p {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 14px;
    font-size: 16px;
    line-height: 1.65;
  }
  .transformation-copy .transformation-highlight {
    margin-top: 18px;
  }

  /* ---------- אזור התמונות ---------- */
  .comparison-area {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* ---------- Before / After ---------- */
  .before-after {
    width: calc(100% - 28px);
    max-width: 340px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    border-radius: 20px;
  }

  /* התמונות עצמן */
  .before-image,
  .after-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* חשוב במיוחד במובייל */
  .after-image {
    width: 340px;
    max-width: none;
  }

  /* ---------- הידית ---------- */
  .comparison-handle {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* ---------- לפני / אחרי ---------- */
  .before-label,
  .after-label {
    top: 12px;
    padding: 6px 12px;
    font-size: 13px;
  }
    .before-label {
      right: 12px;
      left: auto;
    }

    .after-label {
      left: 12px;
      right: auto;
    }

  /* ---------- הנקודות מתחת ---------- */
  .comparison-dots {
    margin-top: 16px;
  }

  /* ==================================================
     REBUILD
  ================================================== */
  .reverse > :first-child {
    order: initial;
  }
  .rebuild-art {
    min-height: 340px;
  }

  /* ==================================================
     PROGRAM
  ================================================== */
  .program-grid {
    margin-top: 25px;
  }
  .program-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  /* ==================================================
     TESTIMONIALS CAROUSEL
  ================================================== */
  .testimonials-section {
    padding: 55px 0 70px;
  }
  .clients-title {
    margin-bottom: 30px;
    font-size: 34px;
  }
  .testimonials-carousel {
    gap: 8px;
  }
  .testimonials-window {
    width: 100%;
  }
  .testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 300px;
    padding: 12px;
  }
  .testimonial-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 270px;
    object-fit: contain;
  }
  .carousel-button {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    font-size: 25px;
  }

  /* ==================================================
     FAQ
  ================================================== */
  .faq-question {
    padding: 16px;
    font-size: 17px;
  }
  .faq-answer p {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  /* ==================================================
     CONTACT
  ================================================== */
  .contact-section {
    background-position: center bottom;
  }
  .contact-overlay {
    padding: 55px 0;
    background: rgba(239, 226, 213, 0.88);
  }
  .contact-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 35px;
    direction: rtl;
  }
  .contact-copy {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 10px;
    text-align: center;
  }
  .contact-copy .eyebrow {
    width: 100%;

    margin: 0 auto 12px;

    text-align: center;

    font-size: 22px;
    line-height: 1.2;
  }
  .contact-copy h2 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1.12;
  }
  .contact-copy p {
    max-width: 340px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.65;
  }
  .contact-copy .contact-small-note {
    margin-top: 16px;
    font-size: 15px;
  }

  /* ---------- הטופס ---------- */
  .contact-form {
    order: 2;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 24px 20px;
    justify-self: auto;
  }
  .contact-form h3 {
    margin-bottom: 20px;
    font-size: 23px;
    line-height: 1.25;
  }
  .contact-form label {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .contact-form input {
    height: 46px;
  }
  .contact-form textarea {
    min-height: 90px;
  }
  .contact-form .primary-button {
    width: fit-content;
    margin: 16px auto 0;
    padding: 11px 24px;
    font-size: 15px;
  }

  /* ==================================================
     FOOTER
  ================================================== */
  .footer-inner {
    min-height: 100px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }
}
/* =========================================
   אפקט לכותרות
========================================= */
.hero h1,
.section h2,
.clients-title,
.contact-copy h2 {
  text-shadow:
          4px 4px 0 #c2cbe8,
          7px 7px 0 rgba(113, 129, 182, 0.18);
}

.title-mark {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.title-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -6px;
  left: -6px;
  bottom: 2px;
  height: 12px;
  background: rgba(141, 155, 202, 0.34);
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

/* פונט לכל הכיתובים באנגלית */
.english-font {
  font-family: Georgia, "Times New Roman", serif !important;
}

.about-copy .eyebrow,
.transformation-copy .eyebrow,
.rebuild-copy .eyebrow {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.about-copy h2,
.transformation-copy h2,
.rebuild-copy h2,
.pain-main-title,
.clients-title {
  text-shadow: none !important;
}
.section h2 {
  text-shadow: none !important;
}

