/* ════════════════════════════════════════════════════════════
   כל אחד יכול להיות חזאי · דף הבית · גרסת קלוד
   קונספט: הדף הוא מסע אחד — מבוקר שמשי, דרך שקיעה, אל החלל
   ════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Polin';
  src: url('fonts/Polin-Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

:root {
  /* פלטה */
  --day-top: #6ECBF0;
  --day: #8FD8F4;
  --warm: #FFE3A1;
  --sunset: #FFAA63;
  --dusk: #8A5BAE;
  --night: #2B2272;
  --space: #120E3F;
  --deep-space: #0B0830;

  --cream: #FFF6E3;
  --cream-2: #FFEFD0;
  --gold: #FFC94D;
  --gold-deep: #F5A623;
  --orange: #FF8A3C;
  --coral: #FF6B6B;
  --turquoise: #35C7C0;
  --sky-blue: #2B7EC1;
  --ink: #2A2070;
  --ink-soft: #4A3E8E;

  --font-display: 'Polin', 'Assistant', sans-serif;
  --font-body: 'Assistant', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --card-border: 3px solid var(--ink);
  --card-shadow: 0 10px 0 rgba(42, 32, 112, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: clip;
  position: relative;
  background: var(--day);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* ─────────── רקע המסע: יום → שקיעה → חלל ─────────── */
.journey-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(
    180deg,
    var(--day-top) 0%,
    var(--day) 14%,
    var(--warm) 26%,
    var(--sunset) 36%,
    var(--dusk) 48%,
    var(--night) 62%,
    var(--space) 78%,
    var(--deep-space) 100%
  );
}

.starfield {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.starfield .star {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #FFEFB7;
  opacity: 0;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(0.7); }
  50% { opacity: var(--max-op, 0.9); transform: scale(1.15); }
}

/* ─────────── השביל הזהוב ─────────── */
.golden-path {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
}
.gp-glow {
  stroke: rgba(255, 201, 77, 0.28);
  stroke-width: 26;
  stroke-linecap: round;
  filter: blur(8px);
}
.gp-line {
  stroke: url(#pathGold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 2 26;
}

/* ─────────── ניווט עליון ─────────── */
.topnav {
  position: fixed;
  top: 14px;
  right: 50%;
  transform: translateX(50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 246, 227, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(42, 32, 112, 0.18);
  white-space: nowrap;
  transition: transform 0.5s var(--ease-out), opacity 0.4s;
}
.topnav.hidden-nav { transform: translateX(50%) translateY(-130%); opacity: 0; }
.topnav-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding-right: 8px;
}
.topnav-links { display: flex; gap: 18px; font-weight: 700; font-size: 0.95rem; }
.topnav-links a { position: relative; }
.topnav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 0;
  width: 100%; height: 2.5px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.topnav-links a:hover::after { transform: scaleX(1); transform-origin: right; }

/* ─────────── כפתורים ─────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(180deg, #FFD56B, var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 6px 0 var(--ink), 0 14px 30px rgba(245, 166, 35, 0.45);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 9px 0 var(--ink), 0 18px 36px rgba(245, 166, 35, 0.55); }
.btn-primary:active { transform: translateY(2px) scale(0.98); box-shadow: 0 3px 0 var(--ink); }
.btn-ghost {
  background: rgba(255, 246, 227, 0.18);
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 6px 0 rgba(255, 246, 227, 0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255, 246, 227, 0.3); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 6px 0 rgba(42, 32, 112, 0.25);
}
.btn-ghost-dark:hover { transform: translateY(-3px); background: rgba(42, 32, 112, 0.06); }
.btn-small { font-size: 0.92rem; padding: 9px 20px; box-shadow: 0 4px 0 var(--ink); background: linear-gradient(180deg, #FFD56B, var(--gold-deep)); }
.btn-small:hover { transform: translateY(-2px); }
.btn-big { font-size: 1.35rem; padding: 18px 46px; }

/* ─────────── הירו ─────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 20px 110px;
  text-align: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: url('assets/hero.webp') center / cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(13, 10, 51, 0.18) 0%, rgba(13, 10, 51, 0.42) 75%),
    linear-gradient(180deg, rgba(13, 10, 51, 0.25) 0%, transparent 28%, transparent 62%, var(--day-top) 99%);
}

.hero-sky { position: absolute; inset: 0; pointer-events: none; }

/* שמש מחייכת */
.sun {
  position: absolute;
  top: 9%; right: 7%;
  width: 110px; height: 110px;
}
.sun-rays {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold) 0deg 12deg, transparent 12deg 30deg,
    var(--gold) 30deg 42deg, transparent 42deg 60deg,
    var(--gold) 60deg 72deg, transparent 72deg 90deg,
    var(--gold) 90deg 102deg, transparent 102deg 120deg,
    var(--gold) 120deg 132deg, transparent 132deg 150deg,
    var(--gold) 150deg 162deg, transparent 162deg 180deg,
    var(--gold) 180deg 192deg, transparent 192deg 210deg,
    var(--gold) 210deg 222deg, transparent 222deg 240deg,
    var(--gold) 240deg 252deg, transparent 252deg 270deg,
    var(--gold) 270deg 282deg, transparent 282deg 300deg,
    var(--gold) 300deg 312deg, transparent 312deg 330deg,
    var(--gold) 330deg 342deg, transparent 342deg 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 53%);
  mask: radial-gradient(circle, transparent 52%, #000 53%);
  animation: sunSpin 36s linear infinite;
  opacity: 0.9;
}
@keyframes sunSpin { to { transform: rotate(360deg); } }
.sun-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #FFE9A0, var(--gold) 58%, var(--gold-deep));
  box-shadow: 0 0 50px rgba(255, 201, 77, 0.65);
}
.sun-eye {
  position: absolute;
  top: 40%;
  width: 9px; height: 13px;
  border-radius: 50%;
  background: var(--ink);
}
.sun-eye-r { right: 30%; }
.sun-eye-l { left: 30%; }
.sun-smile {
  position: absolute;
  bottom: 26%; right: 50%;
  transform: translateX(50%);
  width: 34px; height: 17px;
  border: 4px solid var(--ink);
  border-top: none;
  border-radius: 0 0 34px 34px;
}

