/* ============================================
   LUBO FINANCE — Variant A
   Authority + Results-First
   ============================================ */

:root {
  /* Brand greens (mandatory) */
  --green: #60b867;
  --green-dark: #136427;
  --green-darker: #0d4a1d;
  --bg-light: #f8fff7;

  /* Accent — warm gold for premium feel */
  --gold: #c89b3c;
  --gold-soft: #e9c97a;
  --gold-deep: #8a6822;

  /* Coral — used sparingly for emphasis / risk-reversal */
  --coral: #e3553d;

  /* Neutrals */
  --ink: #0f1a14;
  --ink-2: #2b3830;
  --ink-3: #5a6660;
  --line: #e6ebe7;
  --line-2: #d3dcd5;
  --paper: #ffffff;
  --paper-2: #fafbf9;

  /* Type */
  --font-serif: 'Rubik', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Rubik', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 6px rgba(15, 26, 20, 0.04), 0 1px 2px rgba(15, 26, 20, 0.04);
  --shadow: 0 8px 28px rgba(15, 26, 20, 0.06), 0 2px 6px rgba(15, 26, 20, 0.04);
  --shadow-lg: 0 24px 60px rgba(15, 26, 20, 0.08), 0 6px 16px rgba(15, 26, 20, 0.05);

  /* Motion */
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------- Reset / Base -------- */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x: hidden is the universal fallback (old Safari ignores `clip`); clip wins on modern browsers and keeps position:sticky working. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: max(24px, env(safe-area-inset-right, 0px)) max(24px, env(safe-area-inset-left, 0px));
}

/* Focus */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 26px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--small { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

.btn--accent {
  background: var(--gold);
  color: #1c1305;
  box-shadow: 0 8px 22px rgba(200, 155, 60, 0.3);
}
.btn--accent:hover { background: #b58932; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,155,60,.4); }

.btn-arrow { display: inline-block; transition: transform .2s ease; font-size: 1.1em; }
.btn:hover .btn-arrow { transform: translateX(-4px); }

/* ============ Eyebrow & section heads ============ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(96, 184, 103, 0.12);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-eyebrow--light {
  color: #fff;
  background: rgba(255,255,255,0.14);
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}
.section-title--light { color: #fff; }
.section-sub {
  font-size: 18px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.6;
}
.section-sub--light { color: rgba(255,255,255,0.92); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
}
.site-nav a:hover { color: var(--green-dark); text-decoration: none; }
.header-cta { background: var(--gold); color: #1c1305; border-radius: 999px; box-shadow: 0 4px 14px rgba(200,155,60,0.3); }
.header-cta:hover { background: #b58932; text-decoration: none; }

/* ============ HAMBURGER + MOBILE DRAWER ============ */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform .28s var(--ease-out-quint), opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 12, 0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity .3s ease;
}
.drawer-overlay.is-open { opacity: 1; }
.drawer-overlay[hidden] { display: none; }

/* Host clips the drawer at element level (reliable on iOS) so the off-screen
   drawer can never extend the page width / cause horizontal scroll. */
.drawer-host {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none; /* clicks pass through to the overlay underneath */
  z-index: 100;
}
.mobile-drawer {
  position: absolute; /* was fixed — now clipped by .drawer-host overflow:hidden */
  pointer-events: auto;
  top: 0;
  bottom: 0;
  inset-inline-start: 0; /* right side in RTL */
  width: min(82vw, 320px);
  background: #fff;
  z-index: 100;
  box-shadow: -8px 0 40px rgba(8, 20, 12, 0.22);
  transform: translateX(100%);
  transition: transform .32s var(--ease-out-quint);
  display: flex;
  flex-direction: column;
  padding: max(72px, calc(env(safe-area-inset-top, 0px) + 28px)) 26px 28px;
}
.mobile-drawer.is-open { transform: translateX(0); }
/* Closed drawer must be display:none — a fixed off-screen element escapes root overflow:clip and causes horizontal scroll on mobile. */
.mobile-drawer[hidden] { display: none; }
.drawer-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-light);
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; gap: 2px; }
.drawer-nav a:not(.drawer-cta) {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  padding: 15px 6px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.drawer-nav a:not(.drawer-cta):hover { color: var(--green-dark); text-decoration: none; }
.drawer-cta { margin-top: 22px; }
body.drawer-open { overflow: hidden; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d4a1d 0%, #136427 50%, #1a7332 100%);
  color: #fff;
  /* extra bottom padding so the trust bar overlaps cleanly */
  padding: 60px 0 130px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.07) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: 0 0;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.2) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.2) 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}
