/* ============================================================
   BPM College — Landing Page
   Design system: dark stage + paper, three brand accents used sparingly.
   Type: Karantina (display + utility labels) / Assistant (body)
   Signature: the level-meter — a bar meter that acts as section rule,
   scroll cue, and the progress indicator of the lead questionnaire.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --ink: #191717;
  --ink-2: #201D1D;
  --ink-3: #2B2727;
  --paper: #FFFFFF;

  --amber: #FCAF25;
  --crimson: #E83B60;
  --teal: #08A4A8;

  --on-dark: #FFFFFF;
  --on-dark-muted: rgba(255, 255, 255, .64);
  --on-dark-faint: rgba(255, 255, 255, .40);
  --line-dark: rgba(255, 255, 255, .13);

  --on-light: #191717;
  --on-light-muted: rgba(25, 23, 23, .66);
  --line-light: rgba(25, 23, 23, .14);

  --display: "Karantina", "Assistant", Arial, sans-serif;
  --body: "Assistant", "Segoe UI", Arial, sans-serif;
  --util: "Karantina", "Assistant", Arial, sans-serif;

  --shell: 1220px;
  --pad: clamp(18px, 4vw, 48px);
  --r: 14px;
  --r-lg: 22px;

  --header-h: 68px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.06; font-family: var(--display); letter-spacing: .005em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------- layout ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--light { background: var(--paper); color: var(--on-light); }
.section--ink2 { background: var(--ink-2); }
.skip {
  position: absolute; inset-inline-start: -9999px; top: 0; z-index: 200;
  background: var(--amber); color: var(--ink); padding: 12px 20px; font-weight: 700;
}
.skip:focus { inset-inline-start: 0; }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--util); font-weight: 700; font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: .10em; line-height: 1; color: var(--amber);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: block; }
.section--light .eyebrow { color: var(--crimson); }
.eyebrow--lg { font-size: clamp(30px, 4.4vw, 52px); letter-spacing: .04em; margin-bottom: 10px; }
.eyebrow--lg::before { width: 40px; height: 3px; }

.h-xl { font-size: clamp(40px, 8.6vw, 100px); line-height: 1.0; }
.h-lg { font-size: clamp(36px, 6vw, 70px); line-height: 1.04; }
.h-md { font-size: clamp(28px, 3.8vw, 44px); }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--on-dark-muted); max-width: 62ch; }
.section--light .lead { color: var(--on-light-muted); }
.section-head { max-width: 780px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .lead { margin-top: 18px; }

/* ---------- SIGNATURE: level meter ---------- */
.meter { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
.meter i {
  display: block; width: 4px; border-radius: 2px; background: currentColor;
  height: 30%; opacity: .5;
  animation: meterPulse 1.6s var(--ease) infinite;
}
.meter i:nth-child(2) { animation-delay: .12s; }
.meter i:nth-child(3) { animation-delay: .30s; }
.meter i:nth-child(4) { animation-delay: .06s; }
.meter i:nth-child(5) { animation-delay: .42s; }
.meter i:nth-child(6) { animation-delay: .21s; }
.meter i:nth-child(7) { animation-delay: .36s; }
@keyframes meterPulse {
  0%, 100% { height: 28%; opacity: .45; }
  50% { height: 100%; opacity: 1; }
}
.rule {
  display: flex; align-items: center; gap: 16px; color: var(--teal);
  margin-block: clamp(48px, 7vw, 84px) 0;
}
.rule::after { content: ""; flex: 1; height: 1px; background: var(--line-dark); }
.section--light .rule::after { background: var(--line-light); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 17px;
  line-height: 1; transition: transform .18s var(--ease), background-color .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--amber); color: var(--ink); box-shadow: 0 8px 26px -12px rgba(252, 175, 37, .9); }