/* עננים */
.cloud {
  position: absolute;
  background: rgba(255, 250, 238, 0.95);
  border-radius: 999px;
  filter: drop-shadow(0 8px 18px rgba(42, 32, 112, 0.12));
}
.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.cloud-1 { top: 18%; left: 6%; width: 130px; height: 44px; animation: drift 9s ease-in-out infinite alternate; }
.cloud-1::before { width: 60px; height: 60px; top: -30px; left: 22px; }
.cloud-1::after { width: 44px; height: 44px; top: -20px; left: 64px; }
.cloud-2 { top: 64%; right: 4%; width: 110px; height: 38px; opacity: 0.85; animation: drift 12s ease-in-out infinite alternate-reverse; }
.cloud-2::before { width: 50px; height: 50px; top: -25px; left: 18px; }
.cloud-2::after { width: 38px; height: 38px; top: -17px; left: 54px; }
.cloud-3 { top: 30%; left: 78%; width: 90px; height: 32px; opacity: 0.7; animation: drift 10s ease-in-out infinite alternate; }
.cloud-3::before { width: 42px; height: 42px; top: -21px; left: 15px; }
.cloud-3::after { width: 30px; height: 30px; top: -13px; left: 46px; }
@keyframes drift { from { transform: translateX(-14px); } to { transform: translateX(20px); } }

