/* ============================================================
   נוסחת ה-40 מיליון צפיות — אורי אנטר
   עיצוב: כהה, אנרגטי, RTL. צבע צמיחה = ליים, צבע רכישה = מגנטה→כתום.
   ➜ מדביקים את כל הקובץ הזה לתיבת ה-CSS בפלטפורמה.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700;800;900&family=Secular+One&display=swap');

:root {
  --bg:        #08080C;
  --bg-2:      #0E0E16;
  --card:      rgba(255,255,255,.045);
  --card-2:    rgba(255,255,255,.07);
  --border:    rgba(255,255,255,.10);
  --ink:       #F6F6FA;
  --muted:     #9A9AAC;
  --lime:      #CCFF00;
  --lime-dim:  #93B800;
  --magenta:   #FF2D74;
  --orange:    #FF7A2D;
  --violet:    #7A5CFF;
  --cta:       linear-gradient(105deg, #FF2D74 0%, #FF7A2D 100%);
  --maxw:      1120px;
  --radius:    20px;
  --font-disp: "Secular One", system-ui, sans-serif;
  --font-body: "Heebo", system-ui, sans-serif;
}

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

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

body {
  direction: rtl;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* atmospheric glows + grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(620px 420px at 85% -5%, rgba(204,255,0,.10), transparent 60%),
    radial-gradient(560px 480px at 5% 12%, rgba(255,45,116,.12), transparent 60%),
    radial-gradient(700px 600px at 50% 110%, rgba(122,92,255,.10), transparent 60%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

section { position: relative; z-index: 1; padding-block: clamp(56px, 9vw, 110px); }

/* ---------- Headings ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: clamp(.78rem, 2.6vw, .92rem);
  letter-spacing: .02em;
  color: var(--lime);
  background: rgba(204,255,0,.08);
  border: 1px solid rgba(204,255,0,.28);
  padding: 7px 15px; border-radius: 999px;
  text-transform: none;
}
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: pulse 1.6s infinite; }

h1, h2, h3 { font-family: var(--font-disp); font-weight: 400; line-height: 1.05; letter-spacing: -.01em; }

h2.section-title {
  font-size: clamp(1.9rem, 6.2vw, 3.2rem);
  margin-bottom: 14px;
}
.section-intro { color: var(--muted); font-size: clamp(1rem, 3vw, 1.16rem); max-width: 640px; }

.grad { background: linear-gradient(100deg, var(--lime), #EAFF8A); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hl { color: var(--lime); }

/* ============================================================
   URGENCY BAR (sticky)
   ============================================================ */
.urgency-bar {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  background: rgba(12,12,20,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.urgency-bar.show { transform: translateY(0); }
.urgency-bar .wrap {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px 18px; padding-block: 10px; text-align: center;
}
.urgency-bar .ub-text { font-weight: 800; font-size: clamp(.82rem, 2.6vw, 1rem); }
.urgency-bar .ub-text b { color: var(--lime); }
.urgency-bar .ub-text s { color: var(--muted); text-decoration-color: var(--magenta); }
.mini-count { display: inline-flex; gap: 6px; font-variant-numeric: tabular-nums; }
.mini-count .seg {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: 8px; padding: 3px 7px; font-weight: 800; font-size: .82rem;
  min-width: 30px; text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --glow: rgba(255,45,116,.45);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 900;
  font-size: clamp(1rem, 3.4vw, 1.2rem);
  color: #fff; background: var(--cta);
  padding: 17px 34px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 10px 34px var(--glow), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .18s ease, box-shadow .25s ease, filter .2s ease;
  position: relative; white-space: nowrap; text-align: center;
  animation: cta-breathe 2.6s ease-in-out infinite;
}
.btn:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 16px 48px var(--glow); filter: saturate(1.1); }
.btn:active { transform: translateY(0) scale(.99); }
.btn .price-old { font-weight: 700; font-size: .8em; opacity: .72; text-decoration: line-through; }
.btn.btn-sm { padding: 11px 22px; font-size: .92rem; animation: none; }
.btn.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--border); box-shadow: none; animation: none; font-weight: 700;
}
.btn.btn-ghost:hover { background: var(--card); box-shadow: none; }

