/* ===================================================================
   קרוב — Marketing Site Design System
   RTL · Hebrew · Premium navy/blue brand
   =================================================================== */

:root {
  --navy:        #0D1F3C;
  --navy-deep:   #081428;
  --navy-soft:   #14294d;
  --blue:        #3B82F6;
  --blue-light:  #60A5FA;
  --blue-dark:   #2563EB;
  --ice:         #E8F0FE;
  --ice-2:       #CADCFC;
  --ink:         #1F2937;
  --gray:        #6B7280;
  --gray-light:  #9CA3AF;
  --line:        #E5E7EB;
  --bg:          #FFFFFF;
  --bg-soft:     #F6F9FE;
  --green:       #10B981;
  --amber:       #F59E0B;
  --radius:      18px;
  --radius-sm:   12px;
  --shadow-sm:   0 2px 8px rgba(13,31,60,.06);
  --shadow:      0 12px 32px rgba(13,31,60,.10);
  --shadow-lg:   0 28px 60px rgba(13,31,60,.18);
  --maxw:        1140px;
  --ease:        cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', -apple-system, 'Segoe UI', Arial, sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; border: none; cursor: pointer;
  padding: 14px 26px; border-radius: 14px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  font-family: inherit;
}
.btn-primary { background: linear-gradient(135deg, var(--blue-light), var(--blue-dark)); color: #fff; box-shadow: 0 10px 26px rgba(59,130,246,.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(59,130,246,.5); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── Store badges ──────────────────────────────────────── */
.stores { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff; padding: 11px 20px 11px 18px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18); position: relative; transition: transform .25s var(--ease), box-shadow .25s;
  min-width: 200px;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.35); }
