/* ==========================================================================
   BOOST — הסוויץ' המנטלי — Landing Page
   ========================================================================== */

@font-face {
  font-family: "Noto Sans Hebrew";
  src: url("../assets/font/NotoSansHebrew-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Hebrew";
  src: url("../assets/font/NotoSansHebrew-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Hebrew";
  src: url("../assets/font/NotoSansHebrew-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Hebrew";
  src: url("../assets/font/NotoSansHebrew-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Hebrew";
  src: url("../assets/font/NotoSansHebrew-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  /* צבעים — ספר המותג של BOOST */
  --color-bg-dark:    #000000;
  --color-bg-light:   #EDE5D9;
  --color-primary:    #1FA6B0;
  --color-accent:     #FFD64F;
  --color-text-dark:  #000000;
  --color-text-light: #FFFFFF;
  --color-muted:      #6E6A63;
  --color-secondary:  #0361E3;

  --font-main: "Noto Sans Hebrew", system-ui, sans-serif;

  --container-w: 1160px;
  --radius: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }
input, textarea { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; position: relative; }

.section-dark   { background: var(--color-bg-dark);  color: var(--color-text-light); }
.section-light  { background: var(--color-bg-light); color: var(--color-text-dark); }
.section-accent { background: var(--color-accent);   color: var(--color-text-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--color-text-light);
  background: rgba(255,255,255,.06);
}
.section-light .eyebrow,
.section-accent .eyebrow {
  color: var(--color-text-dark);
  border-color: rgba(0,0,0,.15);
  background: rgba(0,0,0,.04);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 640px;
}
.section-light .section-sub { color: var(--color-muted); }
.section-dark .section-sub  { color: rgba(255,255,255,.65); }

.section-head {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-accent {
  background: var(--color-accent);
  color: #1A1300;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(255, 214, 79, .55);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--color-text-light);
}
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 28px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header img { height: 30px; width: auto; }
.header-cta {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.25);
  padding: 10px 18px;
  border-radius: 100px;
  transition: background .2s var(--ease);
}
.header-cta:hover { background: rgba(255,255,255,.08); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 72px;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(31,166,176,.20), transparent 55%),
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url("../assets/img/hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  background-position: center, center, 2% center;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero {
    background-image:
      radial-gradient(circle at 85% 15%, rgba(31,166,176,.20), transparent 55%),
      linear-gradient(to left, rgba(0,0,0,.8) 0%, rgba(0,0,0,.66) 45%, rgba(0,0,0,.38) 100%),
      url("../assets/img/hero-bg.webp");
    background-position: center, center, 8% 32%;
  }
}
.hero .container {
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content .eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  color: var(--color-text-light);
  margin-bottom: 10px;
}
.hero-en {
  display: block;
  font-family: system-ui, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(.85rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; opacity: .8; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.switch-graphic { width: 100%; max-width: 320px; }

/* ---------- Section 2 — The Shift ---------- */
.cards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.15); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(31,166,176,.12);
  color: var(--color-primary);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--color-muted); font-size: .95rem; }

/* ---------- Section 3 — Insight ---------- */
.insight {
  background: radial-gradient(circle at 50% 0%, rgba(31,166,176,.18), transparent 60%), var(--color-bg-dark);
  text-align: center;
}
.insight blockquote {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-text-light);
}
.insight blockquote em {
  font-style: normal;
  color: var(--color-accent);
}

/* ---------- Section 4 — Value Chain Timeline ---------- */
.timeline-summary { text-align: center; margin-top: 44px; font-weight: 600; font-size: 1.05rem; }
.timeline {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  position: relative;
}
.timeline-track {
  position: relative;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 2px;
  bottom: 26px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(255,214,79,.15));
}
.timeline-step {
  position: relative;
  padding-right: 64px;
}
.timeline-step .step-dot {
  position: absolute;
  right: 0; top: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-bg-light);
  border: 2px solid var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-dark);
}
.timeline-step .step-dot svg { width: 24px; height: 24px; }
.timeline-step .step-num {
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 4px;
}
.timeline-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-step p { color: var(--color-muted); font-size: .92rem; }

/* ---------- Section 5 — The Switch ---------- */
.switch-section .container {
  display: grid;
  gap: 40px;
  align-items: center;
}
.switch-text blockquote {
  font-size: 1.15rem;
  line-height: 1.75;
  margin: 20px 0 22px;
}
.switch-text .basis-note {
  font-size: .85rem;
  color: var(--color-muted);
  border-right: 3px solid var(--color-primary);
  padding-right: 14px;
}
.switch-diagram { display: flex; justify-content: center; }
.switch-diagram svg { width: 100%; max-width: 300px; }

/* ---------- Section 6 — Takeaways ---------- */
.takeaways-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.takeaway-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.takeaway-item .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #1A1300;
  display: flex; align-items: center; justify-content: center;
}
.takeaway-item .check svg { width: 15px; height: 15px; }
.takeaway-item p { font-size: 1rem; color: rgba(255,255,255,.9); }

/* ---------- Section 7 — Details bar ---------- */
.details-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 36px;
}
.details-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
@media (min-width: 900px) {
  .details-photo { aspect-ratio: 3 / 1; }
}
.details-bar {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  text-align: center;
}
.detail-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.detail-item .detail-icon svg { width: 32px; height: 32px; }
.detail-item strong { font-size: 1.05rem; }
.detail-item span { font-size: .85rem; opacity: .75; }