.btn--primary:hover { background: #ffc253; box-shadow: 0 14px 34px -12px rgba(252, 175, 37, .95); }
.btn--crimson { background: var(--crimson); color: #fff; }
.btn--crimson:hover { background: #f24d70; }
.btn--ghost { border: 1.5px solid var(--line-dark); color: var(--on-dark); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.section--light .btn--ghost { border-color: var(--line-light); color: var(--on-light); }
.section--light .btn--ghost:hover { border-color: var(--crimson); color: var(--crimson); }
.btn--sm { padding: 11px 20px; font-size: 15px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px;
  color: var(--amber); transition: gap .18s var(--ease);
}
.link-arrow svg { transition: transform .18s var(--ease); }
.link-arrow:hover { gap: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 90; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(25, 23, 23, .72); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent; transition: background .25s, border-color .25s;
}
.header.is-stuck { background: rgba(25, 23, 23, .96); border-bottom-color: var(--line-dark); }
.header__inner { display: flex; align-items: center; gap: 20px; width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }
.logo { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.logo img, .logo svg { height: 34px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.footer .logo img, .footer .logo svg { height: 38px; }
@media (max-width: 480px) { .logo img, .logo svg { height: 28px; max-width: 150px; } }
.header__nav { display: flex; align-items: center; gap: 6px; margin-inline-start: auto; }
.header__nav a {
  padding: 8px 12px; font-size: 15.5px; font-weight: 600; color: var(--on-dark-muted);
  border-radius: 999px; transition: color .18s, background-color .18s;
}
.header__nav a:hover, .header__nav a.is-active { color: #fff; background: rgba(255, 255, 255, .07); }
.header__phone {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15.5px;
  color: var(--on-dark); white-space: nowrap; direction: ltr;
}
.header__phone svg { color: var(--teal); }
.header__phone:hover { color: var(--teal); }
.header__sep { width: 1px; height: 24px; background: var(--line-dark); }
.burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; margin-inline-start: auto; }
.burger span { display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: .2s; }
.burger span::before, .burger span::after { content: ""; position: absolute; inset-inline: 0; height: 2px; background: #fff; transition: .2s; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: rotate(45deg); top: 0; }
body.nav-open .burger span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 1080px) {
  .header__nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--ink-2); border-bottom: 1px solid var(--line-dark);
    padding: 12px var(--pad) 22px; margin: 0;
    transform: translateY(-120%); transition: transform .3s var(--ease); max-height: calc(100dvh - var(--header-h)); overflow: auto;
  }
  body.nav-open .header__nav { transform: translateY(0); }
  .header__nav a { padding: 14px 4px; font-size: 18px; border-bottom: 1px solid var(--line-dark); border-radius: 0; }
  .header__nav .btn { margin-top: 18px; }
  .header__sep { display: none; }
  .burger { display: flex; order: 3; margin-inline-start: 6px; }
  .header__phone { order: 2; margin-inline-start: auto; }
  .logo { order: 1; }
}
@media (max-width: 560px) {
  .header__phone span { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: min(94svh, 900px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(40px, 6vw, 72px);
  overflow: hidden; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--ink) center/cover no-repeat; }
.hero__bg iframe, .hero__bg video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.77vh; border: 0; pointer-events: none;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(25,23,23,.98) 6%, rgba(25,23,23,.72) 46%, rgba(25,23,23,.58) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(232,59,96,.20), transparent 60%),
    radial-gradient(100% 70% at 10% 100%, rgba(8,164,168,.22), transparent 65%);
}
.hero__inner { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }
.hero h1 { max-width: 19ch; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__text { margin-top: 22px; max-width: 54ch; font-size: clamp(16.5px, 1.5vw, 19px); color: rgba(255,255,255,.80); }

/* locations — its own graphic element */
.locations {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0;
  margin-top: 32px; border-block: 1px solid var(--line-dark); padding-block: 14px;
  font-family: var(--util); font-weight: 700; font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: .04em; line-height: 1;
}
.locations span { padding-inline: clamp(12px, 2vw, 22px); }
.locations span:first-child { padding-inline-start: 0; }
.locations span + span { border-inline-start: 1px solid var(--line-dark); }
.locations span:nth-child(4n+1) { color: var(--amber); }
.locations span:nth-child(4n+2) { color: var(--paper); }
.locations span:nth-child(4n+3) { color: var(--teal); }
.locations span:nth-child(4n+4) { color: var(--crimson); }

.certs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 24px; }
.certs__label {
  font-family: var(--util); font-weight: 700; letter-spacing: .10em; font-size: 19px;
  color: var(--on-dark-faint);
}
.certs__item {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600;
  color: rgba(255,255,255,.82); border: 1px solid var(--line-dark); border-radius: 999px; padding: 7px 15px;
}
.certs__item img { height: 18px; width: auto; }
.certs__item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 34px; }
.hero__cue { display: flex; align-items: center; gap: 12px; color: var(--teal); font-size: 14px; font-weight: 600; }

@media (max-width: 640px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 56px); padding-bottom: 48px; }
  .locations { font-size: 22px; gap: 0; }
  .hero__actions .btn { width: 100%; }
  .hero__cue { display: none; }
}