.hero-glow--a {
  top: -220px;
  inset-inline-end: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(96,184,103,0.32) 0%, transparent 65%);
}
.hero-glow--b {
  bottom: -280px;
  inset-inline-start: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(200,155,60,0.18) 0%, transparent 65%);
}

.hero-container {
  position: relative;
  z-index: 1;
}

/* Founder photo badge — circular avatar at hero top */
.hero-photo-badge {
  width: 132px;
  height: 132px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 4px 12px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero-photo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

/* Eyebrow pill */
.hero-eyebrow-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
/* סגנון ה-CTA של ההירו (.btn + .btn--accent + .hero-cta) — אותו זהב, אותו טקסט
   ואותו זוהר — אבל ריפוד נמוך יותר, כי כ-label הוא צריך להיות דק מהכפתור.
   בלי :hover: זהו label ולא כפתור. אם משנים את מראה ה-CTA, לעדכן גם כאן. */
.hero-pill {
  position: relative;
  display: inline-block;
  font-family: var(--font-sans);
  background: var(--gold);
  border: 2px solid transparent;
  color: #1c1305;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow:
    0 14px 32px rgba(200, 155, 60, 0.4),
    0 4px 10px rgba(200, 155, 60, 0.2);
}
/* טבעת זהב שנפתחת פעמיים אחרי כניסת ההירו ואז נחה — מושכת את העין בלי לולאה אינסופית */
.hero-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-pill::after {
    animation: pillPing 2.4s var(--ease-out-quint) 1.05s 2 both;
  }
}
@keyframes pillPing {
  0%   { box-shadow: 0 0 0 0 rgba(233, 201, 122, 0.45); }
  60%  { box-shadow: 0 0 0 14px rgba(233, 201, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 201, 122, 0); }
}