/* ---------- Section 8 — Guy ---------- */
.guy-section .container {
  display: grid;
  gap: 40px;
  align-items: center;
}
.guy-photo { position: relative; }
.guy-photo > img:first-child {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.guy-photo-inset {
  position: absolute;
  bottom: -20px;
  right: -16px;
  width: 46%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid var(--color-bg-light);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.4);
}
.guy-name { font-size: 1.6rem; margin-bottom: 4px; }
.guy-role { color: var(--color-primary); font-weight: 600; margin-bottom: 16px; display: block; }
.guy-bio { color: var(--color-muted); font-size: 1rem; line-height: 1.8; }

/* ---------- Section 9 — Social proof ---------- */
.logos-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-chip img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .6;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.logo-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -16px rgba(0,0,0,.2);
}
.logo-chip:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.quotes-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 48px; }
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(0,0,0,.06);
}
.quote-card p { font-size: 1rem; margin-bottom: 16px; }
.quote-card footer { font-size: .85rem; color: var(--color-muted); font-weight: 600; }

/* ---------- Section 2.5 — Podcast strip ---------- */
.podcast-section { padding-top: 0; }
.podcast-strip {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 32px;
}
.podcast-info {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1 1 380px;
}
.podcast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
}
.podcast-icon svg { width: 26px; height: 26px; }
.podcast-eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.podcast-info h3 { font-size: 1.25rem; margin-bottom: 8px; }
.podcast-info p { color: var(--color-muted); font-size: .95rem; line-height: 1.6; margin-bottom: 18px; max-width: 46ch; }
.podcast-btn { width: fit-content; }
.podcast-embed iframe { display: block; width: 100%; border-radius: 12px; }

/* ---------- Section 9.5 — Video testimonials ---------- */
.video-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
  border-radius: var(--radius);
}
.video-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  background:
    radial-gradient(circle at 30% 20%, rgba(31,166,176,.35), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(255,214,79,.25), transparent 55%),
    var(--color-bg-dark);
  transition: transform .3s var(--ease);
}
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-bg-dark);
}
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #1A1300;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.5);
  transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s;
}
.play-btn svg { width: 22px; height: 22px; margin-right: -2px; }
.video-card:hover .video-thumb { transform: translateY(-4px); }
.video-card:hover .play-btn { transform: scale(1.08); }
.video-card.is-playing .play-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-card.is-playing .video-thumb { transform: none; }
.video-meta { display: flex; flex-direction: column; gap: 2px; padding: 0 4px; }
.video-meta strong { font-size: 1rem; }
.video-meta span { font-size: .85rem; color: var(--color-muted); }

/* ---------- Section 10 — Form ---------- */
.form-section .section-head { margin-bottom: 40px; }
.lead-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .85rem; color: rgba(255,255,255,.7); }
.field label .req { color: var(--color-accent); }
.field input, .field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--color-text-light);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,.09);
}
.field.has-error input, .field.has-error textarea { border-color: #e05a5a; }
.field-error { font-size: .78rem; color: #ff9b9b; min-height: 1em; }
.lead-form .btn-accent { width: 100%; margin-top: 8px; padding: 18px; font-size: 1.05rem; }
.form-note { font-size: .78rem; color: rgba(255,255,255,.45); text-align: center; margin-top: 4px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  background: rgba(255,214,79,.08);
  border: 1px solid rgba(255,214,79,.3);
  border-radius: var(--radius);
}
.form-success.visible { display: block; }
.form-success svg { width: 46px; height: 46px; color: var(--color-accent); margin-bottom: 14px; }
.form-success h3 { color: var(--color-text-light); margin-bottom: 6px; }
.form-success p { color: rgba(255,255,255,.65); }
.lead-form.hidden { display: none; }

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0 32px; }
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer-top img { height: 26px; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: 8px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--color-text-light); }
.footer-links a svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  transform: translateY(120%);
  transition: transform .35s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; box-shadow: 0 10px 30px -6px rgba(0,0,0,.4); }

/* ---------- Fade-in on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible { transition-delay: var(--delay, 0ms); }

/* ==========================================================================
   Tablet / Desktop
   ========================================================================== */
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .takeaways-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .details-bar { grid-template-columns: repeat(2, 1fr); }
  .logos-strip { grid-template-columns: repeat(5, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .podcast-strip { flex-direction: row; align-items: center; }
  .podcast-embed { flex: 1 1 320px; }
}

@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1.15fr .85fr; }
  .switch-section .container { grid-template-columns: 1fr .8fr; }
  .guy-section .container { grid-template-columns: .8fr 1.2fr; }
  .details-bar { grid-template-columns: repeat(4, 1fr); }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }

  .timeline-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .timeline-track::before {
    top: 26px; right: 12.5%; left: 12.5%; bottom: auto;
    height: 2px; width: auto;
    background: linear-gradient(to left, var(--color-accent), rgba(255,214,79,.15));
  }
  .timeline-step { padding-right: 0; padding-top: 76px; text-align: center; }
  .timeline-step .step-dot { right: 50%; transform: translateX(50%); top: 0; }
  .sticky-cta { display: none; }
  .logos-strip { grid-template-columns: repeat(8, 1fr); }
  .video-grid { grid-template-columns: repeat(4, 1fr); }
  .quotes-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hero h1 { letter-spacing: -.01em; }
}