.store-badge svg { width: 30px; height: 30px; flex-shrink: 0; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .sb-small { font-size: 11px; opacity: .85; font-weight: 500; }
.store-badge .sb-big { font-size: 18px; font-weight: 800; }
.store-badge .sb-soon {
  position: absolute; top: -9px; inset-inline-start: 12px;
  background: var(--amber); color: #1a1a1a; font-size: 10px; font-weight: 800;
  padding: 2px 9px; border-radius: 999px; letter-spacing: .3px;
}

/* ── Header / Nav ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 11px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 23px; color: #fff; transition: color .3s; }
.site-header.scrolled .brand { color: var(--navy); }
.brand .logo-emoji { font-size: 26px; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { font-weight: 600; font-size: 15px; color: rgba(255,255,255,.9); transition: color .3s; }
.site-header.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--blue-light); }
.site-header.scrolled .nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }
.site-header.scrolled .menu-toggle span { background: var(--navy); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; padding: 124px 0 64px;
  background: radial-gradient(1200px 600px at 80% -10%, #1c3a6e 0%, transparent 60%),
              linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0);
  background-size: 32px 32px; opacity: .5; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(96,165,250,.15);
  border: 1px solid rgba(96,165,250,.35); color: var(--ice-2);
  padding: 7px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(38px, 6vw, 62px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; }
.hero h1 .accent { background: linear-gradient(120deg, var(--blue-light), var(--ice-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(17px, 2.2vw, 21px); color: rgba(255,255,255,.82); max-width: 520px; margin-bottom: 34px; }
.hero .stores { margin-bottom: 26px; }
.hero-note { font-size: 14px; color: rgba(255,255,255,.6); }
.hero-note strong { color: var(--ice-2); }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; perspective: 1400px; }
.phone {
  width: 290px; height: 590px; background: var(--navy-deep); border-radius: 42px;
  padding: 12px; box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.06) inset;
  transform: rotateY(-14deg) rotateX(4deg) rotate(2deg); transition: transform .6s var(--ease);
  border: 1px solid rgba(255,255,255,.1);
}
.phone:hover { transform: rotateY(-6deg) rotateX(2deg) rotate(0deg); }
.phone-screen { width: 100%; height: 100%; background: var(--bg-soft); border-radius: 32px; overflow: hidden; position: relative; }
.phone-notch { position: absolute; top: 0; inset-inline: 0; height: 26px; display: flex; justify-content: center; }
.phone-notch::after { content: ''; width: 120px; height: 22px; background: var(--navy-deep); border-radius: 0 0 16px 16px; }
.ps-header { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); padding: 36px 16px 16px; color: #fff; }
.ps-header .ps-logo { font-size: 19px; font-weight: 800; }
.ps-header .ps-sub { font-size: 11px; color: var(--ice-2); }
.ps-search { margin: 12px 14px 6px; background: #fff; border-radius: 12px; padding: 10px 12px; font-size: 12px; color: var(--gray); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 7px; }
.ps-chips { display: flex; gap: 7px; padding: 8px 14px; overflow: hidden; }
.ps-chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; font-size: 11px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.ps-chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.ps-card { margin: 9px 14px; background: #fff; border-radius: 14px; padding: 12px; box-shadow: var(--shadow-sm); display: flex; gap: 11px; align-items: center; }
.ps-avatar { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-light), var(--blue-dark)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ps-card .ps-info { flex: 1; min-width: 0; }
.ps-name { font-size: 13px; font-weight: 800; color: var(--navy); }
.ps-prof { font-size: 11px; color: var(--gray); }
.ps-stars { font-size: 11px; color: var(--amber); margin-top: 2px; }
.ps-badge { font-size: 9px; font-weight: 800; color: var(--green); background: rgba(16,185,129,.12); padding: 3px 7px; border-radius: 6px; }
.ps-resident { display: inline-block; margin-top: 4px; font-size: 8.5px; font-weight: 800; color: var(--navy); background: var(--ice); padding: 2px 6px; border-radius: 5px; }

/* ── Section base ──────────────────────────────────────── */
section { position: relative; }
.section-pad { padding: 72px 0; }
.section-pad.tint { background: var(--bg-soft); }
/* Audience sections carry a lot of content — keep them tight so the CTA + note stay in view */
.section-pad.audience { padding: 34px 0; }
/* One-page scroll: smooth wheel/anchor navigation + offset for fixed header */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 76px; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.eyebrow { display: inline-block; color: var(--blue); font-weight: 800; font-size: 13.5px; letter-spacing: .5px; margin-bottom: 11px; }
.section-head h2 { font-size: clamp(25px, 3.4vw, 34px); font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1.22; }
.section-head p { color: var(--gray); font-size: 16px; margin-top: 12px; }

/* Stats strip */
.stats { background: var(--bg-soft); border-block: 1px solid var(--line); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 0; }
.stat { text-align: center; }
.stat .num { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--navy); line-height: 1; }
.stat .num .sym { color: var(--blue); }
.stat .lbl { color: var(--gray); font-size: 15px; margin-top: 8px; font-weight: 600; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature .f-icon {
  width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 23px; margin-bottom: 15px; background: var(--ice);
}
.feature h3 { font-size: 17.5px; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.feature p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* How it works */
.how { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); min-height: calc(100vh - 76px); display: flex; flex-direction: column; justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px 28px; text-align: center; }
.step .s-num {
  counter-increment: step; width: 52px; height: 52px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark)); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; box-shadow: 0 8px 20px rgba(59,130,246,.35);
}
.step .s-num::before { content: counter(step); }
.step h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 15px; }