/* הלוגו */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo {
  position: relative;
  display: flex;
  justify-content: center;
}
.logo-img {
  width: clamp(280px, 42vw, 460px);
  filter: drop-shadow(0 16px 0 rgba(42, 32, 112, 0.22)) drop-shadow(0 28px 55px rgba(13, 10, 51, 0.45));
  opacity: 0;
  animation:
    logoPop 0.9s var(--ease-bounce) 0.25s forwards,
    logoBreath 7s ease-in-out 1.2s infinite;
}
@keyframes logoPop {
  0% { opacity: 0; transform: scale(0.3) rotate(-8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes logoBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero-tagline {
  margin-top: 34px;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 2px 14px rgba(13, 10, 51, 0.8), 0 0 40px rgba(13, 10, 51, 0.6);
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.1s forwards;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.35s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 2px 10px rgba(13, 10, 51, 0.8);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.7s forwards;
}
.scroll-cue-star {
  font-size: 1.4rem;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* ─────────── מקטעים כלליים ─────────── */
section { position: relative; padding: 110px 24px; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 0 rgba(42, 32, 112, 0.2);
  transform: rotate(-1.5deg);
}
.section-head h2, .story-text h2, .ai-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.15;
}
.section-head p {
  margin-top: 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

/* צבעי טקסט לפי אזור במסע */
.how .section-head, .pricing .section-head, .quotes .section-head { color: var(--cream); }
.worlds .section-head { color: var(--ink); }

/* ─────────── 2 · בנפיטס ─────────── */
.benefits { padding-top: 40px; }
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
}
.benefit-card {
  background: var(--cream);
  border: var(--card-border);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  padding: 34px 22px 30px;
  text-align: center;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.benefit-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  box-shadow: 0 18px 0 rgba(42, 32, 112, 0.15);
}
.benefit-icon {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 14px;
  filter: drop-shadow(0 8px 14px rgba(42, 32, 112, 0.18));
}
.float-slow { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.3;
}
.benefit-card h3 small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ─────────── 3 · הסיפור ─────────── */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.story-art {
  position: relative;
  transform: rotate(2deg);
}
.story-art img {
  border-radius: 26px;
  border: 4px solid var(--cream);
  box-shadow: 0 16px 0 rgba(42, 32, 112, 0.22), 0 30px 60px rgba(42, 32, 112, 0.3);
}
.story-art figcaption {
  position: absolute;
  bottom: -18px;
  right: 24px;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 18px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 0 rgba(42, 32, 112, 0.25);
  transform: rotate(-2deg);
}
.story-text { color: var(--ink); }
.story-text h2 { margin-bottom: 20px; }
.story-text p {
  font-size: 1.08rem;
  line-height: 1.85;
  font-weight: 600;
  margin-bottom: 16px;
}
.story-sign {
  margin-top: 26px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 26px;
  background: var(--cream);
  border: 2.5px dashed var(--ink);
  border-radius: 18px;
  transform: rotate(-1deg);
}
.story-sign strong { font-family: var(--font-display); font-size: 1.3rem; }
.story-sign span { font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); }

/* ─────────── 4 · עולמות ─────────── */
.world-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1200px;
}
.world-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 18px 0 rgba(11, 8, 48, 0.45), 0 30px 70px rgba(11, 8, 48, 0.55);
  aspect-ratio: 2 / 3;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  will-change: transform;
}
.world-card-mid { transform: translateY(26px); }
.world-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.world-card:hover img { transform: scale(1.06); }
.world-card.tilting { transition: transform 0.12s ease-out; }
.world-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 70px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(11, 8, 48, 0.88));
  color: var(--cream);
  text-align: center;
}
.world-label h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.world-label p { font-weight: 600; opacity: 0.9; margin-top: 4px; }

/* ─────────── 5 · איך לומדים ─────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--cream);
  text-align: center;
}
.how-item-mid { transform: translateY(30px); }
.phone {
  width: min(250px, 80%);
  margin: 0 auto 24px;
  padding: 12px;
  background: #1A1640;
  border-radius: 38px;
  border: 3px solid rgba(255, 246, 227, 0.35);
  box-shadow: 0 24px 60px rgba(5, 3, 25, 0.7), inset 0 0 0 2px rgba(255,255,255,0.06);
  transform: rotate(var(--ph-rot, 0deg));
  transition: transform 0.45s var(--ease-bounce);
}
.phone:hover { transform: rotate(0deg) translateY(-10px) scale(1.04); }
.phone img { border-radius: 26px; }
.how-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.how-item p {
  font-weight: 600;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 300px;
  margin: 0 auto;
}

/* ─────────── 6 · AI ─────────── */
.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--cream);
}
.ai-text h2 { margin-bottom: 18px; }
.ai-text p { font-size: 1.12rem; font-weight: 600; line-height: 1.8; opacity: 0.92; max-width: 420px; }
.ai-steps {
  margin-top: 26px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  counter-reset: step;
}
.ai-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  background: rgba(255, 246, 227, 0.1);
  border: 2px solid rgba(255, 246, 227, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
}
.ai-steps li span { font-size: 1.25rem; }
.ai-art img, .ai-art video {
  width: 100%;
  display: block;
  border-radius: 28px;
  border: 4px solid rgba(255, 246, 227, 0.5);
  box-shadow: 0 24px 70px rgba(5, 3, 25, 0.7);
  transform: rotate(-1.5deg);
}

/* ─────────── 7 · שבועי ─────────── */
.weekly { padding-top: 60px; padding-bottom: 60px; }
.weekly-band {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
  background: rgba(255, 246, 227, 0.07);
  border: 2px dashed rgba(255, 246, 227, 0.45);
  border-radius: 34px;
  padding: 54px 30px;
  backdrop-filter: blur(3px);
}
.weekly-moon { font-size: 2.6rem; margin-bottom: 10px; animation: floaty 7s ease-in-out infinite; }
.weekly-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 4.5vw, 2.5rem); }
.weekly-band p { margin-top: 10px; font-weight: 600; font-size: 1.1rem; opacity: 0.9; }
.weekly-stars { margin-top: 18px; display: flex; justify-content: center; gap: 18px; color: var(--gold); font-size: 1.2rem; }
.weekly-stars span { animation: twinkle 3s ease-in-out infinite; animation-delay: calc(var(--i, 0) * 0.5s); opacity: 0.8; }
.weekly-stars span:nth-child(2) { animation-delay: 0.6s; }
.weekly-stars span:nth-child(3) { animation-delay: 1.2s; }
.weekly-stars span:nth-child(4) { animation-delay: 1.8s; }
.weekly-stars span:nth-child(5) { animation-delay: 2.4s; }

