/* styles.css (מוכן להדבקה) */
:root {
  --bg: #0b0b0c;
  --bg2: #111214;

  /* Glass panels */
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.085);

  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.68);
  --line: rgba(255, 255, 255, 0.1);

  --orange: #ff4d2e;
  --orange2: #ff6b3d;

  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);

  --container: 1120px;
  --pad: 18px;

  --hero-img: url("hero-background.png");
  --hero-pos-x: 72%;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(
      900px 600px at 50% -10%,
      rgba(255, 77, 46, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
}

.top-strip {
  height: 12px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

/* ✅ לוגו גדול יותר */
.brand__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: transparent;
  border: 0;
  padding: 0;
}

.brand__logo {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.6));
}

.brand__name {
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 17px;
}

@media (max-width: 520px) {
  .brand__icon,
  .brand__logo {
    width: 64px;
    height: 64px;
  }
  .brand__name {
    font-size: 15px;
  }
}

.navToggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__link {
  color: rgba(245, 245, 245, 0.86);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
}
.nav__cta {
  white-space: nowrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  font-weight: 900;
  user-select: none;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.btn:active {
  transform: translateY(1px);
}
.btn--lg {
  padding: 12px 16px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #0b0b0c;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(255, 77, 46, 0.18);
}

.btn--primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* HERO */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 42px 0 30px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  isolation: isolate;
  background-color: #000;
  background-image: var(--hero-img);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: var(--hero-pos-x) center;
  z-index: -3;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: var(--hero-img);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--hero-pos-x) center;
  filter: blur(18px) saturate(1.12) contrast(1.05);
  opacity: 0.32;
  transform: scale(1.06);
  z-index: -1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.7) 55%,
      rgba(0, 0, 0, 0.92) 100%
    ),
    radial-gradient(
      1200px 800px at 50% 50%,
      rgba(0, 0, 0, 0.16),
      rgba(0, 0, 0, 0.88)
    );
  z-index: -2;
}

.hero__gridlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      transparent 49.7%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 50.3%
    ),
    linear-gradient(
      225deg,
      transparent 49.7%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 50.3%
    );
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
}

.hero__big {
  position: absolute;
  top: -24px;
  right: 0;
  font-size: clamp(52px, 6.8vw, 110px);
  font-weight: 900;
  letter-spacing: 6px;
  opacity: 0.12;
  text-transform: uppercase;
  pointer-events: none;
}

.hero__content {
  max-width: 720px;
}

.hero__title {
  margin: 0 0 12px;
  display: grid;
  gap: 6px;
  line-height: 1.05;
}

.hero__titleAccent {
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  color: var(--orange2);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero__titleMain {
  font-size: clamp(34px, 4.3vw, 62px);
  font-weight: 900;
  letter-spacing: 0.6px;
}

.hero__sub {
  margin: 0 0 18px;
  color: rgba(245, 245, 245, 0.78);
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlights {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.highlight {
  border-radius: 14px;
  padding: 12px 12px;
  border: 2px solid rgba(255, 77, 46, 0.75);
  background: rgba(0, 0, 0, 0.35);
}

.highlight__title {
  font-weight: 900;
  color: rgba(245, 245, 245, 0.92);
  margin-bottom: 4px;
}

.highlight__text {
  font-size: 13px;
  color: rgba(245, 245, 245, 0.72);
}

/* SECTIONS */
.section {
  padding: 56px 0;
}

.section--dark {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.section__num {
  font-size: 58px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 1px;
}

.section__kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(245, 245, 245, 0.62);
  text-transform: uppercase;
}

.section__title {
  margin: 2px 0 6px;
  font-size: 26px;
  font-weight: 900;
}

.section__desc {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 12px;
  align-items: stretch;
}

.about__media {
  border-radius: var(--radius);
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background-image: var(--about-img);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.about__mediaShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
}

.about__card {
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.about__headline {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.about__text {
  margin: 0 0 14px;
  color: rgba(245, 245, 245, 0.74);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step__dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 0 0 6px rgba(255, 77, 46, 0.12);
}

.step__title {
  display: block;
  font-weight: 900;
  margin-bottom: 2px;
}

.step__text {
  font-size: 13px;
  color: rgba(245, 245, 245, 0.72);
}

.about__cta {
  margin-top: 14px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255, 77, 46, 0.72);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.service__media {
  height: 170px;
  background-image: var(--svc-img);
  background-size: cover;
  background-position: center;
  position: relative;
}

.service__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.7));
}

.service__body {
  padding: 14px;
}

.service__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.service__text {
  margin: 0;
  color: rgba(245, 245, 245, 0.72);
  font-size: 14px;
}

/* ✅ SERVICES CTA */
.services__cta {
  margin-top: 14px;
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
}

.services__ctaHint {
  margin: 0;
  color: rgba(245, 245, 245, 0.68);
  font-size: 13px;
  line-height: 1.6;
  max-width: 60ch;
}

/* CTA Panel */
.ctaPanel {
  margin-top: 14px;
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ctaPanel__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.ctaPanel__text {
  margin: 0;
  color: rgba(245, 245, 245, 0.74);
}

/* FOOTER */
.footer {
  padding: 26px 0 34px;
}
.footer__inner {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  color: rgba(245, 245, 245, 0.62);
  font-size: 14px;
  text-align: center;
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ✅ RESULTS / CAROUSEL
========================= */
.results {
  margin-top: 26px;
}

.carousel {
  position: relative;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 77, 46, 0.72);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
  overflow: hidden;

  --progress: 0;
}

/* viewport LTR לתזוזה תקינה */
.carousel__viewport {
  overflow: hidden;
  direction: ltr;
  background: transparent;
}

.carousel__track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  padding: 14px;
  align-items: stretch;
  direction: rtl;
  background: transparent;
}

.slide__media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ba {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 77, 46, 0.75);
  background: transparent;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.ba::before,
.ba::after {
  content: none !important;
  display: none !important;
}

.ba img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: none;
  opacity: 1;
  cursor: zoom-in;
}

.ba__cap {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.95);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.slide__quote {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel2);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);

  padding: 18px;
  padding-bottom: 58px; /* בדסקטופ יש meta בפנים */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.quote__text {
  margin: 0;
  max-width: 52ch;
  color: rgba(245, 245, 245, 0.86);
  line-height: 1.75;
  font-size: 14px;
}