/* Pro CTA band */
.pro-band {
  background: radial-gradient(900px 400px at 85% 0%, #1c3a6e 0%, transparent 55%),
              linear-gradient(140deg, var(--navy), var(--navy-deep));
  color: #fff; border-radius: 28px; padding: 54px 48px; overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: center;
}
.pro-band h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.pro-band p { color: rgba(255,255,255,.82); font-size: 17px; margin-bottom: 26px; max-width: 560px; }
.pro-perks { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 28px; }
.pro-perks li { list-style: none; color: var(--ice-2); font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.pro-perks li::before { content: '✓'; color: var(--green); font-weight: 900; }
.pro-band .pb-visual { text-align: center; font-size: 120px; opacity: .9; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; transition: box-shadow .3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; padding: 16px 20px; font-weight: 700; color: var(--navy); font-size: 15.5px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--blue); font-weight: 400; transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 20px 18px; color: var(--gray); font-size: 14px; line-height: 1.65; }

/* Differentiators — clean numbered cards */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 4px 0 48px; }
.diff-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: box-shadow .3s, transform .3s; }
.diff-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.diff-num { font-size: 30px; font-weight: 900; color: var(--ice-2); line-height: 1; flex-shrink: 0; }
.diff-txt h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.diff-txt p { font-size: 14.5px; color: var(--gray); line-height: 1.6; }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }

/* FAQ — compact so all items fit one screen without scrolling */
#faq.section-pad { padding: 28px 0 40px; }
#faq .section-head { margin-bottom: 18px; }
#faq .section-head h2 { font-size: clamp(22px, 2.6vw, 28px); }
#faq .section-head p { margin-top: 6px; font-size: 13.5px; }
#faq .faq-list { gap: 6px; max-width: 820px; }
#faq .faq-item summary { padding: 7px 18px; font-size: 13.5px; }
#faq .faq-item summary::after { font-size: 19px; }
#faq .faq-item .faq-body { padding: 0 18px 12px; font-size: 13px; line-height: 1.55; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 15px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 15px; margin-bottom: 11px; transition: color .25s; }
.footer-col a:hover { color: var(--blue-light); }
.footer-contact .ct { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: 15px; }
.footer-contact .ct .placeholder { color: var(--gray-light); font-style: italic; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 14px; color: rgba(255,255,255,.55); }
.footer-bottom .stores-mini { display: flex; gap: 10px; }

/* ── Legal pages ───────────────────────────────────────── */
.legal-hero { background: linear-gradient(150deg, var(--navy), var(--navy-deep)); color: #fff; padding: 130px 0 50px; }
.legal-hero .brand { color: #fff; margin-bottom: 20px; }
.legal-hero h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 800; }
.legal-hero .meta { color: var(--ice-2); margin-top: 8px; font-size: 15px; }
.legal-body { padding: 56px 0 80px; }
.legal-doc { max-width: 820px; margin: 0 auto; }
.legal-doc .lead { font-size: 17px; color: var(--gray); background: var(--bg-soft); border-inline-start: 4px solid var(--blue); padding: 18px 22px; border-radius: 10px; margin-bottom: 36px; }
.legal-doc h2 { font-size: 22px; color: var(--navy); font-weight: 800; margin: 36px 0 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.legal-doc h2:first-of-type { border-top: none; padding-top: 0; }
.legal-doc h3 { font-size: 18px; color: var(--navy); font-weight: 700; margin: 22px 0 8px; }
.legal-doc p { color: var(--ink); margin-bottom: 12px; font-size: 16px; }
.legal-doc ul { margin: 0 22px 16px; }
.legal-doc li { margin-bottom: 8px; color: var(--ink); font-size: 16px; }
.legal-doc .contact-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; margin-top: 30px; }
.legal-doc .contact-box strong { color: var(--navy); }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; margin-bottom: 30px; }
.legal-crosslink { font-size: 15px; color: var(--gray); }
.legal-crosslink a { color: var(--blue); font-weight: 700; }
.legal-crosslink a:hover { text-decoration: underline; }