/* ─────────── 8 · מחיר ─────────── */
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 34px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--cream);
  border: var(--card-border);
  border-radius: 30px;
  padding: 40px 34px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-bounce);
}
.price-card:hover { transform: translateY(-8px); }
.price-card-featured {
  background: linear-gradient(165deg, #FFF6E3, #FFE9B8);
  border-color: var(--gold-deep);
  border-width: 4px;
  box-shadow: 0 0 0 6px rgba(255, 201, 77, 0.35), 0 14px 0 rgba(42, 32, 112, 0.2), 0 30px 80px rgba(255, 177, 61, 0.45);
}
.price-badge {
  position: absolute;
  top: -18px;
  right: 50%;
  transform: translateX(50%) rotate(2deg);
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
  padding: 7px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 5px 0 rgba(11, 8, 48, 0.4);
}
.price-card h3 { font-family: var(--font-display); font-size: 1.5rem; text-align: center; }
.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 22px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
}
.price-card-featured .price-num { color: var(--gold-deep); text-shadow: 0 3px 0 rgba(42,32,112,0.18); }
.price-unit { font-weight: 700; color: var(--ink-soft); }
.price-card ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.price-card li {
  font-weight: 600;
  font-size: 1.03rem;
  padding: 9px 30px 9px 0;
  position: relative;
}
.price-card li::before {
  content: '⭐';
  position: absolute;
  right: 0;
  top: 9px;
  font-size: 0.95rem;
}
.price-card .btn { width: 100%; }

/* ─────────── 9 · ציטוטים ─────────── */
.quote-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1060px;
  margin: 0 auto;
}
.quote-card {
  position: relative;
  background: var(--cream);
  border: var(--card-border);
  border-radius: 26px;
  padding: 30px 26px;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.8;
  box-shadow: var(--card-shadow);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s var(--ease-bounce);
}
.quote-card:hover { transform: rotate(0deg) translateY(-6px); }
.quote-card::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: 44px;
  width: 30px; height: 30px;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  transform: rotate(-45deg) skew(-8deg, -8deg);
  border-radius: 0 0 0 8px;
}

/* ─────────── 10 · פינאלה ─────────── */
.finale { text-align: center; padding-bottom: 150px; }
.finale-inner { color: var(--cream); }
.finale-star {
  font-size: 3.4rem;
  margin-bottom: 14px;
  display: inline-block;
  animation: starPulse 2.6s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { transform: scale(1) rotate(-4deg); filter: drop-shadow(0 0 16px rgba(255, 201, 77, 0.6)); }
  50% { transform: scale(1.18) rotate(4deg); filter: drop-shadow(0 0 36px rgba(255, 201, 77, 1)); }
}
.finale h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  text-shadow: 0 4px 0 rgba(255, 177, 61, 0.4);
}
.finale p { margin: 14px 0 30px; font-size: 1.2rem; font-weight: 600; opacity: 0.9; }

.footer {
  text-align: center;
  padding: 26px;
  color: rgba(255, 246, 227, 0.55);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ─────────── אנימציות גילוי בגלילה ─────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal { transform: translateY(46px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal.visible { opacity: 1; transform: translateY(0) rotate(var(--rot, 0deg)); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.world-card-mid.reveal.visible { transform: translateY(26px); }
.how-item-mid.reveal.visible { transform: translateY(30px); }

/* ─────────── רספונסיב ─────────── */
@media (max-width: 900px) {
  section { padding: 70px 20px; }
  .topnav-links { display: none; }
  .benefit-cards, .world-cards, .how-grid, .quote-cards { grid-template-columns: 1fr; max-width: 440px; }
  .world-card-mid, .how-item-mid { transform: none; }
  .world-card-mid.reveal.visible, .how-item-mid.reveal.visible { transform: none; }
  .story-grid, .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-art { max-width: 360px; margin: 0 auto; }
  .ai-art { order: -1; max-width: 460px; margin: 0 auto; }
  .price-cards { grid-template-columns: minmax(0, 420px); }
  .price-card-featured { order: -1; }
  .sun { width: 80px; height: 80px; top: 7%; right: 5%; }
  .hero-tagline br { display: none; }
}

/* ─────────── הפחתת תנועה ─────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .logo-img { opacity: 1; transform: none; }
  .hero-tagline, .hero-cta, .scroll-cue { opacity: 1; }
  .hero-video { display: none; }
}