/* Two-column hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}
/* Hero without a video — single centered column */
.hero-grid--solo { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
.hero-grid--solo .hero-copy { text-align: center; }
.hero-grid--solo .hero-lede { max-width: 620px; margin-inline: auto; }
.hero-grid--solo .hero-actions { justify-content: center; }

/* Video card (LEFT) */
.hero-video {
  position: relative;
}
.hero-video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0a2c14;
  cursor: pointer;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 8px 22px rgba(0, 0, 0, 0.28),
    0 0 0 6px rgba(255, 255, 255, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-video-thumb:hover {
  transform: translateY(-3px);
  box-shadow:
    0 38px 80px rgba(0, 0, 0, 0.5),
    0 10px 26px rgba(0, 0, 0, 0.3),
    0 0 0 6px rgba(255, 255, 255, 0.1);
}
.hero-video-thumb:hover .hero-video-play { transform: translate(-50%, -50%) scale(1.07); }

.hero-video-poster {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(96,184,103,0.35) 0%, transparent 55%),
    linear-gradient(135deg, #0a2c14 0%, #103e1c 55%, #1a5a28 100%);
}
.hero-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
}

.hero-video-play {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
  transition: transform .2s ease;
  z-index: 1;
}
.hero-video-play svg { width: 100%; height: 100%; }

.hero-video-tag {
  position: absolute;
  bottom: 14px;
  inset-inline-start: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

/* Copy (RIGHT) */
.hero-copy {
  color: #fff;
  text-align: start;
}
.hero-title {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.18;
  margin: 0 0 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-title-accent {
  color: var(--gold-soft);
  display: inline;
  font-weight: 900;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 30px;
  font-weight: 400;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-cta {
  font-size: 17px;
  font-weight: 700;
  padding: 19px 34px;
  border-radius: 999px;
  box-shadow:
    0 14px 32px rgba(200, 155, 60, 0.4),
    0 4px 10px rgba(200, 155, 60, 0.2);
}
.hero-cta:hover {
  box-shadow:
    0 18px 40px rgba(200, 155, 60, 0.5),
    0 6px 14px rgba(200, 155, 60, 0.25);
}

.check {
  width: 18px; height: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Portrait fallback (still used in about section) */
.portrait-fallback-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 64px;
  color: rgba(255,255,255,0.95);
  pointer-events: none;
  text-align: center;
  padding: 16px;
}
.portrait-fallback-text--lg { font-size: 44px; line-height: 1.2; }

/* ============ FLOATING TRUST BAR ============ */
.hero-trustbar-wrap {
  position: relative;
  z-index: 5;
  margin-top: 56px;
  /* This pulls the bar down so it overlaps the next section by ~50% */
  margin-bottom: -68px;
}
.trustbar {
  background: #fff;
  border-radius: 22px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-shadow:
    0 30px 60px rgba(13, 74, 29, 0.18),
    0 8px 20px rgba(13, 74, 29, 0.1),
    0 0 0 1px rgba(13, 74, 29, 0.04);
}
.trustbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 6px 8px;
  position: relative;
}
.trustbar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14%;
  bottom: 14%;
  inset-inline-start: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
.trustbar-icon {
  color: #ffffff;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
  border-radius: 12px;
  flex-shrink: 0;
}
.trustbar-icon svg { width: 26px; height: 26px; }
.trustbar-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.3;
}

/* ============ VIDEO MODAL ============ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal[hidden] { display: none; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 12, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  z-index: 1;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  inset-inline-end: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.22); }
.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Vertical (YouTube Shorts) variant of the modal */
.video-modal.is-vertical .video-modal-inner { max-width: 400px; }
.video-modal.is-vertical .video-modal-frame { aspect-ratio: 9 / 16; }
body.modal-open { overflow: hidden; }

/* ============ PAIN / EMPATHY ============ */
.pain {
  padding: 100px 0;
  background: var(--bg-light);
}
.pain-title {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 900;
  text-align: center;
  margin: 0 auto 14px;
  max-width: 720px;
}
.pain-intro {
  text-align: center;
  font-size: 19px;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-list li {
  position: relative;
  padding-inline-start: 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.pain-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 4px;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}
.pain-bridge {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto;
  text-wrap: balance;
}
.pain-bridge strong { color: var(--green-dark); }
.pain-tried {
  max-width: 720px;
  margin: 44px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  text-align: center;
}
.pain-tried-title {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--coral);
  margin-bottom: 14px;
  text-align: center;
}
.pain-tried p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.pain-tried-punch {
  font-weight: 700;
  color: var(--ink) !important;
  margin-bottom: 0 !important;
}
.pain-tried-cta {
  font-size: clamp(19px, 2.4vw, 23px) !important;
  font-weight: 800;
  color: var(--green-dark) !important;
  line-height: 1.4;
  margin: 20px 0 0 !important;
}

/* ============ SHIFT (before/after) ============ */
.shift {
  /* Extra top padding so the overlapping hero trust bar doesn't collide */
  padding: 130px 0 100px;
  background: #fff;
}
.shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.shift-col {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.shift-col--after {
  background: linear-gradient(160deg, #fff 0%, var(--bg-light) 100%);
  border-color: rgba(96, 184, 103, 0.3);
  box-shadow: 0 16px 50px rgba(96, 184, 103, 0.08);
}
.shift-col-head { margin-bottom: 22px; text-align: center; }
.shift-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  margin-bottom: 12px;
}
.shift-tag--after {
  background: var(--green-dark);
  color: #fff;
}
.shift-col h3 {
  font-size: 24px;
  margin: 0;
}
.shift-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shift-list li {
  position: relative;
  padding-inline-start: 30px;
  padding-block: 12px;
  border-bottom: 1px dashed var(--line);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.shift-list li:last-child { border-bottom: none; }
.shift-list li::before {
  content: "✕";
  position: absolute;
  inset-inline-start: 0;
  top: 14px;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #c44;
  background: rgba(204,68,68,0.1);
  border-radius: 50%;
}
.shift-list--after li::before {
  content: "✓";
  color: #fff;
  background: var(--green);
}
.shift-list--after li em {
  font-style: normal;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(96,184,103,0.14);
  padding: 1px 6px;
  border-radius: 4px;
}
.shift-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============ CALL ============ */
.call {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.call::before {
  content: "";
  position: absolute;
  top: -200px;
  inset-inline-end: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,155,60,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.call-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 980px;
  margin: 0 auto;
}
.call-copy { text-align: center; max-width: 720px; margin: 0 auto; }
.call-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  counter-reset: call;
}
.call-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.call-item:nth-child(5) {
  grid-column: 1 / -1;
  background: rgba(200,155,60,0.12);
  border-color: rgba(200,155,60,0.3);
}
.call-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(96, 184, 103, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.call-item h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}
.call-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.call-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.call-cta-note {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  font-style: italic;
}

/* ============ Program — how the accompaniment is built ============ */
.program {
  padding: 100px 0;
  background: var(--bg-light);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
}
.program-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease-out-quint), box-shadow .25s var(--ease-out-quint);
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.program-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(96, 184, 103, 0.14);
  color: var(--green-dark);
}
.program-card-title {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}
.program-card-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 960px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
}
@media (max-width: 540px) {
  .program { padding: 72px 0; }
  .program-grid { grid-template-columns: 1fr; max-width: 460px; gap: 18px; }
  .program-card { padding: 30px 24px; }
}

/* ============ ABOUT ============ */
.about {
  padding: 100px 0;
  background: var(--paper-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 420px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-image .portrait-fallback-text {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
}
.about-image img.portrait-fallback + .portrait-fallback-text { display: flex; }
.about-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.about-copy em {
  font-style: italic;
  font-weight: 600;
  color: var(--green-dark);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 100px 0;
  background: #fff;
}

/* ============ VIDEO TESTIMONIALS (Shorts) ============ */
.vt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vt-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.vt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,20,12,0.38) 100%);
  pointer-events: none;
  z-index: 1;
}
.vt-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.94);
  color: var(--green-dark);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform .2s ease, background .2s ease;
  z-index: 2;
}
.vt-card:hover .vt-play { transform: scale(1.08); background: #fff; }
.vt-play svg { margin-inline-start: 3px; }

/* ============ WHATSAPP TESTIMONIALS (real screenshots) ============ */
.wa-block { margin-top: 64px; }
.wa-title {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--ink);
}
/* Auto-scrolling panoramic marquee of WhatsApp screenshots */
.wa-shots {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  direction: ltr;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.wa-track {
  display: flex;
  direction: ltr;
  gap: 18px;
  width: max-content;
  padding-inline: 9px;
  animation: waScroll 48s linear infinite;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
/* When JS takes over, it removes the CSS animation and drives the transform */
.wa-track.js-marquee { animation: none; }
.wa-track.dragging { cursor: grabbing; }
.wa-shot {
  flex: 0 0 auto;
  height: 230px;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.wa-shot img {
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
@keyframes waScroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ============ GUARANTEE (risk-reversal) ============ */
.guarantee {
  padding: 100px 0;
  background: var(--bg-light);
}
.guarantee-head { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.guarantee-title {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 900;
  line-height: 1.14;
}
.accent-coral { color: var(--coral); }
.accent-green { color: var(--green-dark); }
.guarantee-card {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 135%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 54px 48px 46px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.guarantee-card::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 65%);
  top: -120px; inset-inline-start: -80px;
  pointer-events: none;
}
.guarantee-seal {
  position: relative;
  width: fit-content;
  margin: 0 auto 22px;
  color: #fff;
}
.guarantee-sticker {
  position: absolute;
  inset-inline-start: -52px;
  bottom: -12px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--gold);
  color: #1c1305;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.05;
  transform: rotate(-13deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  border: 2px dashed rgba(28, 19, 5, 0.4);
}
.guarantee-card-title {
  position: relative;
  color: #fff;
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 auto 16px;
  max-width: 660px;
}
.guarantee-card-text {
  position: relative;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 18px;
}
.guarantee-card-text--punch {
  font-weight: 800;
  color: #fff;
  margin-bottom: 34px;
}
.guarantee-badges {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.guarantee-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 22px 30px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.guarantee-badge--accent { background: #fff; border-color: #fff; }
.guarantee-badge-num {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: var(--gold-soft);
}
.guarantee-badge--accent .guarantee-badge-num { color: var(--green-dark); }
.g-unit { font-size: 0.55em; font-weight: 800; }
.guarantee-badge-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,0.85);
}
.guarantee-badge--accent .guarantee-badge-label { color: var(--ink-3); }

/* Guarantee examples — before/after scenarios under the badges */
.guarantee-examples {
  position: relative;
  margin: 30px auto 0;
  max-width: 600px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.guarantee-example {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.guarantee-example b { color: var(--gold-soft); font-weight: 800; }
.guarantee-examples-punch {
  margin: 4px 0 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(20px, 4.5vw, 26px);
  color: #fff;
}

/* ============ FAQ ============ */
.faq {
  padding: 100px 0;
  background: var(--bg-light);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq-head { position: sticky; top: 100px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s ease, background .2s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--green-dark);
  color: #fff;
}
.faq-body {
  padding: 0 26px 24px;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 16px;
}

/* ============ FORM ============ */
.form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}
.form-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.form-card--success {
  grid-template-columns: 1fr;
  background: linear-gradient(160deg, var(--bg-light) 0%, #ffffff 100%);
}
.form-copy {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: #fff;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.form-copy::after {
  content: "";
  position: absolute;
  bottom: -100px;
  inset-inline-start: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,155,60,0.2) 0%, transparent 70%);
}
.form-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  color: #fff;
  margin: 8px 0 14px;
  line-height: 1.2;
}
.form-sub {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.form-promises {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.form-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}
.form-promises .check {
  background: var(--gold);
  color: #1c1305;
}

.lead-form {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lead-form[hidden] { display: none; }

/* Honeypot — שדה אנטי-ספאם. מוסתר בשיטת clip (visually-hidden) ולא ב-left:-9999px,
   כי off-screen positioning מתח את הדף 9999px וגרם לגלילה אופקית במובייל. בוטים עדיין ממלאים (השדה ב-DOM). */
.hp-field { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
}
/* כל סוג input חדש בטופס חייב להתווסף כאן — אחרת הוא נופל לעיצוב
   ברירת המחדל של הדפדפן ונראה זר מול שאר השדות. */
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.field input::placeholder { color: #a8b3ad; }
.field input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.field.has-error input { border-color: #c44; background: #fff5f5; }
.field-error {
  font-size: 13px;
  color: #c44;
  font-weight: 500;
  min-height: 16px;
}

/* Preferred-time radio chips */
.field--time {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--time legend {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  padding: 0;
}
.time-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.time-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px;
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.time-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.time-option:has(input:checked) {
  border-color: var(--green-dark);
  background: var(--bg-light);
  color: var(--green-dark);
}
.time-option:has(input:focus-visible) {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.field--time.has-error legend { color: #c44; }
.field--time.has-error .time-option { border-color: #c44; }
.success-survey-btn {
  margin-top: 14px;
  text-decoration: none !important;
}

.field--checkbox {
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.checkbox-box {
  width: 20px; height: 20px;
  border: 2px solid var(--line-2);
  border-radius: 5px;
  background: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all .15s ease;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-box {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-box::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-box {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.checkbox-label a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.field--checkbox.has-error .checkbox-box { border-color: #c44; }
.form-title-arrow { color: var(--gold); }

.form-fineprint {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin: 0;
}
.form-fineprint a { color: var(--green-dark); text-decoration: underline; }

/* Form success */
.form-success {
  padding: 70px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  grid-column: 1 / -1;
}
.form-success[hidden] { display: none; }
.success-icon { color: var(--green); margin-bottom: 8px; }
.form-success h3 {
  font-size: 28px;
  color: var(--ink);
}
.form-success p { color: var(--ink-2); margin: 0; font-size: 17px; }
.success-meta { color: var(--ink-3) !important; font-size: 14px !important; margin-top: 8px !important; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 26px 0;
  text-align: center;
}
.footer-rights {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  inset-inline: max(16px, env(safe-area-inset-right, 0px)) max(16px, env(safe-area-inset-left, 0px));
  background: var(--gold);
  color: #1c1305;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 22px;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15,26,20,0.25);
  z-index: 40;
  text-decoration: none !important;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero {
    padding: 50px 0 80px;
  }
  .hero-photo-badge {
    width: 108px;
    height: 108px;
    margin: 0 auto 20px;
    border-width: 3px;
  }
  /* כמו .hero-cta במובייל, בריפוד אנכי מוקטן */
  .hero-pill {
    font-size: 16px;
    padding: 11px 20px;
  }
  .hero-eyebrow-wrap { margin-bottom: 20px; }

  /* Video stacks ABOVE copy on mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }

  /* Trust bar reflows to 2x2; overlap reduced */
  .hero-trustbar-wrap {
    margin-top: 44px;
    margin-bottom: 0; /* no overlap on mobile — sits fully under hero */
  }
  .trustbar {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
    gap: 8px;
  }
  .trustbar-item { padding: 10px 6px; }
  .trustbar-item:not(:last-child)::after { display: none; }
  .trustbar-item:nth-child(2n)::after { display: none; }

  .pain, .shift, .call, .about, .testimonials, .guarantee, .faq, .form-section { padding: 64px 0; }
  .pain-tried { padding: 28px 22px; }
  .vt-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .guarantee-card { padding: 40px 24px 36px; }
  .guarantee-badge { min-width: 0; flex: 1 1 100%; }
  .shift-grid { grid-template-columns: 1fr; gap: 16px; }
  .shift-arrow { transform: rotate(-90deg); margin: -10px auto; }
  .shift-arrow svg { width: 60px; height: 60px; }

  .call-list { grid-template-columns: 1fr; }
  .call-item:nth-child(5) { grid-column: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 320px; margin: 0 auto; }

  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-head { position: static; text-align: center; }

  .form-card { grid-template-columns: 1fr; }
  .form-copy, .lead-form { padding: 36px 28px; }

  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }

  .sticky-cta { display: flex; }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }

  .video-modal-close { top: -42px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding-inline: max(18px, env(safe-area-inset-right, 0px)) max(18px, env(safe-area-inset-left, 0px)); }
  .hero { padding: 40px 0 64px; }
  .hero-title { font-size: 28px; line-height: 1.22; }
  .hero-lede { font-size: 17px; }
  /* אין כאן override ל-.hero-pill בכוונה — ה-CTA לא מקטין ב-480, והפיל תואם לו. */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-cta { padding: 16px 22px; font-size: 16px; }
  .hero-video-play { width: 64px; height: 46px; }
  .trustbar { padding: 18px 14px; }
  .trustbar-label { font-size: 13px; }
  .trustbar-icon { width: 40px; height: 40px; }
  .trustbar-icon svg { width: 22px; height: 22px; }
  .shift-col, .form-copy, .lead-form { padding: 28px 22px; }
  .form-success { padding: 50px 24px; }
  .wa-shot { height: 180px; }
  .header-cta { padding: 11px 16px; font-size: 13px; min-height: 44px; }
}

/* ============ Touch targets (coarse pointers / mobile) ============ */
@media (pointer: coarse) {
  /* Minimum 44x44 tap area for text links and the header CTA */
  .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .header-cta { min-height: 44px; }
}

/* ============ A11y / motion ============ */
/* ============================================
   MOTION — animate + delight
   All entrance/reveal motion is gated behind
   (prefers-reduced-motion: no-preference) so the
   no-JS / reduced-motion default is fully visible.
   ============================================ */

/* Button press feedback (all primary buttons) */
.btn { will-change: auto; }
.btn:active { transform: translateY(1px) scale(0.985); }
.sticky-cta:active { transform: translateY(1px) scale(0.99); }

/* Checkbox + time-option satisfying check pulse */
@media (prefers-reduced-motion: no-preference) {
  .checkbox-label input[type="checkbox"]:checked + .checkbox-box { animation: pop 0.28s var(--ease-out-quint); }
  .time-option:has(input:checked) { animation: pop 0.28s var(--ease-out-quint); }
}
@keyframes pop {
  0% { transform: scale(0.86); }
  60% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* Hero play button: gentle invite pulse */
@media (prefers-reduced-motion: no-preference) {
  .hero-video-play { animation: playPulse 2.6s var(--ease-out-quint) infinite; }
  .hero-video-thumb:hover .hero-video-play { animation: none; }
}
@keyframes playPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}

/* Hero entrance (the signature load animation) */
@media (prefers-reduced-motion: no-preference) {
  .hero-photo-badge,
  .hero-eyebrow-wrap,
  .hero-grid {
    opacity: 0;
    animation: heroIn 0.7s var(--ease-out-quint) both;
  }
  .hero-photo-badge { animation-delay: 0.05s; }
  .hero-eyebrow-wrap { animation-delay: 0.16s; }
  .hero-grid { animation-delay: 0.28s; }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Scroll-reveal for list groups (JS adds .will-reveal then .is-revealed).
   No JS / reduced motion = no .will-reveal class = fully visible. */
.will-reveal { opacity: 0; transform: translateY(14px); }
.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease-out-quint), transform 0.55s var(--ease-out-quint);
  transition-delay: calc(var(--i, 0) * 70ms);
}

/* Guarantee gold sticker: stamp-in when revealed */
.guarantee-sticker.will-reveal { opacity: 0; transform: rotate(-13deg) scale(1.5); }
.guarantee-sticker.is-revealed {
  opacity: 1;
  transform: rotate(-13deg) scale(1);
  transition: opacity 0.3s ease-out, transform 0.4s var(--ease-out-expo);
}

/* Success: checkmark draw + card pop */
@media (prefers-reduced-motion: no-preference) {
  .form-success:not([hidden]) { animation: successPop 0.45s var(--ease-out-quint); }
  .form-success:not([hidden]) .success-icon path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.5s var(--ease-out-quint) 0.15s forwards;
  }
}
@keyframes successPop {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  /* Marquee paused: let users swipe/scroll the screenshots instead */
  .wa-track { transform: none !important; }
  .wa-shots { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* Print */
@media print {
  .site-header, .sticky-cta { display: none; }
  body { color: #000; background: #fff; }
}