/* ── Audience sections (pros / businesses) ─────────────── */
.audience.alt { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.aud-text .eyebrow { margin-bottom: 8px; }
.audience h2 { font-size: clamp(23px, 3vw, 32px); font-weight: 800; color: var(--navy); line-height: 1.16; letter-spacing: -.5px; margin-bottom: 9px; }
.aud-lead { color: var(--gray); font-size: 15px; margin-bottom: 12px; max-width: 520px; }
.aud-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin-bottom: 14px; }
.aud-perks li { list-style: none; display: flex; align-items: flex-start; gap: 9px; }
.aud-perks li .pk { width: 30px; height: 30px; border-radius: 9px; background: var(--ice); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.audience.alt .aud-perks li .pk { background: #fff; box-shadow: var(--shadow-sm); }
.aud-perks .pk-txt { display: flex; flex-direction: column; gap: 1px; }
.aud-perks .pk-txt strong { font-size: 13.5px; font-weight: 800; color: var(--navy); line-height: 1.25; }
.aud-perks .pk-txt span { font-size: 12px; font-weight: 500; color: var(--gray); line-height: 1.34; }

/* phone variant inside audience sections — gentler tilt */
.audience .phone { transform: rotateY(8deg) rotateX(3deg) rotate(-2deg); }
.audience.alt .phone { transform: rotateY(-8deg) rotateX(3deg) rotate(2deg); }
.audience .phone:hover { transform: rotateY(0) rotateX(0) rotate(0); }

/* Download highlight pulse (when a CTA jumps to the store badges) */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(96,165,250,0); }
  50%      { box-shadow: 0 0 0 7px rgba(96,165,250,.45); }
}
.stores.highlight .store-badge { animation: badgePulse 1.1s var(--ease) 3; border-color: var(--blue-light); }

/* Active nav link */
.nav-links a.active { color: var(--blue-light); font-weight: 700; }
.site-header.scrolled .nav-links a.active { color: var(--blue); }
/* Links inside the open mobile dropdown sit on a white panel — keep them dark */
.nav-links.open a,
body.subpage .site-header .nav-links.open a { color: var(--ink); }
/* Active link inside the open mobile dropdown stays visible on its white panel */
.nav-links.open a.active,
body.subpage .site-header .nav-links.open a.active { color: var(--blue); }

/* ── Inner (sub) pages — solid header + top spacing ────── */
body.subpage { padding-top: 74px; }
body.subpage .site-header { background: rgba(255,255,255,.94); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 11px 0; }
body.subpage .site-header .brand { color: var(--navy); }
body.subpage .site-header .nav-links a { color: var(--ink); }
body.subpage .site-header .nav-links a:hover { color: var(--blue); }
body.subpage .site-header .nav-links a.active { color: var(--blue); }
body.subpage .site-header .menu-toggle span { background: var(--navy); }
body.subpage .audience { padding-top: 40px; }

/* CTA trial note under audience buttons */
.cta-note { margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--gray); display: flex; align-items: flex-start; gap: 7px; max-width: 460px; line-height: 1.4; }
.cta-note .gift { font-size: 16px; flex-shrink: 0; }

