/* ===========================================================================
   רדוד — styles.css (V2)
   "הדף צולל": הרקע יורד משחור-חם (פני המים) לשחור-כחול (תהום),
   מד-עומק חי בצד המסך, במה מוארת למוצר. אותה פלטה — יותר עומק.
   Mobile-first, RTL.
   =========================================================================== */

/* --- טוקנים -------------------------------------------------------------- */

:root {
  /* פלטה (נשמרה) + שני קצוות לצלילה */
  --bg:        #0E0E0D;              /* שחור מט — הבסיס */
  --bg-warm:   #14100B;              /* פני המים: שחור עם חום של תאורה */
  --bg-abyss:  #070B10;              /* תהום: שחור עם כחול קר */
  --ink:       #ECE7DC;
  --brass:     #CFA86A;
  --brass-dim: rgba(207, 168, 106, 0.35);
  --muted:     #9A948A;
  --muted-2:   #6F6A60;
  --hairline:  rgba(236, 231, 220, 0.12);
  --card:      #131110;              /* פני קלף */

  --display: "Frank Ruhl Libre", Georgia, serif;
  --ui:      "Heebo", system-ui, sans-serif;

  --container: 64rem;
  --reading:   42rem;
  --gap:       clamp(1rem, 3vw, 2rem);
  --section-y: clamp(4.5rem, 13vw, 8.5rem);
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- בסיס ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--ui);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  /* הצלילה: חם למעלה, קר למטה. הגרדיאנט נמתח על כל גובה הדף. */
  background:
    linear-gradient(to bottom,
      var(--bg-warm) 0%,
      var(--bg) 22%,
      var(--bg) 58%,
      #0B0E11 80%,
      var(--bg-abyss) 100%);
}

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.15; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--brass); color: var(--bg); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* גרעין פילם עדין על הכל — האטמוספרה של הרנדר */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* עוטפי סקשן */
.hero, .cards, .proof, .fit, .depths, .spec, .creator, .pricing, .faq {
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: var(--section-y);
  max-width: var(--container);
  margin-inline: auto;
  position: relative;
}

/* עין-כותרת: מיקרו-כיתוב מדידה */
.eyebrow {
  font-family: var(--ui); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; color: var(--brass);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 1.4rem; height: 1px; background: var(--brass-dim);
  margin-inline-end: 0.6rem;
}

.section__title {
  font-size: clamp(1.7rem, 6.4vw, 2.6rem);
  margin-bottom: clamp(1.75rem, 5vw, 3rem);
  letter-spacing: -0.01em;
}

.br-desktop { display: none; }

/* חשיפה בגלילה (JS מוסיף .in; בלי JS — הכל גלוי) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================================
   לוגו
   =========================================================================== */
.logo { display: inline-flex; align-items: baseline; font-family: var(--display); white-space: nowrap; }
.logo__word { position: relative; font-weight: 700; font-size: 1.6rem; letter-spacing: 0.02em; white-space: nowrap; }
.logo__word::after {
  content: ""; position: absolute; inset-inline: -0.08em; top: 62%;
  height: 1px; background: var(--muted);
}
.logo__l { display: inline-block; position: relative; }
.logo__l--dive { transform: translateY(0.2em); }
.logo__l--dive::after {
  content: ""; position: absolute; bottom: -0.28em; inset-inline-start: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--brass); transform: translateX(-50%);
}
.logo__dot { color: var(--brass); font-weight: 700; }
.logo--sm .logo__word { font-size: 1.25rem; }