/* ============================================================
   PROGRAMS + COURSES
   ============================================================ */
.group-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.group-head h3 { font-size: clamp(28px, 3.4vw, 40px); }
.group-head .note { font-size: 14.5px; color: var(--on-dark-muted); font-weight: 600; }

.programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid var(--line-dark);
  transition: transform .3s var(--ease), border-color .3s;
}
.pcard:hover { transform: translateY(-5px); border-color: var(--accent, var(--amber)); }
.pcard__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-3); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(25,23,23,.92), rgba(25,23,23,.05) 60%);
}
.pcard__tag {
  position: absolute; z-index: 2; inset-block-start: 14px; inset-inline-start: 14px;
  font-family: var(--util); font-weight: 700; font-size: 19px; letter-spacing: .08em;
  background: var(--accent, var(--amber)); color: var(--ink); padding: 3px 12px; border-radius: 999px; line-height: 1.3;
}
.pcard__name {
  position: absolute; z-index: 2; inset-block-end: 16px; inset-inline-start: 20px; inset-inline-end: 20px;
  font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.2vw, 52px); line-height: 1; letter-spacing: .02em;
}
.pcard__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pcard__sub { font-weight: 700; font-size: 16.5px; color: var(--accent, var(--amber)); }
.pcard__desc { font-size: 15.5px; color: var(--on-dark-muted); flex: 1; }
.pcard .link-arrow { color: var(--accent, var(--amber)); }
.pcard[data-accent="crimson"] { --accent: var(--crimson); }
.pcard[data-accent="teal"] { --accent: var(--teal); }
.pcard[data-accent="amber"] { --accent: var(--amber); }

.programs-cta { display: flex; justify-content: center; margin-top: 30px; }
.programs-cta .btn { font-size: clamp(16px, 1.6vw, 18px); padding: 17px 34px; }
@media (max-width: 560px) { .programs-cta .btn { width: 100%; } }

/* קורסים — אותה שפה ככרטיסי המסלולים, ארבעה בשורה */
.courses { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

@media (max-width: 1080px) { .courses { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .programs { grid-template-columns: 1fr; } .courses { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .courses { grid-template-columns: 1fr; } }

/* וריאנט קטן יותר של אותו כרטיס, לקורסים */
.pcard--course .pcard__media { aspect-ratio: 5 / 4; }
.pcard--course .pcard__name { font-size: clamp(24px, 2.5vw, 30px); inset-block-end: 13px; inset-inline: 16px; }
.pcard--course .pcard__body { padding: 16px; gap: 10px; }
.pcard--course .pcard__desc { font-size: 14.5px; }

/* ============================================================
   CAROUSELS (artists / reviews / logos)
   ============================================================ */
.carousel { position: relative; }
/* קרוסלה בלופ: בלי snap, כדי שהגלילה הרציפה תהיה חלקה */
.carousel[data-loop] .track { scroll-snap-type: none; gap: 4px; }
.carousel--tight { margin-top: 4px; }
.carousel[data-loop] .track > * { scroll-snap-align: none; }
.track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.track::-webkit-scrollbar { display: none; }
.track > * { scroll-snap-align: start; flex: 0 0 auto; }
.carousel__nav { display: flex; gap: 8px; margin-top: 20px; }
.cbtn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-dark);
  display: grid; place-items: center; transition: .2s;
}
.cbtn:hover { border-color: var(--amber); color: var(--amber); }
.cbtn[disabled] { opacity: .3; }
.section--light .cbtn { border-color: var(--line-light); }
.section--light .cbtn:hover { border-color: var(--crimson); color: var(--crimson); }

.acard { width: clamp(146px, 16.5vw, 190px); position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink-3); }
.acard img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .35s var(--ease), transform .5s var(--ease); }
.acard:hover img { filter: grayscale(0); transform: scale(1.04); }
.acard__cap {
  position: absolute; inset-block-end: 0; inset-inline: 0; padding: 34px 13px 13px;
  background: linear-gradient(to top, rgba(25,23,23,.96), transparent);
}
.acard__name { font-family: var(--display); font-weight: 700; font-size: 24px; line-height: 1.05; letter-spacing: .02em; }
.acard__prog { font-size: 12px; color: var(--amber); font-weight: 600; margin-top: 2px; line-height: 1.25; }