/* "How to register" mini-steps inside audience sections */
.join-how { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 11px 15px; margin-bottom: 13px; max-width: 480px; }
.audience.alt .join-how { background: #fff; box-shadow: var(--shadow-sm); }
.join-how h4 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.join-how ol { margin: 0; padding: 0; list-style: none; counter-reset: jh; display: flex; flex-direction: column; gap: 6px; }
.join-how li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.3px; color: var(--ink); font-weight: 600; line-height: 1.42; counter-increment: jh; }
.join-how li::before { content: counter(jh); flex-shrink: 0; width: 21px; height: 21px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.join-how li b { color: var(--navy); font-weight: 800; }

/* ── Reveal animation ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Text first, phone mockup below (more logical on narrow screens) */
  .hero-text { order: -1; }
  .phone { transform: none; width: 250px; height: 510px; }
  .features-grid, .steps { grid-template-columns: 1fr 1fr; }
  .pro-band { grid-template-columns: 1fr; }
  .pro-band .pb-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .audience-grid { grid-template-columns: 1fr; gap: 40px; }
  .audience .aud-phone { order: -1; }
  .audience .phone, .audience.alt .phone { transform: none; }
}
/* Nav collapses earlier now that there are 6 links */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 64px; inset-inline: 14px;
    background: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow); gap: 16px;
  }
  .nav-links.open a { color: var(--ink); }
}
/* Desktop: the screen-one wrapper has no layout effect */
.screen-one { display: contents; }
/* Legal links shown in the desktop nav as a subtle secondary pair (mobile keeps them inside the open menu) */
.nav-links a.nav-legal { font-size: 14px; font-weight: 600; opacity: .82; }
/* thin divider before the first legal link (RTL: sits on its right, between "שאלות נפוצות" and "תנאי שימוש") */
.nav-links a:not(.nav-legal) + .nav-legal {
  border-inline-start: 1px solid currentColor;
  padding-inline-start: 16px;
  margin-inline-start: 2px;
}
.brand-tag { display: none; }
/* Mobile / narrow screens — applies up to 820px so every phone is covered */
@media (max-width: 820px) {
  /* ── Navigation ────────────────────────────────── */
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 60px; inset-inline: 14px;
    background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow); gap: 14px;
  }
  .nav-links.open a { color: var(--ink); }
  .nav-links.open .nav-legal { display: block; color: var(--blue); font-weight: 700; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .features-grid { grid-template-columns: 1fr; }

  /* ── Header on mobile: solid white-ish bar with dark text (matches the desktop scrolled look) ── */
  .site-header,
  .site-header.scrolled {
    padding: 13px 0;
    background: rgba(255,255,255,.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
  }
  .site-header .brand,
  .site-header.scrolled .brand { color: var(--navy); }
  .site-header .nav-links a,
  .site-header.scrolled .nav-links a { color: var(--ink); }
  .site-header .menu-toggle span,
  .site-header.scrolled .menu-toggle span { background: var(--navy); }
  /* stack the brand so the tagline sits below "קרוב" */
  .site-header .brand { flex-direction: column; align-items: flex-start; gap: 1px; }
  /* Tagline below "קרוב" — mobile only, muted grey on the white bar */
  .site-header .brand-tag {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--gray);
    line-height: 1.15;
  }

  /* ── One section = one full screen (no peeking of the next page) ── */
  html { scroll-snap-type: y mandatory; scroll-padding-top: 64px; }
  #why, #different, #how, #pros, #business, #faq, .site-footer {
    min-height: 100vh;
    min-height: 100dvh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* header clearance is handled by scroll-padding-top above — keep only a small breathing gap */
    padding-top: 12px;
  }

  /* First screen = hero (navy) + stats band; natural height so the added phone
     mockup + stats both stay visible without being pushed off by the browser bars */
  .screen-one {
    display: flex;
    flex-direction: column;
    min-height: auto;
    scroll-snap-align: start;
  }
  .screen-one .hero {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 84px 0 14px;
  }
  .screen-one .stats { flex: 0 0 auto; }

  /* ── Global section compaction (fit each section to one screen) ── */
  .section-pad { padding: 26px 0; }
  section[id] { scroll-margin-top: 0; }
  .section-head { margin-bottom: 14px; }
  .section-head h2 { font-size: 20px; line-height: 1.18; }
  .section-head p { font-size: 12.5px; margin-top: 5px; line-height: 1.4; }
  .eyebrow { font-size: 11.5px; margin-bottom: 5px; }

  /* ── Hero: text + a compact phone mockup below the store buttons ── */
  .hero { padding: 74px 0 10px; }
  .hero-grid { gap: 0; }
  /* show a small, flat version of the desktop mockup (scaled as one unit so the
     inner UI shrinks faithfully); negative margin collapses the reserved height */
  .hero .phone-wrap { display: block; margin-top: 6px; }
  .hero .phone {
    transform: scale(.4); transform-origin: top center;
    width: 290px; height: 590px; margin: 0 auto -354px;
  }
  .hero .phone:hover { transform: scale(.4); transform-origin: top center; }
  .hero-badge { font-size: 11.5px; padding: 5px 12px; margin-bottom: 8px; }
  .hero h1 { font-size: 24px; line-height: 1.12; letter-spacing: -.4px; margin-bottom: 8px; }
  .hero-sub { font-size: 13px; line-height: 1.4; margin-bottom: 10px; }
  .hero .stores { gap: 9px; margin-bottom: 9px; }
  .store-badge { min-width: 0; flex: 1; padding: 9px 13px; gap: 8px; }
  .store-badge svg { width: 24px; height: 24px; }
  .store-badge .sb-small { font-size: 9.5px; }
  .store-badge .sb-big { font-size: 14px; }
  .hero-note { font-size: 11.5px; line-height: 1.45; }

  /* ── Stats — compact band at the bottom of the first screen ── */
  .stats-row { grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 12px 0; }
  .stat .num { font-size: 22px; }
  .stat .lbl { font-size: 9.5px; margin-top: 3px; line-height: 1.2; }

  /* ── "במה אנחנו שונים?" — 2×2 compact cards ── */
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 11px; margin: 4px 0 0; }
  .diff-card { flex-direction: column; gap: 4px; padding: 13px 12px; }
  .diff-num { font-size: 20px; }
  .diff-txt h3 { font-size: 13px; margin-bottom: 3px; }
  .diff-txt p { font-size: 11.5px; line-height: 1.38; }

  /* ── "איך זה עובד?" — compact horizontal rows ── */
  .how { min-height: 0; }
  .steps { grid-template-columns: 1fr; gap: 9px; }
  .step { display: flex; align-items: center; text-align: right; gap: 13px; padding: 12px 14px; }
  .step .s-num { margin: 0; width: 38px; height: 38px; font-size: 16px; flex-shrink: 0; }
  .step h3 { font-size: 14.5px; margin-bottom: 2px; }
  .step p { font-size: 12px; line-height: 1.38; }

  /* ── Audience (לבעלי מקצוע / לעסקים) — mockup hidden, perks as titles ── */
  .audience-grid { grid-template-columns: 1fr; gap: 0; }
  .audience .aud-phone { display: none; }
  .audience h2 { font-size: 19px; line-height: 1.16; margin-bottom: 6px; }
  .aud-lead { font-size: 12.5px; line-height: 1.4; margin-bottom: 9px; }
  .aud-perks { grid-template-columns: 1fr 1fr; gap: 5px 12px; margin-bottom: 10px; }
  .aud-perks li .pk { width: 24px; height: 24px; font-size: 12px; }
  .aud-perks .pk-txt strong { font-size: 11.5px; line-height: 1.25; }
  .aud-perks .pk-txt span { display: none; }
  .join-how { padding: 9px 12px; margin-bottom: 9px; }
  .join-how h4 { font-size: 12px; margin-bottom: 4px; }
  .join-how ol { gap: 3px; }
  .join-how li { font-size: 11px; line-height: 1.3; }
  .cta-note { font-size: 11px; margin-top: 7px; }

  /* ── FAQ — compact so all 10 items fit one screen ── */
  #faq.section-pad { padding: 84px 0 28px; }
  #faq .section-head { margin-bottom: 12px; }
  #faq .faq-list { gap: 5px; }
  #faq .faq-item summary { padding: 6px 15px; font-size: 12px; }
  #faq .faq-item summary::after { font-size: 16px; }

  /* ── Pro band CTA ── */
  .pro-band { padding: 32px 20px; }
}