/* ===========================================================================
   NAV
   =========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem clamp(1.25rem, 5vw, 3rem);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav__cta {
  font-family: var(--ui); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--brass);
  padding: 0.45rem 1rem; border: 1px solid var(--brass-dim);
  border-radius: 2px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav__cta:hover { background: var(--brass); color: var(--bg); border-color: var(--brass); }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero { padding-top: clamp(3rem, 9vw, 5.5rem); text-align: center; }

.hero__edition {
  display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.05em; color: var(--muted);
  margin-bottom: clamp(1.4rem, 4vw, 2rem);
}
.hero__edition-badge {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  color: var(--brass); border: 1px solid var(--brass-dim); border-radius: 2px;
  padding: 0.25rem 0.6rem;
}
.hero__count { color: var(--ink); font-weight: 500; }

.hero__title {
  font-size: clamp(2.1rem, 8.6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
  max-width: 21ch; margin-inline: auto;
}

.hero__subtitle {
  margin-top: clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(1rem, 3.6vw, 1.25rem);
  color: var(--muted);
  line-height: 1.7;
}
.hero__subtitle em {
  font-style: normal; color: var(--ink);
  font-family: var(--display);
}

/* --- במת המוצר: הילה חמה + השתקפות ------------------------------------- */
.hero__product {
  margin: clamp(2.2rem, 7vw, 3.8rem) auto 0;
  position: relative;
  width: min(21rem, 72vw);
}
.hero__halo {
  position: absolute; inset: -30% -28%;
  background: radial-gradient(ellipse 55% 48% at 50% 42%,
    rgba(207, 168, 106, 0.16), rgba(207, 168, 106, 0.05) 45%, transparent 70%);
  pointer-events: none;
}
.hero__img, .ph--deck {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.6));
}
.hero__reflection {
  position: absolute; inset-inline: 12%; bottom: -14px; height: 14px;
  background: radial-gradient(ellipse at 50% 0%, rgba(207, 168, 106, 0.18), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

/* ===========================================================================
   פיצ'ר ההיפוך
   =========================================================================== */
.flip { margin-top: clamp(3rem, 9vw, 4.5rem); }

.flip__hint {
  font-family: var(--display); font-size: clamp(1.1rem, 4vw, 1.35rem);
  color: var(--ink); margin-bottom: 1.4rem;
}

.flip__row {
  display: flex; justify-content: center; gap: clamp(0.7rem, 2.6vw, 1.3rem);
  perspective: 1200px;
}

/* אנימציית ריחוף למים עומדים */
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* קלף בודד — יחס 5:7 (ממסמך-האב) */
.flip-card {
  flex: 1 1 0; max-width: 9.5rem; min-width: 0;
  aspect-ratio: 5 / 7;
  perspective: 1200px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: inherit;
  
  /* הפעלת אנימציית הריחוף */
  animation: floatCard 4s ease-in-out infinite; 
  transition: transform 0.4s var(--ease);
}

/* בעצירת העכבר - האנימציה נעצרת והקלף נדרך לקראת קליק */
.flip-card:hover {
  animation-play-state: paused;
  transform: scale(1.03) translateY(-2px);
}
.flip-card:active {
  transform: scale(0.98);
}

.flip-card[disabled] { cursor: default; animation: none; transform: none; }

.flip-card__inner {
  display: block;
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
}

/* מניעת הריחוף וההגדלה אחרי שהיוזר הפך את הקלף */
.flip-card.is-flipped { animation: none; transform: none; pointer-events: none; }
.flip-card.is-flipped .flip-card__inner { transform: rotateY(180deg); }

/* שני הצדדים (כולל אפקט הזוהר מאחור) */
.flip-card__face {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  padding: 0; 
  
  /* 1. הילה קטנה ועדינה כשהקלף ממתין (גב הקלף) */
  box-shadow: 0 0 15px rgba(207, 168, 106, 0.15); 
  transition: box-shadow 0.4s var(--ease);
}

/* 2. במעבר עכבר (לפני היפוך) ההילה גדלה כדי להזמין קליק */
.flip-card:not(.is-flipped):hover .flip-card__face {
  box-shadow: 0 0 35px rgba(207, 168, 106, 0.35);
}

/* 3. אחרי ההיפוך - הילה גדולה וקבועה שלא נעלמת לעולם */
.flip-card.is-flipped .flip-card__face {
  box-shadow: 0 0 45px rgba(207, 168, 106, 0.45) !important;
}

.flip-card__face--front {
  transform: rotateY(180deg);
}
/* פני הקלף — הטריגר */
.flip-card__face--front {
  transform: rotateY(180deg);
  background: linear-gradient(165deg, #1A1712, var(--card) 60%);
  border: 1px solid rgba(236, 231, 220, 0.16);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.5), 0 14px 30px rgba(0, 0, 0, 0.5);
  font-family: var(--display);
  font-size: clamp(0.66rem, 2.4vw, 0.82rem);
  font-weight: 500; line-height: 1.45; text-align: center;
  color: var(--ink);
}

/* קלפים נעולים אחרי בחירה */
.flip-card.is-locked { opacity: 0.28; pointer-events: none; transform: scale(0.96); }

.flip__more {
  display: inline-block; margin-top: 1.6rem;
  font-family: var(--ui); font-size: 0.92rem; font-weight: 500;
  color: var(--brass); letter-spacing: 0.03em;
  border-bottom: 1px solid var(--brass-dim);
  padding-bottom: 2px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.flip__more.show { opacity: 1; transform: none; }
.flip__arrow { display: inline-block; margin-inline-start: 0.2rem; }

.hero__trust { margin-top: clamp(2.4rem, 7vw, 3.4rem); }
.wa { font-size: 0.82rem; color: var(--muted); border-bottom: 1px dotted var(--muted-2); padding-bottom: 1px; }
.wa:hover { color: var(--ink); }

/* ===========================================================================
   הקלפים עצמם — גלריה + מנגנון הגב
   =========================================================================== */
.cards__gallery {
  display: flex; gap: clamp(0.8rem, 3vw, 1.4rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
}
.cards__gallery::-webkit-scrollbar { display: none; }

.cards__shot {
  margin: 0; flex: 0 0 min(15.5rem, 68vw);
  scroll-snap-align: center;
}
.cards__shot--mid { transform: translateY(clamp(0.6rem, 2vw, 1.2rem)); }

.ph--card {
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(207, 168, 106, 0.08), transparent 60%),
    linear-gradient(165deg, #17140F, var(--card) 55%);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

/* מנגנון הגב */
.back {
  margin-top: clamp(3rem, 8vw, 4.5rem);
  display: grid; gap: clamp(1.6rem, 5vw, 3rem);
  align-items: center;
  border-top: 1px solid var(--hairline);
  padding-top: clamp(2.2rem, 6vw, 3.2rem);
}
.back__visual {
  position: relative; height: clamp(11rem, 34vw, 14rem);
  display: flex; justify-content: center;
}
.back__card {
  position: absolute; top: 0;
  width: clamp(7rem, 22vw, 8.6rem); aspect-ratio: 2 / 3;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.9rem; text-align: center;
  color: var(--muted); line-height: 1.4;
  background: linear-gradient(165deg, #1A1712, var(--card) 60%);
  border: 1px solid var(--hairline);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}
.back__card--front { transform: rotate(-7deg) translateX(34%); }
.back__card--back {
  transform: rotate(6deg) translateX(-34%) translateY(10%);
  color: var(--brass); font-size: 2rem; font-weight: 700;
  border-color: rgba(207, 168, 106, 0.3);
}
.back__title {
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  margin-bottom: 0.7rem;
}
.back__desc { color: var(--muted); max-width: 34rem; line-height: 1.75; }
.back__desc em { font-style: normal; color: var(--ink); font-family: var(--display); }

@media (min-width: 720px) {
  .back { grid-template-columns: 1fr 1.4fr; }
  .cards__gallery { overflow: visible; justify-content: center; }
}

/* ===========================================================================
   הוכחה חברתית
   =========================================================================== */
.proof__track {
  display: flex; gap: var(--gap);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.proof__track::-webkit-scrollbar { display: none; }

.quote {
  margin: 0; flex: 0 0 min(19rem, 82vw);
  scroll-snap-align: center;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1.4rem;
  background: color-mix(in srgb, var(--ink) 3%, transparent);
}
.quote blockquote {
  margin: 1rem 0 0.7rem;
  font-family: var(--display); font-size: 1.06rem; line-height: 1.55;
}
.quote figcaption { font-size: 0.8rem; color: var(--muted); }

.ph--ugc { aspect-ratio: 4 / 3; border-radius: 3px; }

.proof__nav { display: none; gap: 0.6rem; margin-top: 1.2rem; }
.proof__arrow {
  background: none; border: 1px solid var(--hairline); color: var(--muted);
  width: 2.4rem; height: 2.4rem; border-radius: 50%; cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.proof__arrow:hover { border-color: var(--brass); color: var(--brass); }
@media (min-width: 720px) { .proof__nav { display: flex; } }

/* ===========================================================================
   מתי שולפים קלף
   =========================================================================== */
.fit__list { list-style: none; margin: 0; padding: 0; max-width: var(--reading); }
.fit__item {
  padding-block: clamp(1.1rem, 3.4vw, 1.5rem);
  border-bottom: 1px solid var(--hairline);
  display: flex; align-items: baseline; gap: 0.9rem;
}
.fit__item:first-child { border-top: 1px solid var(--hairline); }
.fit__item::before {
  content: ""; flex: 0 0 auto;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass); opacity: 0.75;
  transform: translateY(-2px);
}
.fit__text { font-size: clamp(1rem, 3.5vw, 1.12rem); color: var(--muted); line-height: 1.65; }
.fit__lead {
  font-family: var(--display); font-weight: 700; color: var(--ink);
  margin-inline-end: 0.35rem; font-size: 1.08em;
}

/* ===========================================================================
   שלוש דרגות עומק — סולם יורד
   =========================================================================== */
.depths__scale {
  position: relative;
  max-width: var(--reading);
  padding-inline-start: clamp(1.4rem, 4vw, 2rem);
}
.depths__scale::before {
  content: ""; position: absolute; inset-block: 0.4rem; inset-inline-start: 3px;
  width: 1px;
  background: linear-gradient(to bottom, var(--brass), var(--brass-dim) 55%, transparent);
}
.depth { position: relative; padding-block: clamp(1.3rem, 4vw, 1.9rem); }
.depth + .depth { border-top: 1px dashed var(--hairline); }

.depth__node {
  position: absolute; inset-inline-start: calc(-1 * clamp(1.4rem, 4vw, 2rem) + 0px);
  top: calc(clamp(1.3rem, 4vw, 1.9rem) + 0.5em);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
}
.depth[data-depth="2"] .depth__node { opacity: 0.7; }
.depth[data-depth="3"] .depth__node { opacity: 0.45; box-shadow: 0 0 8px rgba(207,168,106,0.4); }

.depth__head { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }
.depth__name { font-size: clamp(1.25rem, 4.6vw, 1.55rem); font-weight: 700; }
.depth__count {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  color: var(--brass); border: 1px solid var(--brass-dim);
  border-radius: 2px; padding: 0.14rem 0.5rem;
}
.depth__desc { margin-top: 0.45rem; color: var(--muted); max-width: 36rem; }

/* ככל שיורדים — הטקסט מתקרר מעט */
.depth[data-depth="3"] .depth__desc { color: color-mix(in srgb, var(--muted) 80%, #7d93a8 20%); }

/* ===========================================================================
   מפרט — מה בקופסה
   =========================================================================== */
.spec__grid {
  margin: 0; max-width: var(--reading);
  border-top: 1px solid var(--hairline);
}
.spec__row {
  display: grid; grid-template-columns: 6.4rem 1fr;
  gap: 1rem; align-items: baseline;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--hairline);
}
.spec__row dt {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  color: var(--brass);
}
.spec__row dd {
  margin: 0; font-size: 0.98rem; color: var(--ink); font-weight: 300;
}

/* ===========================================================================
   פתק מהיוצר
   =========================================================================== */
.creator {
  padding-block: var(--section-y);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: var(--container); margin-inline: auto;
}
.creator__inner {
  display: grid; gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: center;
  border: 1px solid var(--hairline); border-radius: 6px;
  padding: clamp(1.5rem, 5vw, 2.6rem);
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(207, 168, 106, 0.05), transparent 55%),
    color-mix(in srgb, var(--ink) 2.5%, transparent);
}
.ph--creator {
  width: clamp(5.5rem, 18vw, 7rem); aspect-ratio: 1;
  border-radius: 50%;
}
.creator__title { font-size: clamp(1.35rem, 5vw, 1.8rem); margin-bottom: 0.7rem; }
.creator__text { color: var(--muted); line-height: 1.8; max-width: 36rem; }
.creator__sig {
  display: block; margin-top: 1rem;
  font-family: var(--display); color: var(--brass); font-size: 1.02rem;
}
@media (min-width: 720px) { .creator__inner { grid-template-columns: auto 1fr; } }

/* ===========================================================================
   חבילות
   =========================================================================== */
.pricing__grid {
  display: grid; gap: clamp(0.9rem, 3vw, 1.4rem);
}
@media (min-width: 760px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.pack {
  position: relative;
  border: 1px solid var(--hairline); border-radius: 8px;
  padding: clamp(1.4rem, 4.5vw, 1.9rem);
  cursor: pointer;
  background: color-mix(in srgb, var(--ink) 2.5%, transparent);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.pack:hover { border-color: var(--muted-2); transform: translateY(-3px); }

.pack--featured, .pack[aria-pressed="true"] {
  border-color: var(--brass);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(207, 168, 106, 0.08), transparent 60%),
    color-mix(in srgb, var(--ink) 3%, transparent);
}
@media (min-width: 760px) {
  .pack--featured { transform: translateY(-8px); }
  .pack--featured:hover { transform: translateY(-11px); }
}

.pack__tag {
  position: absolute; top: -0.7rem; inset-inline-start: 50%;
  transform: translateX(50%);
  white-space: nowrap;
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em;
  color: var(--bg); background: var(--brass);
  border-radius: 2px; padding: 0.28rem 0.75rem;
}
html[dir="rtl"] .pack__tag { transform: translateX(50%); }

.pack__name { font-size: clamp(1.5rem, 5.5vw, 1.9rem); font-weight: 700; }
.pack__qty { font-size: 0.86rem; color: var(--muted); margin-top: 0.25rem; min-height: 2.6em; }

.pack__price { margin-top: 0.9rem; display: flex; align-items: baseline; gap: 0.6rem; }
.pack__amount { font-family: var(--display); font-size: clamp(1.9rem, 7vw, 2.3rem); font-weight: 700; }
.pack__was { color: var(--muted-2); font-size: 0.95rem; }

.pack__ship { font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; }

.pack__cta {
  margin-top: 1.2rem;
  font-family: var(--ui); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--ink); background: none;
  border: 1px solid var(--muted-2); border-radius: 3px;
  padding: 0.8rem 1rem; cursor: pointer; width: 100%;
  min-height: 48px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pack--featured .pack__cta, .pack[aria-pressed="true"] .pack__cta {
  background: var(--brass); color: var(--bg); border-color: var(--brass); font-weight: 700;
}
.pack__cta:hover { background: var(--brass); color: var(--bg); border-color: var(--brass); }

.pricing__assure {
  margin-top: clamp(1.6rem, 5vw, 2.2rem);
  text-align: center;
  font-size: 0.8rem; color: var(--muted); letter-spacing: 0.03em;
}
.pricing__msg { margin-top: 0.8rem; text-align: center; font-size: 0.85rem; color: var(--brass); min-height: 1.4em; }

/* ===========================================================================
   FAQ
   =========================================================================== */
.faq__list { max-width: var(--reading); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item:first-child { border-top: 1px solid var(--hairline); }

.faq__q {
  list-style: none; cursor: pointer;
  padding-block: 1.1rem;
  font-family: var(--display); font-size: clamp(1.02rem, 3.8vw, 1.15rem); font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.25s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+"; font-family: var(--ui); font-weight: 300;
  color: var(--brass); font-size: 1.3rem; line-height: 1;
  transition: transform 0.3s var(--ease);
}
details[open] .faq__q::after { transform: rotate(45deg); }
details[open] .faq__q { color: var(--brass); }

.faq__a { padding-bottom: 1.3rem; color: var(--muted); line-height: 1.75; max-width: 38rem; }

/* ===========================================================================
   פס רכישה צף — מובייל
   =========================================================================== */
.stickybar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  transform: translateY(105%);
  transition: transform 0.4s var(--ease);
}
.stickybar.show { transform: none; }
.stickybar__info { display: flex; flex-direction: column; line-height: 1.35; }
.stickybar__price { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.stickybar__note { font-size: 0.7rem; color: var(--muted); }
.stickybar__cta {
  flex: 0 0 auto;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em;
  color: var(--bg); background: var(--brass);
  border-radius: 3px; padding: 0.75rem 1.6rem;
  min-height: 48px; display: inline-flex; align-items: center;
}
@media (min-width: 760px) { .stickybar { display: none; } }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.footer {
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1.25rem, 5vw, 3rem) clamp(5.5rem, 14vw, 4rem);
  max-width: var(--container); margin-inline: auto;
  border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: 0.8rem; color: var(--muted); }
.footer__links a:hover { color: var(--ink); }
.footer__fine { font-size: 0.78rem; color: var(--muted-2); font-family: var(--display); }

/* ===========================================================================
   פלייסהולדרים — מקבלים את אותה במה כמו הנכסים האמיתיים
   =========================================================================== */
.ph {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(236,231,220,0.02) 10px 20px),
    color-mix(in srgb, var(--ink) 3%, transparent);
  border: 1px dashed var(--muted-2);
}
.ph__label { font-size: 0.68rem; letter-spacing: 0.14em; color: var(--muted-2); }

/* דסקטופ: התאמות קטנות */
@media (min-width: 760px) {
  .br-desktop { display: inline; }
  .hero { text-align: center; }
}

/* ===========================================================================
   כפתורי הירו — ראשי + משני
   =========================================================================== */
.hero__ctas {
  margin-top: clamp(2rem, 6vw, 3rem);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.8rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0.85rem 1.9rem;
  font-family: var(--ui); font-size: 1rem; letter-spacing: 0.02em;
  border-radius: 3px;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--brass); color: var(--bg); font-weight: 700;
  box-shadow: 0 10px 26px rgba(207, 168, 106, 0.18);
}
.btn--primary:hover { background: #DDBB7E; }
.btn--ghost {
  color: var(--muted); border: 1px solid var(--hairline); font-weight: 400;
  font-size: 0.9rem;
}
.btn--ghost:hover { color: var(--ink); border-color: var(--muted-2); }

/* קלף בודד בהירו — גדול יותר, במרכז */
.flip__row--single { justify-content: center; }
.flip__row--single .flip-card {
  width: clamp(9.5rem, 44vw, 11.5rem);
}
.flip__row--single .flip-card .flip-card__face--front,
.flip__row--single .flip-card .flip-card__trigger {
  font-size: clamp(0.82rem, 3.2vw, 0.98rem);
  padding: 1rem;
}

/* UGC לאורך — כמו שמצלמים באמת (9:16) */
.quote { flex: 0 0 min(13rem, 62vw); padding: 0.9rem 0.9rem 1.1rem; }
.ph--ugc { aspect-ratio: 9 / 16; border-radius: 6px; }
.quote blockquote { font-size: 0.98rem; margin-top: 0.85rem; }

/* ===========================================================================
   מגנט לידים — סקטור + פופ-אפ
   =========================================================================== */
.lead-magnet {
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: var(--section-y);
  max-width: var(--container);
  margin-inline: auto;
  text-align: center;
}

.lead-magnet__inner {
  border-top: 1px solid var(--brass);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  max-width: 38rem;
  margin: 0 auto;
}

.lead-magnet__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.lead-magnet__desc {
  font-family: var(--ui);
  font-weight: 300;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.lead-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lead-form__input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--muted-2);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}

.lead-form__input:focus {
  outline: none;
  border-color: var(--brass);
}

.lead-form__input::placeholder {
  color: var(--muted-2);
}

.lead-form__btn {
  white-space: nowrap;
}

.lead-form__micro {
  font-family: var(--ui);
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* --- פופ-אפ --- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 13, 0.9);
  backdrop-filter: blur(5px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}

.popup-overlay[hidden] {
  display: none;
  opacity: 0;
}

.popup-content {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--brass);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 32rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.popup-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s var(--ease);
}

.popup-close:hover {
  color: var(--brass);
}

.lead-form__group--col {
  flex-direction: column;
}

/* דסקטופ */
@media (min-width: 48rem) {
  .lead-form__group:not(.lead-form__group--col) {
    flex-direction: row;
  }
}