.cta-note { display: block; margin-top: 14px; color: var(--muted); font-size: .9rem; font-weight: 500; }
.cta-note b { color: var(--ink); font-weight: 800; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(70px, 13vw, 120px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy > * { opacity: 0; transform: translateY(22px); animation: rise .8s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .16s; }
.hero-copy > *:nth-child(3) { animation-delay: .27s; }
.hero-copy > *:nth-child(4) { animation-delay: .38s; }
.hero-copy > *:nth-child(5) { animation-delay: .49s; }

.hero h1 {
  font-size: clamp(2.6rem, 11vw, 5.6rem);
  margin: 18px 0 16px;
  text-wrap: balance;
}
.hero h1 .line2 { display: block; }
.hero .sub {
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
  color: #C9C9D6; max-width: 560px; font-weight: 500;
}
.hero .actions { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* hero stat chips */
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 10px 14px; display: flex; flex-direction: column; gap: 2px;
}
.chip .n { font-family: var(--font-disp); font-size: 1.35rem; color: var(--lime); line-height: 1; }
.chip .l { font-size: .76rem; color: var(--muted); font-weight: 600; }

/* hero image */
.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  aspect-ratio: 4/5; background: var(--bg-2);
  animation: rise .9s .35s cubic-bezier(.2,.8,.2,1) both;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.hero-media .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,8,12,.6) 100%);
}
/* נייד צף עם צילום ה-41M, חופף לפינת הפורטרט */
.hero-media .float-phone {
  position: absolute; inset-inline-start: -16px; bottom: 22px; z-index: 3;
  width: clamp(96px, 28%, 138px);
  animation: float 4.2s ease-in-out infinite;
}
.hero-media .float-phone .phone-scr { border-width: 5px; border-radius: 18px; }
.hero-media .float-tag {
  position: absolute; top: -12px; inset-inline-end: -10px; z-index: 4;
  background: var(--lime); color: #0b0b0b; font-family: var(--font-disp);
  font-size: .8rem; padding: 4px 10px; border-radius: 9px;
  box-shadow: 0 8px 22px rgba(204,255,0,.45);
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.ticker {
  border-block: 1px solid var(--border);
  background: rgba(204,255,0,.04);
  padding-block: 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; gap: 0; animation: marquee 24s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-disp); font-size: 1.05rem; color: var(--ink);
  padding: 16px 26px; display: inline-flex; align-items: center; gap: 26px;
}
.ticker-track span i { color: var(--lime); font-style: normal; }
.ticker-track .sep { color: var(--magenta); }

/* ============================================================
   PROOF
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 50px); align-items: center; }
.proof-num {
  font-family: var(--font-disp);
  font-size: clamp(4rem, 18vw, 9rem); line-height: .85;
  background: linear-gradient(120deg, var(--lime), #EFFFA8); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 60px rgba(204,255,0,.18);
}
.proof-num small { font-family: var(--font-disp); font-size: .42em; }
.proof p { color: #C9C9D6; font-size: clamp(1rem, 3vw, 1.18rem); margin-top: 12px; max-width: 520px; }
.proof-cap { color: var(--lime); font-weight: 800; margin-top: 18px; font-size: 1rem; }

/* ----- phone mockup (משותף ל-Hero ולהוכחה) ----- */
.phone-scr {
  aspect-ratio: 1320 / 2868;
  border-radius: 26px; overflow: hidden;
  background: #000;
  border: 7px solid #15151f;
  box-shadow: 0 24px 55px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.06);
}
.phone-scr img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.phones { display: flex; justify-content: center; align-items: flex-start; gap: clamp(12px, 3vw, 22px); }
.phone { width: clamp(135px, 42%, 215px); }
.phone:first-child { transform: rotate(-3deg); }
.phone.phone-2 { transform: rotate(3deg); margin-top: 26px; }
.phone figcaption { text-align: center; margin-top: 12px; color: var(--muted); font-size: .82rem; font-weight: 700; }