/* ── "למה קרוב?" — Pain vs Relief comparison ───────────── */
.why-compare {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; align-items: stretch; margin: 8px 0 56px;
}
.why-col {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  border-radius: var(--radius); padding: 24px 22px; border: 1px solid var(--line);
}
.why-col-title {
  text-align: center; margin: 0 0 16px;
  font-size: 23px; font-weight: 900; letter-spacing: -.3px;
}
.why-title-bad  { color: #DC2626; }
.why-title-good { color: var(--blue-light); }
.why-before { background: var(--bg-soft); }
.why-after  { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); border-color: transparent; box-shadow: var(--shadow); }

.why-vs {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: var(--navy); z-index: 3;
}

.why-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.why-col li { position: relative; padding-inline-start: 26px; font-size: 14.5px; line-height: 1.5; }
.why-before li { color: var(--ink); }
.why-after  li { color: var(--ice); }
.why-before li::before { content: '✕'; position: absolute; inset-inline-start: 0; top: 1px; color: #EF4444; font-weight: 800; }
.why-after  li::before { content: '✓'; position: absolute; inset-inline-start: 0; top: 1px; color: var(--blue-light); font-weight: 800; }

/* CTA banner (new class — does NOT touch shared .why-cta) */
.why-banner {
  position: relative; overflow: hidden; margin-top: 40px; text-align: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius); padding: 38px 30px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.why-banner-glow {
  position: absolute; top: -45%; inset-inline-start: -8%;
  width: 420px; height: 420px; pointer-events: none;
  background: radial-gradient(circle, rgba(59,130,246,.45), transparent 70%);
}
.why-banner h3 {
  position: relative; color: #fff; font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 800; line-height: 1.3; max-width: 600px;
}
.why-banner p { position: relative; color: var(--ice-2); font-size: 14.5px; max-width: 520px; }
.why-banner .btn { position: relative; margin-top: 4px; }

/* shared centered CTA — still used by the #different section */
.why-cta { text-align: center; margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.why-cta h3 { font-size: clamp(20px, 2.6vw, 27px); font-weight: 800; color: var(--navy); line-height: 1.3; max-width: 620px; }

/* big bold lead line under the #why intro — sized like the section heading */
.why-lead-strong {
  margin-top: 16px;
  font-size: clamp(27px, 3.9vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  line-height: 1.2;
}

/* mobile-only compact comparison — hidden on desktop, shown only in the phone media query */
.why-compare-m { display: none; }

/* ── "למה קרוב?" — phone overrides (placed last so they win the cascade) ── */
@media (max-width: 820px) {
  /* big bold lead line — prominent on a phone */
  .why-lead-strong { font-size: 22px; margin-top: 10px; line-height: 1.22; }

  /* hide the desktop two-column layout; show the compact paired rows instead */
  .why-compare { display: none; }
  .why-compare-m { display: flex; flex-direction: column; gap: 8px; margin: 8px 0 14px; }
  .wcm-row {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 9px 13px; box-shadow: var(--shadow);
    display: flex; flex-direction: column; gap: 4px;
  }
  .wcm-bad, .wcm-good {
    position: relative; padding-inline-start: 22px;
    font-size: 12.5px; line-height: 1.3; font-weight: 600;
  }
  /* keyword + detail: bold the keyword, lighter detail (matches the desktop columns) */
  .wcm-bad { color: #9CA3AF; font-weight: 500; }
  .wcm-bad strong { color: #6B7280; font-weight: 800; }
  .wcm-bad::before { content: '✕'; position: absolute; inset-inline-start: 0; top: 0; color: #DC2626; font-weight: 800; }
  .wcm-good { color: #475569; font-weight: 500; }
  .wcm-good strong { color: var(--navy); font-weight: 800; }
  .wcm-good::before { content: '✓'; position: absolute; inset-inline-start: 0; top: 0; color: var(--blue); font-weight: 800; }

  .why-banner { padding: 18px 16px; margin-top: 14px; gap: 8px; }
  .why-banner h3 { font-size: 14.5px; line-height: 1.34; }
  .why-banner p { font-size: 12.5px; line-height: 1.4; }
  .why-banner .btn { padding: 11px 22px; font-size: 14px; }
  .why-cta { margin-top: 20px; gap: 13px; }
  .why-cta h3 { font-size: 17px; line-height: 1.3; }
}