/* reviews */
.rcard {
  width: clamp(272px, 32vw, 380px); background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--r-lg); padding: 22px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 2px 0 rgba(25,23,23,.05);
}
.rcard__top { display: flex; align-items: center; gap: 12px; }
.rcard__avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
  background: var(--teal); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 18px; font-family: var(--body);
}
.rcard__name { font-weight: 800; font-size: 16.5px; line-height: 1.2; }
.rcard__stars { color: var(--amber); letter-spacing: 1px; font-size: 15px; line-height: 1; }
.rcard__text { font-size: 15.5px; color: var(--on-light-muted); }
.rcard__src { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line-light); font-size: 13px; color: rgba(25,23,23,.45); font-weight: 600; }

/* logos */
.logos { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 6px; }
.logos::-webkit-scrollbar { display: none; }
.logo-chip {
  flex: 0 0 auto; min-width: 168px; height: 88px; display: grid; place-items: center; padding: 12px 22px;
  border: 1px solid var(--line-dark); border-radius: var(--r); background: rgba(255,255,255,.03);
  font-family: var(--util); font-weight: 700; font-size: 22px; letter-spacing: .06em;
  color: var(--on-dark-faint); transition: .25s; text-align: center;
}
.logo-chip:hover { color: #fff; border-color: var(--teal); }
.logo-chip img { max-height: 46px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .72; }

/* ============================================================
   WHY BPM
   ============================================================ */
.why { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.why__bullets { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 28px; }
.why__bullets li {
  display: flex; gap: 11px; font-size: 15.5px; font-weight: 600; line-height: 1.45;
  padding-block: 11px; border-bottom: 1px solid var(--line-light);
}
.why__bullets li:last-child { border-bottom: 0; }
.why__bullets li::before {
  content: ""; flex: 0 0 auto; width: 8px; height: 8px; margin-top: 8px; border-radius: 2px; background: var(--teal);
}
.why__bullets li:nth-child(3n+2)::before { background: var(--crimson); }
.why__bullets li:nth-child(3n+3)::before { background: var(--amber); }
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; background: #eee; }
.gallery a { display: block; overflow: hidden; border-radius: 12px; }
.gallery a img { transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery > *:nth-child(1) { grid-column: span 4; aspect-ratio: 16/10; }
.gallery > *:nth-child(2) { grid-column: span 2; aspect-ratio: 1; }
.gallery > *:nth-child(3) { grid-column: span 2; aspect-ratio: 3/4; }
.gallery > *:nth-child(4) { grid-column: span 4; aspect-ratio: 16/11; }
.gallery > *:nth-child(5) { grid-column: span 3; aspect-ratio: 4/3; }
.gallery > *:nth-child(6) { grid-column: span 3; aspect-ratio: 4/3; }
.gallery > *:nth-child(n+7) { grid-column: span 2; aspect-ratio: 1; }
@media (max-width: 900px) {
  .why { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery > * { grid-column: span 2 !important; aspect-ratio: 1 !important; }
  .gallery > *:nth-child(1) { grid-column: span 4 !important; aspect-ratio: 16/10 !important; }
}


/* ============================================================
   PLAY ON
   ============================================================ */
.playon { position: relative; overflow: hidden; }
.playon::before {
  content: ""; position: absolute; inset-block-start: -20%; inset-inline-end: -10%;
  width: 60vw; height: 60vw; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(232,59,96,.20), transparent 62%);
}
.playon__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.playon__punch {
  font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4.2vw, 48px); line-height: 1.08;
  border-inline-start: 3px solid var(--crimson); padding-inline-start: 20px; margin-top: 24px;
}
.playon__stage {
  position: relative; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-dark);
}
.playon__stage::before, .playon__stage::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px solid var(--line-dark);
}
.playon__stage::before { inset: 12%; }
.playon__stage::after { inset: 26%; border-color: rgba(232,59,96,.35); }
.playon__stage .meter { height: 90px; gap: 6px; color: var(--teal); position: relative; z-index: 2; }
.playon__stage .meter i { width: 8px; }
@media (max-width: 900px) { .playon__grid { grid-template-columns: 1fr; } .playon__stage { display: none; } }

