/* ==================================================================
   HORIZON CASE-STUDY FUNNEL — ENHANCE LAYER
   Loaded AFTER the inline design system. Goal: brighter + more color,
   kinetic "popping" text, and life in the quiet sections.
   All motion is guarded by prefers-reduced-motion and never hides
   content permanently (no new opacity:0 start states outside motion).
   ================================================================== */

/* ------------------------------------------------------------------
   1 · LIGHTER + MORE COLOR  (so the page breathes, not "heavy")
   ------------------------------------------------------------------ */
:root{
  --text-soft: #c6d0e6;          /* brighter soft text */
  --text-mute: #9aa6bd;
}
body{ color: #eaf0fb; }

/* lighter surfaces + top sheen + cooler hairline => lit, not flat */
.lever, .ba-card, .stat, .tv, .faq__item, .curio, .reinforce, .watch-panel{
  background-color: #1d2542;
  background-image: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 48%);
  border-color: rgba(131,221,236,.18);
}

/* ---- LIGHT BAND (bright moment breaks the dark, premium rhythm) ---- */
.section--light{
  background: linear-gradient(180deg, #eef2f8 0%, #e1e9f4 100%);
  color: #18233c;
}
.section--light .eyebrow{
  color: #136f80;
  background: rgba(50,172,193,.12);
  border-color: rgba(50,172,193,.30);
}
.section--light .eyebrow .dot{ background: var(--orange); }
.section--light .h1, .section--light .h2, .section--light .h3, .section--light .h4{ color: #16203a; }
.section--light .lead, .section--light .body, .section--light p{ color: #46506b; }
.section--light .stat{
  background: #ffffff;
  background-image: none;
  border: 1px solid rgba(18,32,58,.08);
  box-shadow: 0 22px 46px -24px rgba(18,32,58,.35);
}
.section--light .stat__label{ color: #56607a; }
.section--light .glow{ display: none; }

/* ---- results PYRAMID: 3 over 2, bottom row centered ---- */
.stats-pyramid{ grid-template-columns: repeat(6, 1fr); align-items: stretch; }
.stats-pyramid > .stat{ grid-column: span 2; }
.stats-pyramid > .stat:nth-child(4){ grid-column: 2 / span 2; }
.stats-pyramid > .stat:nth-child(5){ grid-column: 4 / span 2; }
@media (max-width: 800px){
  .stats-pyramid{ grid-template-columns: repeat(2, 1fr); }
  .stats-pyramid > .stat,
  .stats-pyramid > .stat:nth-child(4){ grid-column: auto; }
  .stats-pyramid > .stat:nth-child(5){ grid-column: 1 / -1; justify-self: center; width: calc(50% - var(--sp-3, 10px)); }
}
@media (max-width: 520px){
  .stats-pyramid{ grid-template-columns: 1fr; }
  .stats-pyramid > .stat,
  .stats-pyramid > .stat:nth-child(4),
  .stats-pyramid > .stat:nth-child(5){ grid-column: auto; width: auto; }
}

/* colored tints on the dark bands so it is not a wall of navy */
.section--dark-2{
  background:
    radial-gradient(120% 85% at 100% 0%, rgba(50,172,193,.10), transparent 55%),
    radial-gradient(120% 85% at 0% 100%, rgba(252,159,103,.07), transparent 55%),
    var(--dark-2);
}
.section--gradient{
  background:
    radial-gradient(95% 75% at 50% -12%, rgba(252,159,103,.12), transparent 60%),
    radial-gradient(95% 80% at 50% 112%, rgba(50,172,193,.12), transparent 60%),
    var(--grad-dark, var(--dark));
}
.section--dark{
  background:
    radial-gradient(80% 60% at 88% 6%, rgba(50,172,193,.05), transparent 60%),
    var(--dark);
}

/* brighter, larger ambient glows */
.glow--orange{ opacity:.6; }
.glow--teal{ opacity:.55; }

/* ------------------------------------------------------------------
   2 · KINETIC TEXT  (key words shimmer + the swoosh draws itself)
   ------------------------------------------------------------------ */
.hl, .hl-orange{
  background: linear-gradient(100deg, var(--orange) 0%, #ffdcc4 42%, var(--orange-2) 66%, var(--orange) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hl-teal{
  background: linear-gradient(100deg, var(--teal) 0%, #c4f0f8 42%, var(--teal-2) 66%, var(--teal) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hl-mark::after{ opacity:.5; height:.4em; }

@media (prefers-reduced-motion: no-preference){
  .hl, .hl-orange, .hl-teal, .hl-grad{ animation: hlShine 5.5s ease-in-out infinite; }
  @keyframes hlShine{ 0%,100%{ background-position: 0% 0; } 50%{ background-position: 125% 0; } }

  /* the underline swoosh draws in from the right (RTL) on reveal */
  .hl-mark::after{ transform: scaleX(0); transform-origin: right center;
    transition: transform .7s .15s cubic-bezier(.2,.7,.2,1); }
  [data-reveal].is-in .hl-mark::after,
  .is-in .hl-mark::after,
  .hl-mark.is-in::after{ transform: scaleX(1); }
}

/* ------------------------------------------------------------------
   3 · NUMBERS, ICONS & GLOWS BREATHE
   ------------------------------------------------------------------ */
.lever__icon{ box-shadow: 0 10px 26px -10px rgba(50,172,193,.55); }

/* lever result chip (short, punchy, visual) */
.lever__result{
  margin-top: 14px;
  display: inline-flex; align-items: flex-start; gap: 8px;
  font-size: .94rem; font-weight: 600; color: var(--teal-2);
  background: linear-gradient(180deg, rgba(50,172,193,.12), rgba(50,172,193,.05));
  border: 1px solid rgba(50,172,193,.24);
  border-radius: 12px; padding: 9px 13px; line-height: 1.45;
}
.lever__result::before{ content: "↗"; font-weight: 900; color: var(--orange); }
.lever__result span{ color: var(--orange); font-weight: 800; }

@media (prefers-reduced-motion: no-preference){
  .stat__num, .poster__big, .pm-x3{ animation: numGlow 4s ease-in-out infinite; }
  @keyframes numGlow{ 0%,100%{ filter: drop-shadow(0 0 0 transparent); }
                      50%{ filter: drop-shadow(0 3px 18px rgba(252,159,103,.5)); } }

  .lever__icon{ animation: floaty 5.5s ease-in-out infinite; }
  @keyframes floaty{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }

  .glow{ animation: glowDrift 16s ease-in-out infinite; }
  .glow--teal, .glow--md{ animation-duration: 21s; animation-direction: alternate-reverse; }
  @keyframes glowDrift{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(20px,-24px); } }

  /* gentle entrance pop for stat cards once revealed */
  .stat.is-in{ animation: popIn .5s var(--ease) both; }
  @keyframes popIn{ from{ transform: scale(.94); } to{ transform: scale(1); } }
}

/* ------------------------------------------------------------------
   4 · CARD HOVER LIFE (quiet sections become interactive)
   ------------------------------------------------------------------ */
.lever, .ba-card, .stat, .tv, .faq__item, .curio, .wa, .reinforce{
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  will-change: transform;
}
@media (hover:hover){
  .lever:hover, .ba-card:hover, .stat:hover, .tv:hover, .faq__item:hover, .curio:hover, .wa:hover{
    transform: translateY(-5px);
    border-color: rgba(252,159,103,.38);
    box-shadow: 0 22px 55px -20px rgba(0,0,0,.65), 0 0 34px -14px rgba(50,172,193,.45);
  }
  .lever:hover .lever__icon{ transform: scale(1.1) translateY(-2px); }
  .tv:hover .tv__play, .video:hover .video__play{ transform: scale(1.08); }
}

/* ------------------------------------------------------------------
   5 · SCROLL PROGRESS BAR (pure-CSS, colored, "alive")
   ------------------------------------------------------------------ */
.scroll-prog{
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 9999;
  background: var(--grad-signature, linear-gradient(90deg, var(--orange), var(--teal)));
  transform: scaleX(0); transform-origin: right center;  /* RTL */
  box-shadow: 0 0 12px rgba(252,159,103,.5);
  pointer-events: none;
}
@supports (animation-timeline: scroll()){
  .scroll-prog{ animation: progGrow linear both; animation-timeline: scroll(root); }
  @keyframes progGrow{ to{ transform: scaleX(1); } }
}

/* ------------------------------------------------------------------
   7b · BEFORE / AFTER -> animated comparison TABLE
   ------------------------------------------------------------------ */
.ba-cards{
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  border: 1px solid rgba(131,221,236,.22);
  border-radius: 18px; overflow: hidden;
  background: var(--dark-3);
  box-shadow: var(--shadow-lg), 0 0 50px -20px rgba(50,172,193,.35);
}
.ba-card{
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 1.3fr;
  align-items: stretch;
  background: none !important; border: 0 !important; border-radius: 0 !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  padding: 0 !important; box-shadow: none !important;
  transition: background .2s ease;
}
.ba-cards > .ba-card:first-of-type{ border-top: 0 !important; }
.ba-card:hover{ background: rgba(255,255,255,.03) !important; }
.ba-card__dim{
  display: flex; align-items: center; gap: 9px; margin: 0 !important;
  padding: 16px 18px; font-weight: 800; color: #fff; font-size: 1rem;
  background: rgba(255,255,255,.03);
}
.ba-card__dim::before{
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad-signature); flex: none;
}
.ba-card__grid{ display: contents !important; }
.ba-side{
  padding: 15px 18px; display: flex; flex-direction: column; gap: 8px;
  border-inline-start: 1px solid rgba(255,255,255,.05);
}
.ba-side--before{ background: rgba(182,47,47,.09); }
.ba-side--after{
  background: linear-gradient(180deg, rgba(50,172,193,.16), rgba(50,172,193,.09));
  border-inline-start: 2px solid rgba(50,172,193,.45);
}
.ba-side__label{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 800; letter-spacing: .03em;
  padding: 3px 10px; border-radius: 999px; width: fit-content;
}
.ba-side--before .ba-side__label{ color: #ff9b9b; background: rgba(182,47,47,.2); }
.ba-side--after .ba-side__label{ color: #7ee0a0; background: rgba(50,172,193,.2); }
.ba-side__label .d{ display: none; }
.ba-side--before .ba-side__label::before{ content: "✕"; font-weight: 900; }
.ba-side--after .ba-side__label::before{ content: "✓"; font-weight: 900; }
.ba-side__text{ font-size: .92rem; line-height: 1.5; margin: 0; }
.ba-side--before .ba-side__text{ color: #cdbcbc; }
.ba-side--after .ba-side__text{ color: #d8e9dc; }
@media (prefers-reduced-motion: no-preference){
  .ba-card.is-in .ba-side--after{ animation: afterPulse 1.3s ease .25s 1; }
  @keyframes afterPulse{ 0%,100%{ box-shadow: inset 0 0 0 transparent; } 45%{ box-shadow: inset 0 0 34px rgba(50,172,193,.3); } }
}
@media (max-width: 720px){
  .ba-card{ grid-template-columns: 1fr 1fr; }
  .ba-card__dim{ grid-column: 1 / -1; border-bottom: 1px solid rgba(255,255,255,.06); }
}

/* ------------------------------------------------------------------
   8 · TESTIMONIAL VIDEO WALL -> vertical YouTube Shorts
   ------------------------------------------------------------------ */
.tv-grid{ grid-template-columns: repeat(6, 1fr); max-width: 940px; margin-inline: auto; gap: var(--sp-4, 16px); }
.tv-grid > .tv{ grid-column: span 2; }
.tv-grid > .tv:nth-child(4){ grid-column: 2 / span 2; }
.tv-grid > .tv:nth-child(5){ grid-column: 4 / span 2; }
@media (max-width: 760px){
  .tv-grid{ grid-template-columns: repeat(2, 1fr); max-width: 440px; }
  .tv-grid > .tv, .tv-grid > .tv:nth-child(4){ grid-column: auto; }
  .tv-grid > .tv:nth-child(5){ grid-column: 1 / -1; justify-self: center; width: calc(50% - 8px); }
}
@media (max-width: 430px){
  .tv-grid{ grid-template-columns: 1fr; max-width: 280px; }
  .tv-grid > .tv:nth-child(5){ grid-column: auto; width: auto; }
}
.tv--yt{
  aspect-ratio: 9 / 16;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  justify-content: flex-end;
  padding: 14px;
}
.tv--yt .tv__scrim{ background: linear-gradient(180deg, rgba(11,16,26,0) 38%, rgba(11,16,26,.55) 70%, rgba(11,16,26,.9)); }
.tv--yt .tv__play{ position: absolute; inset: 0; margin: auto; }
.tv__tag{
  position: relative; z-index: 2; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 800; color: #fff;
  background: rgba(0,0,0,.42); padding: 6px 11px; border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* ------------------------------------------------------------------
   9 · WHATSAPP authentic screen chrome
   ------------------------------------------------------------------ */
.wa{ display: flex; flex-direction: column; }
.wa__body{ flex: 1; }
.wa__back{ color: #e9edef; display: inline-flex; align-items: center; flex: none; }
.wa__back svg{ width: 20px; height: 20px; }
.wa__actions{ margin-inline-start: auto; display: inline-flex; align-items: center; gap: 19px; color: #aebac1; flex: none; }
.wa__actions svg{ width: 20px; height: 20px; }
.wa__ticks{ width: 17px; height: 11px; color: #53bdeb; display: inline-block; vertical-align: middle; }
.wa__bubble--out .wa__time{ color: rgba(233,237,239,.65); }
.wa__footer{
  display: flex; align-items: center; gap: 8px; padding: 8px 9px;
  background: #1f2c33; border-top: 1px solid rgba(0,0,0,.25);
}
.wa__footer .wa__ic{ display: inline-flex; color: #8696a0; flex: none; }
.wa__footer .wa__ic svg{ width: 23px; height: 23px; }
.wa__input{
  flex: 1; background: #2a3942; color: #8696a0; border-radius: 999px;
  padding: 9px 14px; font-size: .86rem; display: flex; align-items: center; gap: 14px; min-width: 0;
}
.wa__input-ic{ display: inline-flex; }
.wa__input-ic:first-of-type{ margin-inline-start: auto; }
.wa__input-ic svg{ width: 20px; height: 20px; color: #8696a0; }
.wa__send{
  width: 40px; height: 40px; border-radius: 50%; background: #00a884; color: #fff;
  display: grid; place-items: center; flex: none;
}
.wa__send svg{ width: 21px; height: 21px; color: #fff; }

/* lightbox holds either a YouTube iframe or an mp4 */
.lightbox__media{ width: 100%; aspect-ratio: 9/16; background: #000; }
.lightbox__media iframe, .lightbox__media video{
  width: 100%; height: 100%; border: 0; display: block; object-fit: cover; background: #000;
}

/* ------------------------------------------------------------------
   6 · UX / A11Y POLISH
   ------------------------------------------------------------------ */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible{
  outline: 2px solid var(--teal-2); outline-offset: 3px; border-radius: 6px;
}
/* comfortable tap targets on touch */
@media (max-width: 720px){
  .btn{ min-height: 52px; }
  .nav__links a{ padding-block: 8px; }
}

/* ------------------------------------------------------------------
   10 · QUOTE TESTIMONIALS (replaces WhatsApp wall — more credible)
   ------------------------------------------------------------------ */
.quotes-grid{ display: grid; gap: var(--sp-5, 20px); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px){ .quotes-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .quotes-grid{ grid-template-columns: 1fr; } }
.quote{
  display: flex; flex-direction: column; position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 50%), var(--dark-3);
  border: 1px solid rgba(131,221,236,.18);
  border-radius: 18px; padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
@media (hover:hover){
  .quote:hover{ transform: translateY(-5px); border-color: rgba(252,159,103,.4);
    box-shadow: 0 22px 55px -20px rgba(0,0,0,.65), 0 0 34px -14px rgba(50,172,193,.45); }
}
.quote__mark{ font-family: Georgia,'Times New Roman',serif; font-size: 3.6rem; line-height: .4; color: var(--orange); opacity: .5; height: .46em; display: block; }
.quote__text{ flex: 1; margin: 16px 0 0; font-size: 1.04rem; line-height: 1.6; color: var(--text); font-weight: 500; }
.quote__foot{ margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.09); display: flex; flex-direction: column; gap: 9px; }
.quote__result{ display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--teal-2); font-size: .92rem; }
.quote__ck{ width: 21px; height: 21px; border-radius: 50%; background: rgba(50,172,193,.22); color: var(--teal-2); display: grid; place-items: center; font-size: .72rem; font-weight: 900; flex: none; }
.quote__name{ font-weight: 800; color: var(--orange); font-size: 1.02rem; }
.quote__biz{ color: var(--text-soft); font-weight: 600; font-size: .85rem; }

/* ------------------------------------------------------------------
   11 · MORE LIFE — livelier reveals, heading underline, before/after pop
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference){
  [data-reveal]{ transition-duration: .72s; transition-timing-function: cubic-bezier(.18,.7,.22,1.04); }
  [data-reveal]:not([data-reveal="left"]):not([data-reveal="right"]):not([data-reveal="scale"]){ transform: translateY(34px); }

  .shead h2{ position: relative; }
  .shead h2::after{
    content: ""; position: absolute; right: 50%; bottom: -13px;
    transform: translateX(50%) scaleX(0); transform-origin: center;
    width: 66px; height: 4px; border-radius: 999px; background: var(--grad-signature);
    transition: transform .75s .25s cubic-bezier(.2,.7,.2,1);
  }
  .shead.is-in h2::after{ transform: translateX(50%) scaleX(1); }

  .ba-card.is-in .ba-side--after .ba-side__label{ animation: ckPop .5s var(--ease) .15s both; }
  @keyframes ckPop{ 0%{ transform: scale(.6); opacity: 0; } 60%{ transform: scale(1.12); } 100%{ transform: scale(1); opacity: 1; } }
}

/* ==================================================================
   12 · THEME LIGHT — page 1 (index): bright / white-dominant
   keeps Horizon brand accents (orange CTA, teal/orange highlights)
   ================================================================== */
body.theme-light{
  background: linear-gradient(180deg, #ffffff 0%, #eef2f8 100%) !important;
  color: #16203a;
  /* root contrast fix: dark text tokens so nothing is swallowed on white */
  --text: #1b2540;
  --text-soft: #4a5571;
  --text-mute: #6b7488;
}
body.theme-light::before, body.theme-light::after{ opacity: .25 !important; mix-blend-mode: normal !important; }
.theme-light .glow{ display: none !important; }

/* sections -> light */
.theme-light .section--dark,
.theme-light .section--dark-2{ background: transparent; }
.theme-light .section--gradient{
  background:
    radial-gradient(90% 70% at 50% -10%, rgba(252,159,103,.12), transparent 60%),
    radial-gradient(90% 80% at 50% 110%, rgba(50,172,193,.12), transparent 60%),
    linear-gradient(180deg, #ffffff, #e9f0f9);
}
.theme-light .hero{
  background:
    radial-gradient(820px 440px at 82% -6%, rgba(50,172,193,.16), transparent 60%),
    radial-gradient(720px 440px at 6% 8%, rgba(252,159,103,.13), transparent 60%),
    linear-gradient(180deg, #ffffff, #f1f5fb);
}
.theme-light .hero__bg{ opacity: 0; }

/* nav */
.theme-light .nav{ background: rgba(255,255,255,.85); border-bottom: 1px solid rgba(18,32,58,.08); }
.theme-light .nav.is-stuck{ box-shadow: 0 6px 22px rgba(18,32,58,.09); }
.theme-light .nav__badge{ color: #136f80; background: rgba(50,172,193,.1); border-color: rgba(50,172,193,.26); }

/* text */
.theme-light .hero__title, .theme-light .display,
.theme-light .h1, .theme-light .h2, .theme-light .h3, .theme-light .h4{ color: #16203a; }
.theme-light .lead, .theme-light .body, .theme-light .soft, .theme-light .small{ color: #46506b; }
.theme-light .hl-mark{ color: #16203a; }
.theme-light .eyebrow{ color: #136f80; background: rgba(50,172,193,.1); border-color: rgba(50,172,193,.26); }
.theme-light .eyebrow--orange{ color: #b4531a; background: rgba(252,138,104,.13); border-color: rgba(252,138,104,.32); }

/* curiosity card -> white */
.theme-light .curio{ background: #ffffff; border-color: rgba(18,32,58,.1); box-shadow: 0 26px 60px -30px rgba(18,32,58,.32); }
.theme-light .curio__eyebrow{ color: #136f80; }
.theme-light .curio__title{ color: #16203a; }
.theme-light .curio__list li{ color: #46506b; }

/* form card -> white */
.theme-light .form{ background: #ffffff; border-color: rgba(18,32,58,.1); box-shadow: 0 26px 60px -30px rgba(18,32,58,.32); }
.theme-light .form .h3, .theme-light .form h2{ color: #16203a; }
.theme-light .label{ color: #16203a; }
.theme-light .input{ background: #f4f6f9; border-color: rgba(18,32,58,.16); color: #16203a; }
.theme-light .input::placeholder{ color: #8a93a8; }
.theme-light .check span{ color: #46506b; }
.theme-light .check a{ color: #136f80; }
.theme-light .form__note{ color: #56607a; }

/* reinforce + trust + footer */
.theme-light .reinforce{ background: linear-gradient(180deg, rgba(252,138,104,.1), rgba(50,172,193,.06)); border-color: rgba(18,32,58,.08); }
.theme-light .reinforce .lead{ color: #16203a; }
.theme-light .trust__item{ color: #46506b; }
.theme-light .footer{ background: transparent; border-top: 1px solid rgba(18,32,58,.1); }
.theme-light .footer__meta, .theme-light .footer__links a{ color: #56607a; }
.theme-light .footer__links a:hover{ color: #16203a; }

/* ------------------------------------------------------------------
   13 · INDEX POSTER — "click the video" callout + time chip + fascination tidy
   ------------------------------------------------------------------ */
.poster__big{ font-size: clamp(3.2rem, 12vw, 6.5rem) !important; }
.poster__play{ margin-top: clamp(6px, 1.4vw, 12px) !important; }
.poster__label{
  bottom: clamp(14px, 3vw, 22px);
  inset-inline: 0; margin-inline: auto; width: fit-content; max-width: 92%;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #2a1408 !important; font-weight: 800;
  font-size: clamp(.85rem, 2.2vw, 1rem);
  padding: 10px 18px; border-radius: 12px;
  box-shadow: 0 14px 34px -8px rgba(252,138,104,.7);
  white-space: nowrap;
}
.poster__time{
  position: absolute; top: clamp(12px,3vw,18px); inset-inline-end: clamp(12px,3vw,18px); z-index: 3;
  background: rgba(0,0,0,.42); color: #fff; font-weight: 700; font-size: .8rem;
  padding: 5px 11px; border-radius: 999px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
@media (prefers-reduced-motion: no-preference){
  .poster__label{ animation: tagBounce 2.2s ease-in-out infinite; }
  @keyframes tagBounce{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-5px); } }
  .poster__hand{ display: inline-block; animation: handTap 1.3s ease-in-out infinite; }
  @keyframes handTap{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(3px); } }
}

/* fascination list: tidy alignment (no jumps) */
.curio__list li{ align-items: flex-start; line-height: 1.6; }
.curio__lock{ flex: 0 0 1.5em; width: 1.5em; text-align: center; margin-top: 0; }

/* ==================================================================
   14 · AUDIT FIXES — proportions + decoration placement
   ================================================================== */
/* page-2 hero headline is very long -> cap its size so it doesn't fill the screen */
body:not(.theme-light) .hero__title{
  font-size: clamp(1.65rem, 3.7vw, 2.75rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.01em;
}
/* cleaner, lower highlight swoosh (was floating/too thick) */
.hl-mark::after{ height: .24em !important; bottom: .02em !important; opacity: .42 !important; }
/* section heading accent underline: short, centered, clear of the lead text */
.shead h2{ position: relative; }
.shead h2::after{ bottom: -14px !important; height: 3px !important; width: 56px !important; }

/* ==================================================================
   15 · STORYTELLING pull-quote + bigger hero VIDEO (Yahav-style)
   ================================================================== */
.pullquote{
  margin: clamp(22px, 4vw, 34px) 0;
  padding: 18px 24px;
  border: 0; border-inline-start: 4px solid var(--orange);
  background: linear-gradient(90deg, rgba(252,138,104,.12), rgba(252,138,104,0) 80%);
  border-radius: 0 14px 14px 0;
  font-size: clamp(1.3rem, 2.9vw, 1.95rem);
  font-weight: 800; line-height: 1.32; color: var(--white);
  text-wrap: balance;
}

/* give the VSL more space + cinematic prominence */
.hero--case .hero__content{ max-width: 1240px; }
.hero--case .hero__title{ max-width: 880px; margin-inline: auto; }
.hero--case .lead{ max-width: 640px; margin-inline: auto; }
#vsl{
  border-width: 2px;
  margin-top: clamp(18px, 3vw, 30px);
  box-shadow: var(--shadow-lg), 0 0 90px -12px rgba(252,138,104,.42), 0 0 150px -40px rgba(50,172,193,.4);
}
#vsl .video__play{ width: clamp(78px, 11vw, 110px); height: clamp(78px, 11vw, 110px); }
@media (prefers-reduced-motion: no-preference){
  #vsl{ animation: vslGlow 4.5s ease-in-out infinite; }
  @keyframes vslGlow{
    0%,100%{ box-shadow: var(--shadow-lg), 0 0 80px -16px rgba(252,138,104,.38), 0 0 130px -40px rgba(50,172,193,.34); }
    50%{ box-shadow: var(--shadow-lg), 0 0 115px -8px rgba(252,138,104,.58), 0 0 175px -30px rgba(50,172,193,.5); }
  }
}

/* index hero VSL: video lives inside the first section, centered */
.hero__video{ max-width: 800px; margin: clamp(28px, 4vw, 46px) auto 0; }

/* index hero: tighter top + video margin so the VSL sits higher */
.theme-light .hero{ padding-top: clamp(80px, 10vh, 112px); padding-bottom: clamp(28px, 4vw, 52px); }
.hero__video{ margin-top: clamp(16px, 2.4vw, 26px) !important; }

/* ==================================================================
   16 · INDEX = centered VSL opt-in (Yahav structure)
   ================================================================== */
.theme-light .hero__content{ text-align: center; }
.theme-light .hero__content > .eyebrow{ margin-inline: auto; }
.theme-light .hero__sub{ max-width: 58ch; margin-inline: auto; }
.theme-light .hero__title{ max-width: 20ch; margin-inline: auto; }
.theme-light #form .container--narrow{ text-align: center; }
.theme-light #form .curio{ text-align: center; }
.theme-light #form .curio__list{ display: inline-block; text-align: right; margin-inline: auto; max-width: 32rem; }
.theme-light #form .form{ text-align: center; }
.theme-light #form .field,
.theme-light #form .check{ text-align: right; }

/* ==================================================================
   17 · PAGE-1 MAKEOVER — color touches, variety, flow arrows, air
   ================================================================== */
/* breathing room between text and video */
.theme-light .hero__video{ margin-top: clamp(26px, 4.5vw, 48px) !important; }
.theme-light .hero{ padding-bottom: clamp(16px, 2.5vw, 30px); }

/* directional flow arrows (guide the eye down) */
.flow-arrow{ display: flex; justify-content: center; margin: clamp(8px,2vw,18px) auto clamp(4px,1vw,10px); color: var(--orange); }
.flow-arrow svg{ width: 36px; height: 36px; filter: drop-shadow(0 4px 10px rgba(252,138,104,.4)); }
@media (prefers-reduced-motion: no-preference){
  .flow-arrow svg{ animation: arrowBob 1.5s ease-in-out infinite; }
  @keyframes arrowBob{ 0%,100%{ transform: translateY(-3px); opacity: .65; } 50%{ transform: translateY(5px); opacity: 1; } }
}

/* FASCINATIONS -> teal identity card (distinct) */
.theme-light #form .curio{
  background: linear-gradient(180deg, rgba(50,172,193,.12), #ffffff 72%);
  border: 1px solid rgba(50,172,193,.3);
  border-top: 4px solid var(--teal);
  box-shadow: 0 22px 50px -28px rgba(18,32,58,.28);
  text-align: right;
}
.theme-light #form .curio__title{ display: flex; align-items: center; gap: 10px; color: #16203a; }
.theme-light #form .curio__title::before{ content: "🎬"; font-size: 1.1em; flex: none; }
.theme-light #form .curio__list{ display: block; max-width: none; }
.theme-light #form .curio__list li{ color: #2f3a54; }
.theme-light #form .curio__list strong{ color: #c2611f; }
.theme-light #form .curio__lock{ filter: none; }

/* FORM -> dark navy focal panel (the conversion point; breaks the white) */
.theme-light #form .form{
  background: linear-gradient(180deg, #1b2238 0%, #121725 100%) !important;
  border: 1px solid rgba(131,221,236,.2);
  border-top: 4px solid var(--orange);
  box-shadow: 0 34px 80px -34px rgba(18,32,58,.55), 0 0 70px -22px rgba(252,138,104,.32);
}
.theme-light #form .form .h3,
.theme-light #form .form h2{ color: #ffffff; }
.theme-light #form .form .lead{ color: #c6d0e6; }
.theme-light #form .form .label{ color: #e7ecf5; }
.theme-light #form .form .input{ background: #0f1422; border-color: rgba(131,221,236,.22); color: #fff; }
.theme-light #form .form .input::placeholder{ color: #7e8aa3; }
.theme-light #form .form .check span{ color: #c6d0e6; }
.theme-light #form .form .check a{ color: var(--teal-2); }
.theme-light #form .form .form__note{ color: #9aa6bd; }

/* REINFORCE -> orange identity band (distinct) */
.theme-light .reinforce{
  background: linear-gradient(180deg, rgba(252,138,104,.16), rgba(252,138,104,.04)) !important;
  border: 1px solid rgba(252,138,104,.32);
  border-top: 4px solid var(--orange);
}

/* ==================================================================
   18 · PAGE-2 REFRESH — focal form accent + flow arrows + polish
   ================================================================== */
/* apply forms become clear focal panels */
body:not(.theme-light) .form{
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-lg), 0 0 64px -26px rgba(252,138,104,.42);
}
/* reuse the flow-arrow on dark too */
body:not(.theme-light) .flow-arrow{ color: var(--orange); }

/* ==================================================================
   19 · CLEAN / AUTHENTIC PASS — calmer, less "designed", more real
   ================================================================== */
/* calm ambient glows (the biggest "artificial" tell) */
.glow{ opacity: .2 !important; animation: none !important; }
.theme-light .glow{ display: none !important; }

/* stop looping attention animations (keep one-time scroll reveals) */
.btn--pulse{ animation: none !important; }
.poster__label, .poster__hand{ animation: none !important; }
.flow-arrow svg{ animation: none !important; opacity: .8 !important; filter: none !important; }
#vsl{ animation: none !important; }
.hl, .hl-orange, .hl-teal, .hl-grad{ animation: none !important; }
.stat__num, .poster__big, .pm-x3{ animation: none !important; }
.lever__icon{ animation: none !important; }

/* flatter, cleaner card surfaces (drop the glossy sheen) */
.lever, .ba-card, .stat, .faq__item, .curio, .reinforce, .quote, .watch-panel{ background-image: none !important; }

/* page-1 FORM: clean white card (revert the dramatic dark panel) */
.theme-light #form .form{
  background: #ffffff !important;
  border: 1px solid rgba(18,32,58,.1) !important;
  box-shadow: 0 18px 48px -30px rgba(18,32,58,.22) !important;
}
.theme-light #form .form .h3,
.theme-light #form .form h2{ color: #16203a !important; }
.theme-light #form .form .lead{ color: #46506b !important; }
.theme-light #form .form .label{ color: #16203a !important; }
.theme-light #form .form .input{ background: #f6f8fb !important; border-color: rgba(18,32,58,.14) !important; color: #16203a !important; }
.theme-light #form .form .input::placeholder{ color: #9aa3b5 !important; }
.theme-light #form .form .check span{ color: #46506b !important; }
.theme-light #form .form .form__note{ color: #6b7488 !important; }

/* clean card identities: thin accent line only (subtle variety, not loud) */
.theme-light #form .curio{
  background: #ffffff !important;
  border: 1px solid rgba(18,32,58,.1) !important;
  border-top: 2px solid rgba(50,172,193,.6) !important;
  box-shadow: 0 16px 40px -30px rgba(18,32,58,.2) !important;
}
.theme-light .reinforce{
  background: #ffffff !important;
  border: 1px solid rgba(18,32,58,.1) !important;
  border-top: 2px solid rgba(252,138,104,.7) !important;
}
.theme-light .reinforce .lead{ color: #2f3a54 !important; }

/* calmer poster + page-2 form (neutral shadows, no heavy glow) */
.theme-light .poster{ box-shadow: 0 26px 64px -32px rgba(18,32,58,.45) !important; }
body:not(.theme-light) .form{ box-shadow: var(--shadow-lg) !important; }


/* ==================================================================
   20 · FIXES — restore video thumbs, clean hl-mark underline, tight form
   ================================================================== */
/* video testimonial thumbnails (must survive the clean pass) */
.tv--yt{ background-image: var(--thumb) !important; background-size: cover !important; background-position: center !important; }

/* hl-mark: clean inline highlight that follows the text (no runaway ::after) */
.hl-mark{
  position: static !important;
  color: inherit !important;
  background-image: linear-gradient(120deg, rgba(252,159,103,.5), rgba(50,172,193,.45)) !important;
  background-repeat: no-repeat !important;
  background-position: 0 92% !important;
  background-size: 100% .26em !important;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding-bottom: .04em;
}
.hl-mark::after{ display: none !important; }

/* tighter, cleaner form (smaller gaps between fields) */
.form .field{ margin-bottom: 12px !important; gap: 6px !important; }
.form .check{ margin-top: 4px; }
.theme-light #form .form{ padding: clamp(22px, 3.5vw, 34px) !important; }

/* ==================================================================
   21 · MATCH YAHAV — warm bg, real video, dark form card, tight
   ================================================================== */
/* warm premium off-white (like Yahav's cream) */
body.theme-light{ background: linear-gradient(180deg, #faf8f3 0%, #f1ece3 100%) !important; }

/* page-1 video teaser: real YouTube thumbnail with play overlay */
.poster--thumb{ background-size: cover !important; background-position: center !important; }
.poster--thumb .poster__scrim{ position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,11,18,.1), rgba(8,11,18,.5)); }
.poster--thumb .poster__play{ position: absolute; inset: 0; margin: auto; z-index: 2; }
.poster--thumb .poster__press, .poster--thumb .poster__time, .poster--thumb .poster__label{ z-index: 3; }

/* page-2 VSL: clean premium frame around the real YouTube player */
.embed--vsl{
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(131,221,236,.2);
  box-shadow: 0 40px 90px -42px rgba(0,0,0,.65);
  max-width: 1000px; margin-inline: auto;
}

/* DARK FORM CARD (Yahav signature: dark + dashed accent border) */
.theme-light #form .form{
  background: linear-gradient(180deg, #1b2236 0%, #121725 100%) !important;
  border: 2px dashed rgba(252,159,103,.55) !important;
  box-shadow: 0 32px 72px -36px rgba(18,32,58,.5) !important;
}
.theme-light #form .form .h3, .theme-light #form .form h2{ color: #ffffff !important; }
.theme-light #form .form .lead{ color: #c6d0e6 !important; }
.theme-light #form .form .label{ color: #e7ecf5 !important; }
.theme-light #form .form .input{ background: #0f1422 !important; border-color: rgba(131,221,236,.22) !important; color: #fff !important; }
.theme-light #form .form .input::placeholder{ color: #7e8aa3 !important; }
.theme-light #form .form .check span{ color: #c6d0e6 !important; }
.theme-light #form .form .check a{ color: var(--teal-2) !important; }
.theme-light #form .form .form__note{ color: #9aa6bd !important; }

/* prominent arrow into the form */
.flow-arrow svg{ width: 40px !important; height: 40px !important; opacity: .9 !important; }

/* tighten: less dead space, consistent centered rhythm */
.theme-light .section--tight{ padding-block: clamp(24px, 3.5vw, 44px) !important; }
.theme-light #form{ padding-top: clamp(8px, 1.5vw, 18px) !important; }
.theme-light #form .curio{ margin-bottom: 6px; }

/* ==================================================================
   22 · REFINEMENTS — compact forms, live arrow, mobile above-fold video
   ================================================================== */
/* COMPACT FORMS (both pages): kill empty error gaps, tighten fields */
.field__error:empty{ display: none !important; }
.form .field{ margin-bottom: 10px !important; gap: 5px !important; }
.form .check{ margin-top: 6px; margin-bottom: 4px; }
.form .h3, .form h2{ margin-bottom: 4px; }
.form .lead.mb-6{ margin-bottom: 16px !important; }
.theme-light #form .form{ padding: clamp(20px, 3vw, 30px) !important; max-width: 460px; margin-inline: auto; }
body:not(.theme-light) .form{ padding: clamp(20px, 3vw, 30px) !important; }

/* LIVE animated flow arrow (re-enabled, points at the box below) */
@media (prefers-reduced-motion: no-preference){
  .flow-arrow svg{ animation: arrowBob 1.4s ease-in-out infinite !important; opacity: 1 !important; }
  @keyframes arrowBob{ 0%,100%{ transform: translateY(-2px); } 50%{ transform: translateY(8px); } }
}
.hero .flow-arrow{ margin-top: clamp(14px,2.5vw,22px); }
.hero .flow-arrow svg{ width: 44px !important; height: 44px !important; color: var(--orange); }

/* FASCINATIONS alignment (no jumping): lock in fixed column, text aligned */
.curio__list li{ display: flex !important; align-items: flex-start !important; gap: 10px !important; text-align: right; line-height: 1.55; }
.curio__lock{ flex: 0 0 1.5em !important; width: 1.5em !important; text-align: center; margin: 1px 0 0 !important; }
.curio__list li > span:last-child{ flex: 1; }

/* ---- MOBILE: video on the first screen (page 1) ---- */
@media (max-width: 640px){
  .theme-light .hero{ padding-top: 72px !important; padding-bottom: 10px !important; }
  .theme-light .hero__title{ font-size: clamp(1.5rem, 7.4vw, 2.05rem) !important; margin-top: 10px !important; }
  .theme-light .hero__sub{ font-size: .92rem !important; margin-top: 9px !important; line-height: 1.5; }
  .hero--vsl .eyebrow{ font-size: .7rem !important; padding: 5px 11px !important; }
  .theme-light .hero__video{ margin-top: 14px !important; }
  /* page 2: tighter hero so the video shows sooner */
  body:not(.theme-light) .hero--case .hero__title{ font-size: clamp(1.35rem, 5.6vw, 1.7rem) !important; }
  body:not(.theme-light) .hero--case .lead{ font-size: .92rem !important; }
  .embed--vsl{ margin-top: 14px !important; }
}

/* fix mobile horizontal overflow (negative-positioned glows extending past viewport) */
html, body{ overflow-x: hidden; max-width: 100%; }
.section, .hero{ overflow-x: clip; }

/* ==================================================================
   23 · MOBILE-FIRST hero (most traffic) — bigger headline/sub/video,
        tagline + arrow lead down to the form
   ================================================================== */
@media (max-width: 640px){
  .theme-light .hero{ padding-top: 62px !important; padding-bottom: 26px !important; }
  .theme-light .hero .container{ padding-inline: 16px !important; }      /* wider video */
  .hero--vsl .eyebrow{ font-size: .72rem !important; white-space: normal; line-height: 1.4; }
  .theme-light .hero__title{ font-size: clamp(1.72rem, 7.6vw, 2.15rem) !important; line-height: 1.15; margin-top: 10px !important; }
  .theme-light .hero__sub{ font-size: 1.03rem !important; line-height: 1.5; margin-top: 10px !important; max-width: none !important; }
  .theme-light .hero__video{ margin-top: 16px !important; }
  .theme-light .hero .h4{ margin-top: 18px !important; font-size: 1.05rem !important; }
  .theme-light .hero .flow-arrow{ margin: 10px 0 0 !important; }
  .theme-light .hero .flow-arrow svg{ width: 42px !important; height: 42px !important; }
}

/* ==================================================================
   24 · MOBILE polish (both pages) — rhythm + highlight the hero result
   ================================================================== */
@media (max-width: 640px){
  .section{ padding-block: clamp(36px, 7vw, 58px); }
  /* page-2 hero: tighter headline so the video is prominent */
  body:not(.theme-light) .hero--case .hero__title{ line-height: 1.22; }
  body:not(.theme-light) .hero--case{ padding-top: 64px; }
  /* highlight the signature result (x3) among the stats */
  .stats-pyramid > .stat:first-child{ border-color: rgba(252,159,103,.5) !important; box-shadow: 0 18px 42px -22px rgba(252,138,104,.45) !important; }
  /* comfortable FAQ + quotes tap/reading on mobile */
  .faq__q{ font-size: 1rem; }
  .quote{ padding: 20px 18px; }
}

/* ==================================================================
   25 · MOBILE video prominence — bigger, tighter to the headline
   ================================================================== */
@media (max-width: 640px){
  .theme-light .hero__sub{ margin-top: 9px !important; }
  .theme-light .hero__video{ margin-top: 14px !important; }
  /* video pops: stronger frame + bigger, more inviting play button */
  .poster--thumb{ box-shadow: 0 20px 46px -18px rgba(18,32,58,.55); border: 1px solid rgba(18,32,58,.12); }
  .poster--thumb .poster__play{ width: 78px !important; height: 78px !important; }
  .poster__label{ font-size: .95rem !important; padding: 11px 18px !important; }
}

/* ==================================================================
   26 · PAGE-1: bigger headline + sub + more space for video
   ================================================================== */
@media (min-width: 641px){
  .theme-light .hero__title{ font-size: clamp(2.4rem, 5.2vw, 3.6rem) !important; max-width: 20ch; line-height: 1.08; }
  .theme-light .hero__sub{ font-size: clamp(1.1rem, 2.1vw, 1.38rem) !important; max-width: 56ch; }
  .hero__video{ max-width: 960px !important; }
}
/* mobile: headline a touch larger (max that fits cleanly) */
@media (max-width: 640px){
  .theme-light .hero__title{ font-size: 1.92rem !important; line-height: 1.16; }
  .theme-light .hero__sub{ font-size: 1.08rem !important; }
}

/* ==================================================================
   27 · DOUBLE-CHEVRON FLOW ARROW (bolder, clearly animated, points down)
        + bolder hero sub-paragraph (stands out, ratio preserved)
   ================================================================== */
/* bolder sub-paragraph under the main headline (weight only — size/ratio kept) */
.theme-light .hero__sub{ font-weight: 600 !important; color: var(--text) !important; }
.theme-light .hero__sub .hl-teal{ font-weight: 800; }

/* double-chevron arrow — bigger, bolder, stronger glow */
.flow-arrow{ margin-top: clamp(10px,2vw,18px) !important; }
.flow-arrow svg{
  width: 48px !important; height: 48px !important;
  opacity: 1 !important;
  filter: drop-shadow(0 6px 14px rgba(252,138,104,.5)) !important;
}
.hero .flow-arrow svg{ width: 56px !important; height: 56px !important; }
@media (max-width: 640px){
  .flow-arrow svg{ width: 46px !important; height: 46px !important; }
  .hero .flow-arrow svg{ width: 52px !important; height: 52px !important; }
}

/* ALWAYS-ON up/down bounce so the arrow is clearly "alive" and points
   at the line below it. Intentional wayfinding cue — NOT gated behind
   prefers-reduced-motion (that gate was freezing it on phones with
   "reduce motion" on). Kept gentle; slowed for reduced-motion users. */
.flow-arrow svg{
  animation: arrowBob 1.15s ease-in-out infinite !important;
  will-change: transform;
}
@keyframes arrowBob{
  0%   { transform: translateY(-5px); }
  50%  { transform: translateY(11px); }
  100% { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce){
  .flow-arrow svg{ animation-duration: 1.7s !important; }
}

/* ==================================================================
   28 · PAGE-2 LIVELINESS — running numbers, hover-alive cards,
        and the "איפה הכסף" levers with a popping "אצל אור" result.
        (class-level rules beat the universal reduce-motion killer)
   ================================================================== */

/* ---- LEVERS: card hover + prominent, growing "אצל אור" result ---- */
.levers .lever{
  display: flex; flex-direction: column;
  transition: transform .42s var(--ease-out), border-color .42s, box-shadow .42s !important;
}
.levers .lever .lever__desc{ margin-bottom: 16px; }
.levers .lever:hover{
  transform: translateY(-7px) !important;
  border-color: rgba(252,138,104,.45) !important;
  box-shadow: 0 30px 66px -30px rgba(252,138,104,.5), var(--shadow-lg) !important;
}

/* the result block — given real space, sits at the bottom of the card */
.lever__result{
  margin-top: auto;
  display: flex; flex-direction: column; align-items: flex-start; gap: 9px;
  padding: 15px 16px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(252,138,104,.10), rgba(252,138,104,.02));
  border: 1px solid rgba(252,138,104,.22);
  transform-origin: center bottom;
  transition: transform .45s cubic-bezier(.2,.7,.2,1.25), box-shadow .45s, background .45s, border-color .45s !important;
}
.lever__result-tag{
  display: inline-block;
  font-size: .74rem; font-weight: 900; letter-spacing: .02em;
  color: var(--orange);
  background: rgba(252,138,104,.16);
  border: 1px solid rgba(252,138,104,.32);
  padding: 4px 13px; border-radius: 999px;
  transition: transform .45s cubic-bezier(.2,.7,.2,1.4), color .35s, background .35s, box-shadow .35s !important;
}
.lever__result-text{
  align-self: stretch;       /* full card width so the line wraps, never clips */
  font-size: 1.08rem; font-weight: 800; line-height: 1.32;
  color: #ffffff !important;  /* bright outcome, high contrast on the tinted block */
  transition: color .35s !important;
}

/* HOVER: the result grows toward the screen, the tag pops + hums (glow breathes) */
.levers .lever:hover .lever__result{
  transform: scale(1.07) translateY(-2px);
  background: linear-gradient(135deg, rgba(252,138,104,.24), rgba(252,138,104,.06));
  border-color: rgba(252,138,104,.55);
  box-shadow: 0 22px 50px -18px rgba(252,138,104,.62);
}
.levers .lever:hover .lever__result-tag{
  transform: scale(1.14);
  color: #1b1205; background: var(--orange);
  animation: tagHum 1.3s ease-in-out infinite;
}
@keyframes tagHum{
  0%,100%{ box-shadow: 0 6px 18px -8px rgba(252,138,104,.7); }
  50%    { box-shadow: 0 8px 30px -6px rgba(252,138,104,1); }
}

/* TOUCH (mobile, no hover): keep it prominent + a one-time pop on reveal */
@media (hover: none){
  .levers .lever.is-in .lever__result{
    animation: resultPop .75s cubic-bezier(.2,.7,.2,1.3) .15s both;
  }
}
@keyframes resultPop{
  0%  { transform: scale(.92); opacity: .35; }
  60% { transform: scale(1.05); opacity: 1; }
  100%{ transform: scale(1); }
}

/* ---- RUNNING NUMBERS: satisfying "pop" the moment a count finishes ---- */
.stat,
.stats-pyramid .stat{ transition: transform .4s var(--ease-out), box-shadow .4s !important; }
.stats-pyramid .stat:hover{ transform: translateY(-5px) !important; }
.stat__num{ display: inline-block; transform-origin: center; }
.stat__num.is-counted{ animation: countPop .55s cubic-bezier(.2,.7,.2,1.5); }
@keyframes countPop{
  0%  { transform: scale(1); }
  40% { transform: scale(1.16); }
  100%{ transform: scale(1); }
}

/* ---- GENERAL SCROLL/HOVER LIFE on the main card types ---- */
.ba-card{ transition: transform .42s var(--ease-out), box-shadow .42s, border-color .42s !important; }
.ba-card:hover{
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--glass-border-2) !important;
}
.ba-card:hover .ba-side--after{ background: linear-gradient(135deg, rgba(50,172,193,.16), transparent 80%); }

.quote{ transition: transform .38s var(--ease-out), box-shadow .38s, border-color .38s !important; }
.quote:hover{
  transform: translateY(-4px) !important;
  border-color: rgba(252,138,104,.35) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* gentle "alive" pulse on section eyebrow dots (re-add a touch of life) */
.eyebrow .dot{ animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(252,138,104,.5); }
  50%    { box-shadow: 0 0 0 5px rgba(252,138,104,0); }
}

/* ==================================================================
   29 · PAGE-1 — "מה אנשים אומרים אחרי הקייס" testimonials (light theme)
   ================================================================== */
/* --- "מה אנשים אומרים אחרי הקייס" testimonial cards (light theme) --- */
.said-grid{
  display: grid; gap: clamp(14px, 2.5vw, 22px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px){ .said-grid{ grid-template-columns: repeat(2, 1fr); } }
.said{
  margin: 0; padding: clamp(20px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid rgba(18,32,58,.08);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  box-shadow: 0 20px 44px -28px rgba(18,32,58,.30);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.said:hover{ transform: translateY(-5px); box-shadow: 0 26px 56px -26px rgba(18,32,58,.4); }
.said__stars{ color: #f5a623; font-size: .95rem; letter-spacing: 2px; margin-bottom: 12px; }
.said__q{
  margin: 0 0 16px; font-size: clamp(1.02rem, 2.2vw, 1.16rem); font-weight: 600;
  line-height: 1.55; color: #1b2540;
}
.said__by{ display: flex; align-items: center; gap: 12px; }
.said__avatar{
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 900; font-size: 1.15rem; color: #fff;
  background: linear-gradient(135deg, var(--orange), #f5a623);
}
.said__id{ display: flex; flex-direction: column; line-height: 1.3; text-align: start; }
.said__id b{ color: #1b2540; font-weight: 800; }
.said__id small{ color: #6b7488; font-size: .85rem; }

/* ==================================================================
   30 · PAGE-2 PERSUASION — pain rows, the bridge, and the qualifier
   ================================================================== */
.pains{ list-style: none; margin: 0 auto; padding: 0; display: grid; gap: 12px; max-width: 760px; }
.pain{
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 14px;
  background: var(--glass, rgba(255,255,255,.03));
  border: 1px solid var(--glass-border, rgba(255,255,255,.08));
  transition: transform .35s var(--ease-out), border-color .35s, background .35s;
}
.pain:hover{ transform: translateX(-4px); border-color: rgba(252,138,104,.4); background: rgba(252,138,104,.06); }
.pain__icon{ font-size: 1.5rem; flex: none; line-height: 1.25; }
.pain__hook{ display: block; color: #fff; font-weight: 800; font-size: 1.06rem; margin-bottom: 3px; }
.pain__line{ margin: 0; color: var(--text-soft); font-size: .98rem; line-height: 1.5; }

.bridge{
  max-width: 680px; margin-inline: auto; text-align: center;
  padding: clamp(22px, 4vw, 34px); border-radius: 18px;
  background: linear-gradient(180deg, rgba(252,138,104,.12), rgba(252,138,104,.03));
  border: 1px solid rgba(252,138,104,.28); border-top: 4px solid var(--orange);
}
.bridge__kicker{ font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 900; color: #fff; margin: 0 0 12px; }
.bridge__text{ color: var(--text-soft); font-size: clamp(1rem, 2.2vw, 1.1rem); line-height: 1.6; margin: 0; }
.bridge__text b{ color: var(--teal-2, #83ddec); }

.fit-grid{ display: grid; gap: clamp(14px, 2.5vw, 20px); grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; }
@media (min-width: 720px){ .fit-grid{ grid-template-columns: 1fr 1fr; } }
.fit-card{
  padding: clamp(20px, 3vw, 26px); border-radius: 16px;
  background: var(--glass, rgba(255,255,255,.03));
  border: 1px solid var(--glass-border, rgba(255,255,255,.08));
}
.fit-card--yes{ border-top: 3px solid #2bbf72; }
.fit-card--no{ border-top: 3px solid #6b7488; }
.fit-card__title{ display: flex; align-items: center; gap: 10px; font-size: 1.12rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.fit-card__mark{ width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .85rem; font-weight: 900; flex: none; }
.fit-card--yes .fit-card__mark{ background: rgba(43,191,114,.18); color: #2bbf72; }
.fit-card--no .fit-card__mark{ background: rgba(107,116,136,.2); color: #9aa6bd; }
.fit-list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fit-list li{ position: relative; padding-inline-start: 18px; color: var(--text-soft); line-height: 1.5; font-size: .98rem; }
.fit-list li::before{ content: ""; position: absolute; inset-inline-start: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .45; }

/* ==================================================================
   31 · PAGE-1 video poster — Play truly centered + above the press
        badge, and a smaller "כפי שפורסם ב-TheMarker" badge so it never
        covers the Play (mobile fix).
   ================================================================== */
/* center the play (override the forced margin-top) + keep it on top */
.poster--thumb .poster__play{ inset: 0 !important; margin: auto !important; z-index: 4 !important; }
/* shrink the on-video press badge (the trust-strip badge stays normal) */
.poster__press{ padding: 4px 9px !important; gap: 6px !important; background: rgba(8,11,18,.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border-radius: 999px; }
.poster__press span{ font-size: .62rem !important; }
.poster__press img{ height: 16px !important; }
@media (max-width: 640px){
  .poster__press{ padding: 3px 8px !important; gap: 5px !important; top: 10px !important; inset-inline-start: 10px !important; }
  .poster__press span{ font-size: .56rem !important; }
  .poster__press img{ height: 13px !important; }
}