.quote__meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quote__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #0b0b0c;
}

.quote__hint {
  color: rgba(245, 245, 245, 0.6);
  font-size: 12px;
  font-weight: 800;
}

/* Buttons RTL */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;

  border-radius: 999px;
  border: 2px solid rgba(255, 77, 46, 0.35);
  background: rgba(10, 10, 11, 0.35);
  backdrop-filter: blur(10px);

  color: rgba(245, 245, 245, 0.95);
  cursor: pointer;
  display: grid;
  place-items: center;

  font-size: 30px;
  font-weight: 900;
  line-height: 1;

  z-index: 6;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.carousel__btn:hover {
  background: rgba(10, 10, 11, 0.5);
  border-color: rgba(255, 77, 46, 0.55);
}

.carousel__btn--prev {
  right: 14px;
  left: auto;
}

.carousel__btn--next {
  left: 14px;
  right: auto;
}

/* Progress Bar */
.carousel__dots {
  display: flex;
  justify-content: center;
  padding: 12px 12px 14px;
  background: transparent;
}

.carousel__progressTrack {
  position: relative;
  width: min(340px, 70%);
  height: 10px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;

  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}

.carousel__progressFill {
  position: absolute;
  inset: 0;
  width: calc(var(--progress) * 100%);
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 999px;
}

.carousel__progressThumb {
  position: absolute;
  top: 50%;
  left: calc(var(--progress) * 100%);
  transform: translate(-50%, -50%);

  width: 18px;
  height: 18px;
  border-radius: 999px;

  background: rgba(245, 245, 245, 0.95);
  border: 3px solid rgba(255, 77, 46, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.carousel__progressTrack:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 77, 46, 0.18);
  border-color: rgba(255, 77, 46, 0.55);
}

/* =========================
   ✅ SECTION 04 — ON ME
========================= */
.onme {
  padding: 56px 0;
}

.onme__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: stretch;
}

.onme__media {
  position: relative;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 77, 46, 0.72);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  min-height: 360px;
  display: grid;
  place-items: center;
}

/* ✅ ללא קרופ */
.onme__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: rgba(0, 0, 0, 0.28);
}

.onme__mediaBadge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.95);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.onme__card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel2);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
  padding: 18px;
}