/* ============================================================
   SOCIAL + MUSIC
   ============================================================ */
.social__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.slink {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 999px;
  border: 1px solid var(--line-dark); font-weight: 700; font-size: 16px; transition: .22s;
}
.slink:hover { border-color: var(--accent, var(--amber)); color: var(--accent, var(--amber)); transform: translateY(-2px); }
.slink[data-net="instagram"] { --accent: var(--crimson); }
.slink[data-net="tiktok"] { --accent: var(--teal); }
.slink[data-net="youtube"] { --accent: var(--crimson); }
.slink[data-net="facebook"] { --accent: var(--teal); }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.ig-grid > * { min-height: 380px; border-radius: var(--r); overflow: hidden; background: var(--ink-3); border: 1px solid var(--line-dark); }
.ig-fallback {
  display: grid; place-items: center; text-align: center; padding: 28px; gap: 14px; align-content: center;
  color: var(--on-dark-muted); font-size: 15.5px;
}
.ig-fallback strong { display: block; font-family: var(--display); font-weight: 700; font-size: 27px; color: #fff; margin-bottom: 6px; }
@media (max-width: 860px) { .ig-grid { grid-template-columns: 1fr; } .ig-grid > * { min-height: 300px; } }

.spotify-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-dark); background: var(--ink-2); min-height: 380px; }
.spotify-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ============================================================
   INLINE CTA BANNER
   ============================================================ */
.cta-band { background: var(--ink-2); border-block: 1px solid var(--line-dark); padding-block: clamp(36px, 5vw, 56px); }
.cta-band__inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h3 { font-size: clamp(29px, 3.9vw, 46px); line-height: 1.06; }
.cta-band p { color: var(--on-dark-muted); margin-top: 8px; font-size: 16px; }
.cta-band .btn { margin-inline-start: auto; }
.cta-band .meter { color: var(--amber); height: 34px; flex: 0 0 auto; }
@media (max-width: 700px) { .cta-band .btn { margin-inline-start: 0; width: 100%; } .cta-band .meter { display: none; } }

/* ============================================================
   LEAD FORM (multi-step)
   ============================================================ */
.lead-section { background: var(--ink); }
.lead__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4.5vw, 48px);
  max-width: 900px; margin-inline: auto; justify-items: center;
}
.lead__aside { text-align: center; max-width: 720px; }
.lead__aside .h-lg { text-wrap: balance; }
.lead__aside .lead { margin-inline: auto; }
.lead__points { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lead__points li { display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: 15px; color: var(--on-dark-muted); line-height: 1.45; }
.lead__points b { color: #fff; font-weight: 800; display: block; font-size: 16.5px; margin-bottom: 2px; }
.lead__points i {
  font-style: normal; color: var(--teal); font-weight: 700; font-family: var(--util); font-size: 26px; line-height: 1;
  width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 4px;
}

.form-card {
  background: var(--paper); color: var(--on-light); border-radius: var(--r-lg);
  padding: clamp(24px, 3.8vw, 46px); box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .8);
  width: 100%; max-width: 740px; margin-inline: auto;
}
.step__q, .step__hint { text-align: center; }
.step__hint { margin-inline: auto; max-width: 46ch; }
.form-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.progress-meter { display: flex; gap: 4px; flex: 1; align-items: flex-end; height: 30px; }
.progress-meter i {
  flex: 1; border-radius: 3px; background: rgba(25,23,23,.10); height: 40%;
  transition: height .35s var(--ease), background-color .35s;
}
.progress-meter i.is-done { background: var(--teal); height: 70%; }
.progress-meter i.is-current { background: var(--crimson); height: 100%; }
.form-progress__label { font-family: var(--util); font-weight: 700; font-size: 20px; letter-spacing: .06em; color: rgba(25,23,23,.5); white-space: nowrap; }

.step { display: none; animation: stepIn .3s var(--ease); }
.step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step__q { font-family: var(--display); font-weight: 700; font-size: clamp(29px, 3.4vw, 40px); line-height: 1.06; margin-bottom: 8px; letter-spacing: .01em; }
.step__hint { font-size: 15px; color: var(--on-light-muted); margin-bottom: 20px; }
.opts { display: grid; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: start;
  padding: 16px 18px; border: 1.5px solid var(--line-light); border-radius: 12px;
  font-size: 17px; font-weight: 600; transition: .18s var(--ease); background: #fff;
}
.opt:hover { border-color: var(--ink); transform: translateX(-3px); }
.opt.is-selected { border-color: var(--crimson); background: rgba(232,59,96,.06); }
.opt__dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(25,23,23,.25); flex: 0 0 auto; display: grid; place-items: center; }
.opt.is-selected .opt__dot { border-color: var(--crimson); }
.opt.is-selected .opt__dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--crimson); }