/* ----- Lightbox (לחיצה להגדלת צילום מסך) ----- */
.zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  background: rgba(4,4,8,.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  cursor: zoom-out;
  animation: lb-fade .22s ease;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 95vw; max-height: 90vh;
  width: auto; height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
  animation: lb-pop .25s cubic-bezier(.2,.8,.2,1);
}
.lightbox-close {
  position: absolute; top: 18px; inset-inline-end: 20px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid var(--border);
  color: #fff; font-size: 1.3rem; font-weight: 700; cursor: pointer;
  display: grid; place-items: center; line-height: 1;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover { background: rgba(255,45,116,.85); transform: scale(1.08); }
@keyframes lb-fade { from { opacity: 0; } }
@keyframes lb-pop { from { opacity: 0; transform: scale(.94); } }

/* ============================================================
   PAIN / PROBLEM
   ============================================================ */
.pain { background: linear-gradient(180deg, transparent, rgba(255,45,116,.04), transparent); }
.pain-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.pain-item {
  display: flex; align-items: flex-start; gap: 13px;
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px;
  font-weight: 600; color: #D7D7E2;
}
.pain-item .x {
  flex: none; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,45,116,.14); color: var(--magenta);
  display: grid; place-items: center; font-weight: 900; font-size: 1rem;
}
.pain-kicker {
  margin-top: 30px; text-align: center;
  font-family: var(--font-disp); font-size: clamp(1.3rem, 5vw, 2rem); line-height: 1.2;
}
.pain-kicker .hl { color: var(--lime); }

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.inside-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.inside-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.inside-item:hover { border-color: rgba(204,255,0,.4); transform: translateY(-3px); background: var(--card-2); }
.inside-item .ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(204,255,0,.1); border: 1px solid rgba(204,255,0,.3);
  display: grid; place-items: center; font-size: 1.4rem;
}
.inside-item h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.08rem; margin-bottom: 4px; }
.inside-item p { color: var(--muted); font-size: .94rem; line-height: 1.55; }
.inside-summary {
  margin-top: 28px; text-align: center; color: #D7D7E2; font-weight: 600;
  font-size: clamp(1.02rem, 3vw, 1.18rem);
}
.inside-summary b { color: var(--lime); }

/* ============================================================
   WHY DIFFERENT
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.why-card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; text-align: center;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--magenta));
  transform: scaleX(0); transform-origin: right; transition: transform .4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card .num { font-family: var(--font-disp); font-size: 2.4rem; color: var(--lime); line-height: 1; }
.why-card h3 { font-family: var(--font-body); font-weight: 900; font-size: 1.25rem; margin: 12px 0 8px; }
.why-card p { color: var(--muted); font-size: .96rem; }

/* ============================================================
   ABOUT URI
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(26px, 5vw, 56px); align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 24px 60px rgba(0,0,0,.5); aspect-ratio: 3/4; background: var(--bg-2); }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.about-copy h2 { font-size: clamp(1.8rem, 6vw, 3rem); margin-bottom: 6px; }
.about-copy .role { color: var(--lime); font-weight: 800; margin-bottom: 16px; display: inline-block; }
.about-copy p { color: #C9C9D6; font-size: clamp(1rem, 3vw, 1.14rem); }
.about-copy p + p { margin-top: 14px; }

/* ============================================================
   OFFER / PRICE
   ============================================================ */