.onme__headline {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.onme__text {
  margin: 0 0 10px;
  color: rgba(245, 245, 245, 0.78);
  line-height: 1.8;
  font-size: 14px;
}

/* chips */
.onme__chips {
  margin: 12px 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.onme__chip {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(245, 245, 245, 0.92);
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 77, 46, 0.28);
}

.onme__note {
  margin-top: 14px;
  border-radius: 14px;
  padding: 12px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 245, 245, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.onme__noteDot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 0 0 6px rgba(255, 77, 46, 0.12);
  flex: 0 0 auto;
}

/* =========================
   ✅ LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__stage {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.lightbox__img {
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  border: 2px solid rgba(255, 77, 46, 0.75);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.6);
  cursor: default;
  transform: scale(0.92);
  opacity: 0;
}

@keyframes lbZoomIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox.is-open .lightbox__img {
  animation: lbZoomIn 220ms ease-out both;
}

.lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 245, 0.95);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;

  border-radius: 999px;
  border: 2px solid rgba(255, 77, 46, 0.35);
  background: rgba(10, 10, 11, 0.35);
  backdrop-filter: blur(10px);

  color: rgba(245, 245, 245, 0.95);
  cursor: pointer;

  display: grid;
  place-items: center;

  font-size: 34px;
  font-weight: 900;
  line-height: 1;

  z-index: 10000;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.lightbox__nav:hover {
  background: rgba(10, 10, 11, 0.55);
  border-color: rgba(255, 77, 46, 0.6);
}

.lightbox__nav--prev {
  right: 16px;
  left: auto;
}

.lightbox__nav--next {
  left: 16px;
  right: auto;
}

/* =========================
   ✅ RESPONSIVE
========================= */
@media (max-width: 980px) {
  .navToggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(10, 10, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav.is-open {
    display: flex;
  }
  .nav__cta {
    width: 100%;
  }

  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .about {
    grid-template-columns: 1fr;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .ctaPanel {
    flex-direction: column;
    align-items: flex-start;
  }

  .slide {
    grid-template-columns: 1fr;
  }

  .ba img {
    height: 260px;
  }

  .carousel__btn--prev {
    right: 10px;
  }
  .carousel__btn--next {
    left: 10px;
  }

  .carousel__progressTrack {
    width: min(320px, 80%);
  }

  .onme__grid {
    grid-template-columns: 1fr;
  }

  .onme__media {
    min-height: 300px;
  }

  .onme__headline {
    font-size: 18px;
  }

  .services__cta {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .section__num {
    font-size: 48px;
  }
  .highlights {
    grid-template-columns: 1fr;
  }

  .slide__media {
    grid-template-columns: 1fr;
  }

  .ba img {
    height: 240px;
  }

  .carousel__progressTrack {
    width: min(300px, 86%);
  }

  .lightbox__nav {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }
}

/* =========================
   ✅ MOBILE FIX: "המלצה" לא יעלה על הטקסט
   - במובייל meta נהיה מתחת לטקסט (לא absolute)
========================= */
@media (max-width: 920px) {
  .slide__quote {
    /* לא צריך רווח של absolute meta */
    padding-bottom: 16px !important;
    flex-direction: column !important;
  }

  .quote__meta {
    position: static !important; /* ✅ זה הפתרון */
    margin-top: 12px !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  .quote__badge {
    display: inline-flex !important; /* ✅ נשאר במובייל */
  }

  .quote__hint {
    text-align: center !important;
  }
}

/* ✅ מובייל: מרכז אמיתי לצ'יפים (בואו נכיר) */
@media (max-width: 920px) {
  .onme__card .onme__chips {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;

    list-style: none !important;
    padding: 0 !important;
    margin: 18px 0 0 !important;
    width: 100% !important;
  }

  .onme__card .onme__chip {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    text-align: center !important;
    flex: 0 0 auto !important;
  }
}
/* ✅ MOBILE: לראות "יותר" מהתמונות (יותר תוכן במסך, פחות בזבוז מקום) */
@media (max-width: 920px) {
  /* פחות ריווח/מסגרת סביב התמונה */
  .ba {
    padding: 4px !important;
    border-width: 1px !important;
  }

  /* התמונה עצמה — "להתרחק" מעט (קטנה יותר) ועדיין בלי קרופ */
  .ba img {
    max-height: 48vh !important; /* היה 70vh — זה מה שגרם לה להיות ענקית */
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* קצת פחות ריווח כללי כדי להרוויח עוד מקום לתמונה */
  .slide {
    padding: 10px !important;
    gap: 12px !important;
  }

  .slide__media {
    gap: 10px !important;
  }
}
/* ✅ MOBILE: לפני/אחרי נראה פרימיום (בלי letterbox) */
@media (max-width: 920px) {
  /* כל בלוק תמונה מקבל יחס קבוע כדי להיראות אחיד */
  .ba {
    padding: 0 !important;
    border-width: 2px !important;
    border-radius: 18px !important;
    background: transparent !important;
    overflow: hidden !important;

    /* יחס שמתאים לרוב תמונות גוף (אפשר לשחק עם זה) */
    aspect-ratio: 3 / 4; /* יותר "גבוה" */
  }

  /* התמונה ממלאת את המסגרת בצורה מקצועית */
  .ba img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important; /* ✅ זה מה שמבטל את הפסים */
    object-position: 50% 20% !important; /* ✅ מרים קצת את הפוקוס (פחות חיתוך ראש) */
    border-radius: 0 !important;
    background: transparent !important;
  }

  /* אם עדיין מרגיש גדול מדי – פחות גובה מסביב */
  .slide {
    padding: 10px !important;
    gap: 12px !important;
  }
  .slide__media {
    gap: 12px !important;
  }

  /* שהתגים "לפני/אחרי" יראו עקביים ונקיים */
  .ba__cap {
    top: 10px !important;
    right: 10px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.45) !important;
  }
}