.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-pair .field { margin-bottom: 14px; }
@media (max-width: 480px) { .field-pair { grid-template-columns: 1fr; gap: 0; } }
.field label { font-size: 14.5px; font-weight: 700; }
.field input {
  padding: 14px 16px; border: 1.5px solid var(--line-light); border-radius: 12px; background: #fff;
  font-size: 17px; color: var(--on-light); transition: border-color .18s;
}
.field input:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px rgba(8,164,168,.18); }
.field.has-error input { border-color: var(--crimson); }
.field__err { font-size: 13.5px; color: var(--crimson); font-weight: 700; display: none; }
.field.has-error .field__err { display: block; }
.form-consent { font-size: 13px; color: rgba(25,23,23,.55); margin-top: 12px; text-align: center; }
.form-nav { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.form-back { font-weight: 700; font-size: 15px; color: rgba(25,23,23,.55); display: inline-flex; align-items: center; gap: 6px; }
.form-back:hover { color: var(--ink); }
.form-done { text-align: center; padding: 20px 0; }
.form-done .meter { color: var(--teal); justify-content: center; height: 44px; margin-bottom: 18px; }

@media (max-width: 620px) { .lead__points { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-2); border-top: 1px solid var(--line-dark); padding-block: 48px 110px; }
.footer__grid { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; justify-content: space-between; }
.footer__col { display: grid; gap: 10px; font-size: 15px; color: var(--on-dark-muted); }
.footer__col a:hover { color: var(--amber); }
.footer__bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line-dark); font-size: 13.5px; color: var(--on-dark-faint); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
@media (min-width: 861px) { .footer { padding-bottom: 48px; } }

/* ============================================================
   PROMO POPUP
   ============================================================ */
.promo {
  position: fixed; z-index: 95; inset-block-end: 24px; inset-inline-end: 24px; width: min(360px, calc(100vw - 32px));
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.9); overflow: hidden;
  transform: translateY(140%); opacity: 0; transition: transform .45s var(--ease), opacity .35s; pointer-events: none;
}
.promo.is-open { transform: none; opacity: 1; pointer-events: auto; }
.promo__bar { height: 4px; background: linear-gradient(to left, var(--amber), var(--crimson), var(--teal)); }
.promo__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.promo__body { padding: 18px 20px 20px; }
.promo__body h4 { font-size: 29px; line-height: 1.05; }
.promo__body p { font-size: 14.5px; color: var(--on-dark-muted); margin-top: 8px; }
.promo__close {
  position: absolute; inset-block-start: 12px; inset-inline-end: 12px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.55); display: grid; place-items: center; color: #fff; font-size: 18px; line-height: 1;
}
.promo__close:hover { background: var(--crimson); }
.promo .btn { margin-top: 14px; }
@media (max-width: 860px) {
  .promo {
    inset-inline: 0; inset-block-end: 0; width: 100%; border-radius: var(--r-lg) var(--r-lg) 0 0;
    border-inline: 0; border-block-end: 0;
  }
  .promo__img { aspect-ratio: 21/8; }
  body.promo-open .sticky-cta { transform: translateY(120%); }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; z-index: 92; inset-inline: 0; inset-block-end: 0; display: none;
  align-items: center; gap: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(25,23,23,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line-dark);
  transition: transform .35s var(--ease);
}
.sticky-cta p { font-size: 14.5px; font-weight: 700; line-height: 1.25; }
.sticky-cta .btn { margin-inline-start: auto; flex: 0 0 auto; }
@media (max-width: 860px) { .sticky-cta.is-on { display: flex; } }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- thank-you page ---------- */
.ty { min-height: 100svh; display: grid; place-items: center; padding: calc(var(--header-h) + 40px) 0 60px; text-align: center; }
.ty__inner { max-width: 780px; }
.ty .meter { justify-content: center; color: var(--teal); height: 48px; margin-bottom: 24px; }
.ty__video { margin-top: 34px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-dark); aspect-ratio: 16/9; background: var(--ink-2); }
.ty__video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   WHATSAPP — כפתור צף קבוע
   ממוקם בצד ההפוך מהפופאפ כדי שלא יתנגשו
   ============================================================ */