.offer { text-align: center; }
.price-card {
  max-width: 620px; margin: 36px auto 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid rgba(204,255,0,.3); border-radius: 28px;
  padding: clamp(28px, 5vw, 46px) clamp(22px, 4vw, 44px);
  box-shadow: 0 30px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(204,255,0,.05) inset;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; top: -40%; inset-inline-end: -20%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,255,0,.16), transparent 70%);
}
.value-list { list-style: none; text-align: start; max-width: 460px; margin: 0 auto 26px; display: grid; gap: 11px; }
.value-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: #E4E4EC; }
.value-list .v {
  flex: none; width: 24px; height: 24px; border-radius: 7px; background: rgba(204,255,0,.16);
  color: var(--lime); display: grid; place-items: center; font-weight: 900; font-size: .85rem;
}
.worth { color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 6px; }
.price-now { font-family: var(--font-disp); font-size: clamp(3.4rem, 14vw, 5.4rem); line-height: 1; color: #fff; }
.price-now .cur { font-size: .42em; color: var(--lime); }
.price-old-big { font-family: var(--font-disp); font-size: clamp(1.4rem, 6vw, 2.2rem); color: var(--muted); text-decoration: line-through; text-decoration-color: var(--magenta); }

/* countdown (big) */
.deadline-label {
  display: inline-flex; align-items: center; gap: 8px; margin: 18px auto 12px;
  background: rgba(255,45,116,.12); border: 1px solid rgba(255,45,116,.35);
  color: #FFD3E1; font-weight: 800; font-size: .96rem; padding: 8px 16px; border-radius: 999px;
}
/* direction: ltr → סדר התאים ימים·שעות·דקות·שניות משמאל לימין (קונבנציית שעון) */
.countdown { display: flex; direction: ltr; justify-content: center; gap: 10px; margin-bottom: 26px; font-variant-numeric: tabular-nums; }
.countdown .seg {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 6px; min-width: 70px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.countdown .seg .v { font-family: var(--font-disp); font-size: clamp(1.6rem, 7vw, 2.4rem); line-height: 1; color: var(--lime); }
.countdown .seg .k { font-size: .72rem; color: var(--muted); font-weight: 700; margin-top: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 36px auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: start; background: none; border: none; cursor: pointer;
  color: var(--ink); font-family: var(--font-body); font-weight: 800; font-size: clamp(1rem, 3vw, 1.12rem);
  padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q .pm { flex: none; width: 26px; height: 26px; display: grid; place-items: center; color: var(--lime); font-size: 1.4rem; transition: transform .3s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { text-align: center; }
.final-card {
  max-width: 760px; margin: 0 auto;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,45,116,.14), transparent 60%), var(--bg-2);
  border: 1px solid var(--border); border-radius: 28px; padding: clamp(34px, 6vw, 60px) 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.final-card h2 { font-size: clamp(2rem, 7vw, 3.4rem); margin-bottom: 10px; }
.final-card .price-row { margin: 22px 0 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { text-align: center; padding: 40px 22px; color: var(--muted); font-size: .9rem; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer .logo { font-family: var(--font-disp); color: var(--ink); font-size: 1.1rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes marquee { to { transform: translateX(50%); } } /* RTL: moves toward start */
@keyframes cta-breathe { 0%,100% { box-shadow: 0 10px 34px rgba(255,45,116,.4), inset 0 1px 0 rgba(255,255,255,.3); } 50% { box-shadow: 0 14px 46px rgba(255,45,116,.6), inset 0 1px 0 rgba(255,255,255,.3); } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  /* כל מה שמופיע דרך אנימציה חייב לחזור למצב גלוי כשהאנימציה כבויה */
  .reveal, .hero-copy > *, .hero-media .frame { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 400px; margin-inline: auto; order: -1; }
  .proof-grid, .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 340px; margin-inline: auto; }
  .proof-grid > div:first-child { text-align: center; }
  .proof-grid .proof-num, .proof-grid p { margin-inline: auto; }
  .phones { gap: 16px; margin-top: 8px; }
}
@media (max-width: 560px) {
  .pain-list, .inside-grid { grid-template-columns: 1fr; }
  .countdown .seg { min-width: 58px; padding: 10px 4px; }
  .hero .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }                       /* CTA ראשי ברוחב מלא */
  .urgency-bar .btn-sm { width: auto; }        /* אבל לא הכפתור הקטן בבר */
  .urgency-bar .ub-text { font-size: .8rem; }
  /* פורטרט ה-Hero לא רחב מדי, והנייד הצף לא חורג מהמסך */
  .hero-media { max-width: 320px; }
  .hero-media .float-phone { inset-inline-start: 2px; bottom: 14px; width: clamp(82px, 30%, 108px); }
  /* שני הניידים זה לצד זה, ישרים (בלי הטיה שמדליפה מהמסך), מספרים גדולים נשארים קריאים */
  .phone { width: 46%; }
  .phone:first-child, .phone.phone-2 { transform: none; }
  .phone.phone-2 { margin-top: 0; } /* בנייד: שני הניידים באותו גובה (בדסקטופ נשאר ה-stagger) */
  .phone figcaption { font-size: .74rem; }
}