.wa {
  position: fixed; z-index: 94;
  inset-inline-start: 22px; inset-block-end: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 18px 0 16px; border-radius: 999px;
  background: #25D366; color: #0B2E1A; font-weight: 800; font-size: 15.5px;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .65);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.wa:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(37, 211, 102, .8); }
.wa svg { flex: 0 0 auto; }
.wa__label { white-space: nowrap; }

@media (max-width: 860px) {
  /* עיגול בלבד, ומורם מעל ה-CTA הדביק כדי לא להסתיר תוכן */
  .wa { inset-inline-start: 14px; inset-block-end: calc(74px + env(safe-area-inset-bottom)); width: 52px; height: 52px; padding: 0; justify-content: center; }
  .wa__label { display: none; }
  body.promo-open .wa { opacity: 0; pointer-events: none; }
}

/* ============================================================
   BENEFITS MODAL — "היתרונות שלנו"
   בדסקטופ חלון ממורכז, במובייל Bottom Sheet שנגלל בנוחות
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity .25s var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__scrim { position: absolute; inset: 0; background: rgba(10, 9, 9, .78); backdrop-filter: blur(4px); }
.modal__box {
  position: relative; width: min(720px, 100%); max-height: min(84vh, 780px);
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9);
  transform: translateY(18px) scale(.98); transition: transform .3s var(--ease);
}
.modal.is-open .modal__box { transform: none; }
.modal__bar { height: 4px; flex: 0 0 auto; background: var(--accent, var(--amber)); }
.modal__head {
  padding: 22px 26px 16px; border-bottom: 1px solid var(--line-dark); flex: 0 0 auto;
  display: flex; align-items: flex-start; gap: 14px;
}
.modal__eyebrow { font-family: var(--util); font-weight: 700; font-size: 20px; letter-spacing: .1em; color: var(--accent, var(--amber)); display: block; }
.modal__title { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 44px); line-height: 1.04; margin-top: 2px; }
.modal__close {
  margin-inline-start: auto; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .07); display: grid; place-items: center; font-size: 20px; line-height: 1; color: #fff;
}
.modal__close:hover { background: var(--crimson); }
.modal__body { padding: 8px 26px 22px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal__list { display: grid; }
.modal__list li {
  display: flex; gap: 13px; padding-block: 14px; font-size: 16px; line-height: 1.5;
  color: rgba(255, 255, 255, .84); border-bottom: 1px solid var(--line-dark);
}
.modal__list li:last-child { border-bottom: 0; }
.modal__list li::before {
  content: ""; flex: 0 0 auto; width: 9px; height: 9px; margin-top: 9px; border-radius: 2px;
  background: var(--accent, var(--amber));
}
.modal__foot {
  padding: 16px 26px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-dark);
  flex: 0 0 auto; display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  background: var(--ink-2);
}
.modal__foot p { font-size: 14.5px; color: var(--on-dark-muted); flex: 1; min-width: 160px; }
body.modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .modal { padding: 0; place-items: end center; }
  .modal__box {
    width: 100%; max-height: 92dvh; border-radius: var(--r-lg) var(--r-lg) 0 0;
    border-inline: 0; border-block-end: 0; transform: translateY(100%);
  }
  .modal__head { padding: 18px 18px 14px; }
  .modal__body { padding: 6px 18px 18px; }
  .modal__foot { padding: 14px 18px calc(16px + env(safe-area-inset-bottom)); }
  .modal__foot .btn { width: 100%; }
  .modal__list li { font-size: 15.5px; padding-block: 13px; }
}
