/* =====================================================================
   GuyTech — עיצוב האתר
   פלטה: כהה עמוק + כחול חשמלי זוהר (בהשראת האינסטגרם של GuyTech)
   טיפוגרפיה: Karantina לכותרות ומחירים, Heebo לטקסט
   ===================================================================== */

:root {
  --ink: #070c18;
  --ink-2: #0b1222;
  --panel: #0f1829;
  --panel-2: #152238;
  --line: #22345a;
  --line-soft: #182741;
  --electric: #3b9eff;
  --electric-deep: #1f6fdc;
  --glow: #8fd0ff;
  --orange: #ff8a3d;
  --green: #34d399;
  --red: #ff6b6b;
  --text: #eaf2ff;
  --muted: #8fa3c4;
  --muted-2: #5f7396;
  --wa: #25d366;

  --font-display: 'Karantina', 'Heebo', sans-serif;
  --font-body: 'Heebo', 'Segoe UI', Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --glow-shadow: 0 0 0 1px rgba(59, 158, 255, .35), 0 0 30px rgba(59, 158, 255, .25);
  --container: 1140px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: var(--glow); text-decoration: none; }
a:hover { color: #fff; }
button { font-family: inherit; font-size: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--glow); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--electric); color: #fff; }

h1, h2, h3, h4 { margin: 0; line-height: 1.1; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: min(var(--container), 100% - 2rem); margin-inline: auto; }
.display { font-family: var(--font-display); font-weight: 700; letter-spacing: .01em; }
.num { font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ltr { direction: ltr; unicode-bidi: isolate; }

/* ---------- כפתורים ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 1rem; line-height: 1; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--electric), var(--electric-deep));
  color: #fff; box-shadow: 0 8px 24px rgba(59, 158, 255, .35);
}
.btn-primary:hover { color: #fff; box-shadow: 0 10px 32px rgba(59, 158, 255, .55); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--electric); color: #fff; background: rgba(59, 158, 255, .08); }
.btn-wa { background: var(--wa); color: #06281a; }
.btn-wa:hover { background: #3be07a; color: #06281a; transform: translateY(-1px); }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.chip {
  display: inline-flex; align-items: center; gap: .45rem; padding: .35rem .85rem;
  border-radius: 999px; background: var(--panel-2); border: 1px solid var(--line);
  font-size: .85rem; color: var(--muted); font-weight: 500;
}
.chip strong { color: var(--text); }
.chip.is-open { color: var(--green); border-color: rgba(52, 211, 153, .35); background: rgba(52, 211, 153, .08); }
.chip.is-closed { color: var(--orange); border-color: rgba(255, 138, 61, .35); background: rgba(255, 138, 61, .08); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); } 70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }

/* ---------- כותרת עליונה ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(7, 12, 24, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container { display: flex; align-items: center; gap: 1.25rem; height: 100%; }
.logo { display: flex; align-items: center; gap: .6rem; color: var(--text); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; }
.logo .mark { width: 38px; height: 38px; filter: drop-shadow(0 0 10px rgba(59, 158, 255, .55)); }
.logo span b { color: var(--glow); }
.nav { display: flex; gap: .25rem; margin-inline-start: .5rem; }
.nav a { padding: .5rem .8rem; border-radius: 8px; color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav a:hover, .nav a.active { color: #fff; background: rgba(255, 255, 255, .05); }
.search { position: relative; flex: 1; max-width: 340px; margin-inline-start: auto; }
.search input {
  width: 100%; padding: .6rem 2.6rem .6rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--panel); color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s;
}
.search input::placeholder { color: var(--muted-2); }
.search input:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(59, 158, 255, .18); }
.search .ico { position: absolute; inset-inline-end: .9rem; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search-results {
  position: absolute; top: calc(100% + 6px); inset-inline: 0; background: var(--panel-2); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: none; z-index: 60;
}
.search-results.show { display: block; }
.search-results a { display: flex; justify-content: space-between; gap: 1rem; padding: .65rem 1rem; color: var(--text); border-bottom: 1px solid var(--line-soft); font-size: .93rem; }
.search-results a:last-child { border-bottom: 0; }
.search-results a:hover, .search-results a.hl { background: rgba(59, 158, 255, .12); }
.search-results a small { color: var(--muted); }
.header-cta { display: flex; gap: .5rem; align-items: center; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--text); align-items: center; justify-content: center; }

/* תפריט נייד */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: var(--ink);
  background-image: radial-gradient(600px 400px at 80% 0%, rgba(59, 158, 255, .16), transparent 60%);
  display: flex; flex-direction: column; padding: 1.25rem; overflow-y: auto;
  transform: translateX(-100%); transition: transform .3s ease; visibility: hidden;
}
.drawer.open { transform: none; visibility: visible; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.drawer nav { display: flex; flex-direction: column; gap: .25rem; }
.drawer nav a { font-size: 1.35rem; padding: .8rem .5rem; border-bottom: 1px solid var(--line-soft); color: var(--text); font-family: var(--font-display); letter-spacing: .02em; }
.drawer .drawer-foot { margin-top: auto; display: grid; gap: .6rem; }

/* לשוניות ראשיות (מעבדה / מבצעים / טרייד-אין) */
.mode-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 6px;
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: 999px;
}
.mode-tabs a, .mode-tabs button {
  display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem .9rem;
  border-radius: 999px; border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: .95rem; transition: all .2s;
}
.mode-tabs .active { background: linear-gradient(135deg, var(--electric), var(--electric-deep)); color: #fff; box-shadow: 0 6px 18px rgba(59, 158, 255, .35); }
.mode-tabs a:hover:not(.active), .mode-tabs button:hover:not(.active) { color: #fff; background: rgba(255, 255, 255, .05); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 3rem; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(59, 158, 255, .18), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(31, 111, 220, .12), transparent 60%),
    var(--ink);
}
.circuit { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .55; pointer-events: none; }
.circuit path { fill: none; stroke: var(--electric); stroke-width: 1.2; opacity: .35; }
.circuit path.live { stroke: var(--glow); stroke-width: 1.6; opacity: .9; stroke-dasharray: 60 900; stroke-dashoffset: 960; animation: trace 7s linear infinite; filter: drop-shadow(0 0 6px var(--electric)); }
.circuit path.live:nth-child(2n) { animation-duration: 9s; animation-delay: -3s; }
.circuit path.live:nth-child(3n) { animation-duration: 11s; animation-delay: -5s; }
.circuit circle { fill: var(--ink); stroke: var(--electric); stroke-width: 1.2; opacity: .6; }
@keyframes trace { to { stroke-dashoffset: 0; } }

.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; color: var(--glow); font-weight: 600; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--electric); box-shadow: 0 0 10px var(--electric); }
.hero-title { font-family: var(--font-display); font-size: clamp(3.4rem, 8vw, 6.4rem); line-height: .95; margin: .8rem 0 1rem; letter-spacing: .01em; }
.hero-title em { font-style: normal; color: var(--glow); text-shadow: 0 0 30px rgba(59, 158, 255, .6); }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 48ch; margin-bottom: 1.5rem; }
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-bottom: 1.25rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .5rem; }

.hero-stats { display: flex; gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat b { font-family: var(--font-display); font-size: 2rem; line-height: 1; color: #fff; }
.stat b span { color: var(--glow); }
.stat small { color: var(--muted); font-size: .8rem; }

/* ---------- הכרטיס (Ticket) של המחירון ---------- */
.ticket {
  position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 0 1px rgba(59, 158, 255, .12), 0 0 80px rgba(59, 158, 255, .12);
  overflow: hidden;
}
.ticket-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px dashed var(--line); background: linear-gradient(180deg, rgba(59, 158, 255, .08), transparent); }
.ticket-head h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .02em; }
.ticket-head .back { background: transparent; border: 1px solid var(--line); color: var(--muted); border-radius: 8px; padding: .35rem .7rem; font-size: .85rem; }
.ticket-head .back:hover { color: #fff; border-color: var(--electric); }
.ticket-body { padding: 1.25rem; min-height: 340px; }
.ticket-foot { padding: .85rem 1.25rem; border-top: 1px dashed var(--line); color: var(--muted); font-size: .82rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ticket-foot span { display: inline-flex; gap: .35rem; align-items: center; }
/* חורי קריעה בצדדים */
.ticket::before, .ticket::after { content: ''; position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); border: 1px solid var(--line); top: 58px; z-index: 2; }
.ticket::before { inset-inline-start: -11px; }
.ticket::after { inset-inline-end: -11px; }

.steps { display: flex; gap: .4rem; margin-bottom: 1rem; }
.steps span { flex: 1; height: 4px; border-radius: 4px; background: var(--line-soft); position: relative; }
.steps span.done { background: var(--electric); box-shadow: 0 0 10px rgba(59, 158, 255, .6); }
.steps span.cur { background: linear-gradient(90deg, var(--electric), var(--line-soft)); }
.step-label { display: flex; justify-content: space-between; color: var(--muted); font-size: .8rem; margin-bottom: 1rem; }
.step-label b { color: var(--text); }

.grid-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .6rem; }
.pick {
  display: flex; flex-direction: column; align-items: flex-start; gap: .2rem; padding: .85rem .9rem; text-align: start;
  background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: 12px; color: var(--text); transition: all .18s;
}
.pick:hover, .pick:focus-visible { border-color: var(--electric); background: rgba(59, 158, 255, .1); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .3); }
.pick b { font-weight: 700; font-size: .98rem; }
.pick small { color: var(--muted); font-size: .76rem; line-height: 1.3; }
.pick .ico { font-size: 1.4rem; margin-bottom: .2rem; }
.pick .price { color: var(--glow); font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em; }
.grid-pick.models { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); max-height: 330px; overflow: auto; padding-inline-end: .25rem; }
.grid-pick.models::-webkit-scrollbar { width: 6px; }
.grid-pick.models::-webkit-scrollbar-thumb { background: var(--line); border-radius: 6px; }
.filter-input { width: 100%; padding: .65rem .9rem; margin-bottom: .75rem; border-radius: 10px; border: 1px solid var(--line); background: var(--ink-2); color: var(--text); }
.filter-input:focus { outline: none; border-color: var(--electric); }

.opts { display: grid; gap: .5rem; margin: .75rem 0 1rem; }
.opt { display: flex; align-items: center; gap: .75rem; padding: .75rem .9rem; border: 1px solid var(--line-soft); border-radius: 12px; background: var(--panel-2); cursor: pointer; transition: all .15s; }
.opt:hover { border-color: var(--electric); }
.opt.selected { border-color: var(--electric); background: rgba(59, 158, 255, .12); box-shadow: inset 0 0 0 1px var(--electric); }
.opt input { accent-color: var(--electric); width: 18px; height: 18px; margin: 0; }
.opt .lbl { flex: 1; font-weight: 500; }
.opt .lbl small { display: block; color: var(--muted); font-weight: 400; font-size: .78rem; }
.opt .p { font-family: var(--font-display); font-size: 1.35rem; color: var(--glow); letter-spacing: .02em; }
.opt .badge { font-size: .7rem; padding: .15rem .5rem; border-radius: 6px; background: rgba(255, 138, 61, .15); color: var(--orange); font-weight: 700; }

.result { text-align: center; padding: .5rem 0; }
.result .model { color: var(--muted); font-size: .95rem; }
.result .repair { font-size: 1.25rem; font-weight: 700; margin: .1rem 0 .5rem; }
.price-big { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 5rem); line-height: 1; color: #fff; text-shadow: 0 0 40px rgba(59, 158, 255, .55); letter-spacing: .02em; }
.price-big small { font-size: .35em; color: var(--glow); margin-inline-end: .1em; vertical-align: top; }
.price-note { color: var(--muted); font-size: .82rem; margin-top: .25rem; }
.result-actions { display: grid; gap: .6rem; margin-top: 1rem; }
.result-perks { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: .9rem; font-size: .8rem; color: var(--muted); }
.result-perks span::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ---------- סקשנים ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section.alt { background: var(--ink-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: .015em; }
.section-head h2 em { font-style: normal; color: var(--glow); }
.section-head p { color: var(--muted); margin: .35rem 0 0; max-width: 60ch; }
.section-head .more { color: var(--glow); font-weight: 600; white-space: nowrap; }
.section-head .more::after { content: ' ←'; }

.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: -1.5rem; position: relative; z-index: 2; }
.trust-item { display: flex; gap: .85rem; align-items: center; padding: 1rem 1.15rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.trust-item .ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(59, 158, 255, .12); color: var(--glow); font-size: 1.3rem; }
.trust-item b { display: block; font-size: .98rem; }
.trust-item small { color: var(--muted); font-size: .8rem; }

.card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

.brand-card { display: flex; flex-direction: column; gap: .25rem; padding: 1.25rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--text); transition: all .2s; position: relative; overflow: hidden; }
.brand-card::after { content: '←'; position: absolute; inset-inline-start: 1rem; bottom: .9rem; color: var(--electric); opacity: 0; transition: all .2s; transform: translateX(6px); }
.brand-card:hover { border-color: var(--electric); transform: translateY(-3px); box-shadow: var(--glow-shadow); }
.brand-card:hover::after { opacity: 1; transform: none; }
.brand-card .name { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: .02em; }
.brand-card small { color: var(--muted); }
.brand-card .from { margin-top: .5rem; color: var(--glow); font-weight: 600; font-size: .85rem; }

.service-card { display: flex; flex-direction: column; gap: .6rem; padding: 1.5rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.service-card .ico { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, rgba(59, 158, 255, .25), rgba(31, 111, 220, .1)); font-size: 1.6rem; border: 1px solid rgba(59, 158, 255, .3); }
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.service-card .btn { align-self: flex-start; }

/* אינסטגרם */
.ig-head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ig-avatar { width: 72px; height: 72px; border-radius: 50%; padding: 3px; background: conic-gradient(from 200deg, var(--electric), #a855f7, #ec4899, var(--orange), var(--electric)); flex: none; }
.ig-avatar > div { width: 100%; height: 100%; border-radius: 50%; background: var(--ink); display: grid; place-items: center; }
.ig-avatar svg { width: 44px; height: 44px; }
.ig-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.ig-follow { display: flex; gap: .75rem; flex-wrap: wrap; margin-inline-start: auto; }
.ig-follow a { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--line); color: var(--text); font-size: .9rem; background: var(--panel); }
.ig-follow a:hover { border-color: var(--electric); }
.ig-follow a b { color: var(--glow); }
.highlights { display: grid; grid-template-columns: repeat(8, 1fr); gap: 1rem; margin-top: 2rem; }
.hl { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; color: var(--text); }
.hl .ring { width: 84px; height: 84px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, var(--electric), var(--glow)); transition: transform .2s; }
.hl:hover .ring { transform: scale(1.06) rotate(-4deg); }
.hl .ring div { width: 100%; height: 100%; border-radius: 50%; background: var(--panel-2); display: grid; place-items: center; font-size: 2rem; border: 3px solid var(--ink); }
.hl b { font-size: .9rem; }
.hl small { color: var(--muted); font-size: .75rem; }

/* חוות דעת */
.rating-badge { display: inline-flex; align-items: center; gap: .6rem; padding: .6rem 1rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; }
.rating-badge .score { font-family: var(--font-display); font-size: 2rem; color: #fff; line-height: 1; }
.rating-badge .stars { color: #ffc93d; letter-spacing: .05em; }
.rating-badge small { color: var(--muted); display: block; font-size: .78rem; }
.review-card { display: flex; flex-direction: column; gap: .75rem; padding: 1.5rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); position: relative; }
.review-card::before { content: '”'; position: absolute; top: .25rem; inset-inline-start: 1rem; font-family: var(--font-display); font-size: 5rem; color: rgba(59, 158, 255, .18); line-height: 1; }
.review-card .stars { color: #ffc93d; letter-spacing: .1em; font-size: .9rem; }
.review-card p { color: var(--text); flex: 1; font-size: .97rem; }
.review-card .who { display: flex; align-items: center; gap: .75rem; }
.review-card .av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; background: linear-gradient(135deg, var(--electric), var(--electric-deep)); color: #fff; }
.review-card .who small { display: block; color: var(--muted); }

/* שאלות נפוצות */
.faq { display: grid; gap: .6rem; max-width: 820px; margin-inline: auto; }
.faq details { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1rem 1.25rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-display); font-size: 1.6rem; color: var(--glow); transition: transform .2s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line-soft); color: var(--glow); }
.faq .ans { padding: 1rem 1.25rem; color: var(--muted); }

/* צור קשר */
.form { display: grid; gap: .85rem; }
.form label { display: grid; gap: .35rem; font-size: .9rem; color: var(--muted); }
.form input, .form select, .form textarea {
  padding: .75rem .95rem; border-radius: 10px; border: 1px solid var(--line); background: var(--ink-2); color: var(--text); width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--electric); box-shadow: 0 0 0 3px rgba(59, 158, 255, .18); }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 20px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-inline-end: 2.2rem; }
.form select option { background: var(--panel-2); }
.form textarea { min-height: 110px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-note { font-size: .8rem; color: var(--muted-2); }

.contact-info { display: grid; gap: 1rem; }
.info-line { display: flex; gap: .9rem; align-items: flex-start; }
.info-line .ico { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(59, 158, 255, .12); color: var(--glow); }
.info-line b { display: block; }
.info-line small { color: var(--muted); }
.map-box { margin-top: 1rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); aspect-ratio: 16/9; background: var(--panel-2); }
.map-box iframe { width: 100%; height: 100%; border: 0; filter: invert(.9) hue-rotate(180deg) saturate(.7); }

/* ---------- פוטר ---------- */
.site-footer { background: #05091200; border-top: 1px solid var(--line-soft); padding: 3.5rem 0 1.5rem; margin-top: 2rem; background: var(--ink-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { font-size: .85rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; margin-bottom: .9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer ul a { color: var(--text); font-size: .95rem; }
.site-footer ul a:hover { color: var(--glow); }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.social-row { display: flex; gap: .5rem; margin-top: 1rem; }
.social-row a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; color: var(--text); }
.social-row a:hover { border-color: var(--electric); color: var(--glow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: .82rem; }

/* ---------- כפתורים צפים ---------- */
.fab-stack { position: fixed; inset-inline-start: 1rem; bottom: 1rem; display: flex; flex-direction: column; gap: .6rem; z-index: 40; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 25px rgba(0, 0, 0, .4); border: 0; transition: transform .15s; }
.fab:hover { transform: scale(1.07); color: #fff; }
.fab.wa { background: var(--wa); }
.fab.waze { background: #33ccff; color: #05203a; }
.fab.a11y { background: var(--electric); }
.fab svg { width: 28px; height: 28px; }

/* לוח נגישות */
.a11y-panel { position: fixed; inset-inline-start: 1rem; bottom: 5.5rem; width: 260px; background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem; z-index: 45; display: none; }
.a11y-panel.open { display: block; }
.a11y-panel h4 { margin-bottom: .6rem; font-size: 1rem; }
.a11y-panel button { width: 100%; text-align: start; padding: .55rem .7rem; margin-bottom: .35rem; border-radius: 8px; border: 1px solid var(--line-soft); background: var(--panel); color: var(--text); font-size: .9rem; }
.a11y-panel button[aria-pressed="true"] { border-color: var(--electric); background: rgba(59, 158, 255, .15); }
body.a11y-big { font-size: 19px; }
body.a11y-links a { text-decoration: underline; }
body.a11y-contrast { --ink: #000; --ink-2: #000; --panel: #0a0a0a; --panel-2: #111; --line: #666; --line-soft: #444; --muted: #d0d0d0; --muted-2: #bbb; --text: #fff; --electric: #4db2ff; --glow: #9ee0ff; }
body.a11y-nomotion *, body.a11y-nomotion *::before, body.a11y-nomotion *::after { animation: none !important; transition: none !important; }

/* עוגיות */
.cookie { position: fixed; bottom: 1rem; inset-inline-end: 1rem; max-width: 420px; background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.15rem; box-shadow: var(--shadow); z-index: 45; display: none; gap: .75rem; align-items: center; font-size: .85rem; color: var(--muted); }
.cookie.show { display: flex; }
.cookie .btn { flex: none; }

/* ---------- עמודים פנימיים ---------- */
.page-head { padding: 2.5rem 0 1.5rem; }
.crumbs { display: flex; gap: .4rem; flex-wrap: wrap; font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--glow); }
.crumbs span::before { content: '›'; margin-inline-end: .4rem; color: var(--muted-2); }
.page-head h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: .015em; }
.page-head h1 em { font-style: normal; color: var(--glow); }
.page-head .lead { color: var(--muted); font-size: 1.1rem; max-width: 64ch; margin-top: .5rem; }
.page-head .badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }

.model-card { display: flex; flex-direction: column; gap: .2rem; padding: 1rem 1.1rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--text); transition: all .2s; }
.model-card:hover { border-color: var(--electric); transform: translateY(-2px); box-shadow: var(--glow-shadow); }
.model-card b { font-size: 1rem; }
.model-card small { color: var(--muted); font-size: .8rem; }
.model-card .from { color: var(--glow); font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .02em; margin-top: .2rem; }

.price-table { width: 100%; border-collapse: collapse; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.price-table th, .price-table td { padding: .9rem 1.1rem; text-align: start; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.price-table th { font-size: .8rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; background: var(--ink-2); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td.p { font-family: var(--font-display); font-size: 1.35rem; color: var(--glow); letter-spacing: .02em; white-space: nowrap; }
.price-table td .sub { display: grid; gap: .2rem; margin-top: .35rem; font-size: .85rem; color: var(--muted); }
.price-table td .sub span { display: flex; justify-content: space-between; gap: 1rem; max-width: 380px; }
.price-table tr.hl-row { background: rgba(59, 158, 255, .06); }
.table-wrap { overflow-x: auto; }

.sticky-cta { position: sticky; top: calc(var(--header-h) + 1rem); }
.side-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: 0 0 0 1px rgba(59, 158, 255, .12), 0 0 60px rgba(59, 158, 255, .1); }
.side-card h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: .02em; margin-bottom: .5rem; }
.side-card .list { display: grid; gap: .5rem; margin: 1rem 0; font-size: .9rem; color: var(--muted); }
.side-card .list span::before { content: '✓ '; color: var(--green); }
.layout-2 { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.layout-2 > * { min-width: 0; }

.toolbar { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; margin: 1.5rem 0; }
.toolbar .seg { display: inline-flex; padding: 4px; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 999px; gap: 2px; }
.toolbar .seg button { border: 0; background: transparent; color: var(--muted); padding: .45rem .9rem; border-radius: 999px; font-size: .88rem; font-weight: 600; }
.toolbar .seg button.active { background: var(--panel-2); color: #fff; box-shadow: inset 0 0 0 1px var(--electric); }
.toolbar select { padding: .5rem 2.2rem .5rem .9rem; border-radius: 999px; border: 1px solid var(--line-soft); background: var(--panel); color: var(--text); appearance: none; }
.toolbar .count { color: var(--muted); font-size: .88rem; margin-inline-start: auto; }

/* מכשירים במבצע */
.deal-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; position: relative; }
.deal-card:hover { border-color: var(--electric); transform: translateY(-3px); box-shadow: var(--glow-shadow); }
.deal-visual { position: relative; height: 200px; display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, hsl(var(--h) 80% 30% / .6), transparent 65%), var(--ink-2); }
.phone-svg { width: 84px; height: 168px; }
.deal-tag { position: absolute; top: .85rem; inset-inline-start: .85rem; padding: .25rem .6rem; border-radius: 6px; font-size: .72rem; font-weight: 700; background: var(--orange); color: #2a1200; }
.deal-cond { position: absolute; top: .85rem; inset-inline-end: .85rem; padding: .25rem .6rem; border-radius: 6px; font-size: .72rem; font-weight: 700; background: rgba(255, 255, 255, .08); color: var(--text); border: 1px solid var(--line); }
.deal-cond.new { color: var(--green); border-color: rgba(52, 211, 153, .4); }
.deal-body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.deal-body h3 { font-size: 1.15rem; }
.deal-body .spec { color: var(--muted); font-size: .85rem; }
.deal-body .perks { display: flex; gap: .6rem; flex-wrap: wrap; font-size: .75rem; color: var(--muted); margin-top: .3rem; }
.deal-body .perks span { padding: .15rem .5rem; border-radius: 6px; background: var(--panel-2); }
.deal-price { display: flex; align-items: baseline; gap: .6rem; margin-top: auto; padding-top: .75rem; }
.deal-price b { font-family: var(--font-display); font-size: 2.2rem; color: #fff; letter-spacing: .02em; line-height: 1; }
.deal-price s { color: var(--muted-2); font-size: .9rem; }
.deal-price .save { margin-inline-start: auto; font-size: .78rem; font-weight: 700; color: var(--green); }
.deal-body .btn { margin-top: .75rem; }

.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.how-step { padding: 1.5rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.how-step .n { font-family: var(--font-display); font-size: 2.6rem; color: var(--glow); line-height: 1; margin-bottom: .5rem; }
.how-step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.how-step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* טרייד-אין */
.tradein-result { text-align: center; padding: 1.5rem; border: 1px dashed var(--line); border-radius: var(--radius-lg); background: rgba(59, 158, 255, .05); }
.tradein-result .lbl { color: var(--muted); font-size: .9rem; }
.tradein-result .range { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 4rem); color: #fff; text-shadow: 0 0 30px rgba(59, 158, 255, .5); line-height: 1.1; }
.tradein-result .bonus { color: var(--green); font-weight: 600; font-size: .9rem; margin-top: .4rem; }
.cond-grid { display: grid; gap: .5rem; }
.cond { display: flex; gap: .75rem; align-items: center; padding: .8rem .95rem; border: 1px solid var(--line-soft); border-radius: 12px; background: var(--panel-2); cursor: pointer; }
.cond.selected { border-color: var(--electric); background: rgba(59, 158, 255, .12); }
.cond input { accent-color: var(--electric); width: 18px; height: 18px; margin: 0; }
.cond b { display: block; }
.cond small { color: var(--muted); }

/* אביזרים */
.acc-card { display: flex; flex-direction: column; gap: .4rem; padding: 1.25rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); transition: all .2s; }
.acc-card:hover { border-color: var(--electric); }
.acc-card .ico { font-size: 2rem; }
.acc-card h3 { font-size: 1.05rem; }
.acc-card small { color: var(--muted); font-size: .82rem; }
.acc-card .note { color: var(--glow); font-size: .78rem; }
.acc-card .row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .75rem; }
.acc-card .p { font-family: var(--font-display); font-size: 1.7rem; color: #fff; }
.acc-card .qty { display: inline-flex; align-items: center; gap: .3rem; }
.acc-card .qty button { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line); background: var(--panel-2); color: var(--text); }
.cart-bar { position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--panel-2); border: 1px solid var(--electric); border-radius: 999px; padding: .6rem .6rem .6rem 1.25rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow), 0 0 30px rgba(59, 158, 255, .3); z-index: 46; transition: transform .3s; white-space: nowrap; }
.cart-bar.show { transform: translateX(-50%); }
.cart-bar b { font-family: var(--font-display); font-size: 1.4rem; color: var(--glow); }

/* אודות */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-visual { position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); background: radial-gradient(circle at 30% 30%, rgba(59, 158, 255, .35), transparent 55%), var(--panel); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; }
.about-visual svg { width: 60%; filter: drop-shadow(0 0 30px rgba(59, 158, 255, .5)); }
.about-visual img { width: 72%; border-radius: 28px; box-shadow: 0 0 0 1px rgba(59, 158, 255, .4), 0 0 60px rgba(59, 158, 255, .45), 0 30px 60px rgba(0, 0, 0, .5); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value { padding: 1.5rem; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.value .big { font-family: var(--font-display); font-size: 2.6rem; color: var(--glow); line-height: 1; }
.value h3 { font-size: 1.1rem; margin: .4rem 0; }
.value p { color: var(--muted); margin: 0; font-size: .93rem; }

/* אנימציית הופעה */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

.empty { text-align: center; padding: 3rem 1rem; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.empty b { display: block; color: var(--text); font-size: 1.1rem; margin-bottom: .3rem; }

/* =====================================================================
   שפה עיצובית: "לוח עבודה של מעבדה" — במקום קוביות צפות:
   פאנל אחד עם קווי הפרדה דקים (כמו לוח PCB), רשימות מחירון עם נקודות
   הובלה (כמו לוח מחירים בחנות), בועות וואטסאפ להמלצות, מדבקות מחיר.
   ===================================================================== */
.pcb { background-image: radial-gradient(circle, rgba(59, 158, 255, .13) 1px, transparent 1.4px); background-size: 22px 22px; }
.section.alt { background: radial-gradient(circle, rgba(59, 158, 255, .11) 1px, transparent 1.4px) 0 0 / 22px 22px, var(--ink-2); }

/* לוגו כתמונה */
.logo img.mark { width: 40px; height: 40px; border-radius: 11px; object-fit: cover; box-shadow: 0 0 0 1px rgba(59, 158, 255, .4), 0 0 14px rgba(59, 158, 255, .45); }

/* פס אמון — קו מפרט אחד, בלי קופסאות */
.trust { display: flex; flex-wrap: wrap; gap: 0; margin-top: -1.5rem; position: relative; z-index: 2; border-block: 1px solid var(--line); background: linear-gradient(90deg, transparent, rgba(59, 158, 255, .09) 30%, rgba(59, 158, 255, .09) 70%, transparent); }
.trust::before { content: ''; position: absolute; top: -1px; inset-inline: 18%; height: 1px; background: linear-gradient(90deg, transparent, var(--glow), transparent); box-shadow: 0 0 14px var(--electric); }
.trust-item { flex: 1 1 200px; background: none; border: 0; border-radius: 0; border-inline-start: 1px solid var(--line-soft); padding: 1.1rem 1.35rem; }
.trust-item:first-child { border-inline-start: 0; }
.trust-item .ico { background: none; width: auto; height: auto; font-size: 1.6rem; filter: drop-shadow(0 0 8px rgba(59, 158, 255, .5)); }

/* לוח מחירים — שורות עם נקודות הובלה */
.brand-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3.5rem; }
.brand-row, .model-row { display: flex; align-items: baseline; gap: .7rem; padding: .85rem .35rem; border-bottom: 1px solid var(--line-soft); color: var(--text); transition: border-color .2s, background .2s; }
.brand-row .name { font-family: var(--font-display); font-size: 2rem; letter-spacing: .02em; line-height: 1; white-space: nowrap; transition: color .2s, text-shadow .2s; }
.brand-row small, .model-row small { color: var(--muted); font-size: .8rem; white-space: nowrap; }
.leader { flex: 1; min-width: 1.25rem; border-bottom: 2px dotted var(--line); transform: translateY(-.35em); opacity: .9; }
.brand-row .from, .model-row .from { color: var(--glow); font-family: var(--font-display); font-size: 1.45rem; letter-spacing: .02em; white-space: nowrap; line-height: 1; }
.brand-row:hover, .model-row:hover { border-bottom-color: var(--electric); background: linear-gradient(90deg, transparent, rgba(59, 158, 255, .06)); }
.brand-row:hover .name, .model-row:hover b { color: var(--glow); text-shadow: 0 0 18px rgba(59, 158, 255, .55); }
.model-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; }
.model-row b { font-weight: 700; white-space: nowrap; transition: color .2s; }

/* לוח עבודה — פאנל אחד מחולק בקווים */
.bench { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: rgba(15, 24, 41, .6); }
.bench-item { position: relative; display: flex; flex-direction: column; gap: .6rem; padding: 1.75rem; border-inline-start: 1px solid var(--line-soft); border-top: 1px solid var(--line-soft); transition: background .2s; }
.bench-item:nth-child(-n+3) { border-top: 0; }
.bench-item:nth-child(3n+1) { border-inline-start: 0; }
.bench-item:hover { background: rgba(59, 158, 255, .07); }
.bench-item .ico { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; background: var(--ink); border: 1px solid var(--electric); box-shadow: 0 0 18px rgba(59, 158, 255, .35), inset 0 0 12px rgba(59, 158, 255, .18); }
.bench-item h3 { font-size: 1.2rem; }
.bench-item p { color: var(--muted); font-size: .95rem; flex: 1; margin: 0; }
.bench-item a.go { color: var(--glow); font-weight: 600; font-size: .92rem; }
.bench-item a.go::after { content: ' ←'; display: inline-block; transition: transform .2s; }
.bench-item:hover a.go::after { transform: translateX(-4px); }

/* המלצות כשיחת וואטסאפ */
.chat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem 1.5rem; }
.chat-col { display: flex; flex-direction: column; gap: .45rem; }
.bubble { position: relative; max-width: 94%; align-self: flex-start; background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: 16px; border-start-start-radius: 4px; padding: .7rem .9rem .5rem; font-size: .95rem; line-height: 1.5; box-shadow: 0 6px 18px rgba(0, 0, 0, .25); }
.bubble.me { align-self: flex-end; background: rgba(59, 158, 255, .17); border-color: rgba(59, 158, 255, .35); border-start-start-radius: 16px; border-start-end-radius: 4px; }
.bubble .from { display: flex; justify-content: space-between; gap: .75rem; color: var(--glow); font-weight: 700; font-size: .84rem; margin-bottom: .2rem; }
.bubble .from .stars { color: #ffc93d; font-size: .75rem; letter-spacing: .06em; }
.bubble .time { display: flex; justify-content: flex-end; align-items: center; gap: .3rem; color: var(--muted-2); font-size: .7rem; margin-top: .25rem; }
.bubble .time .ticks { color: #53bdeb; font-size: .8rem; letter-spacing: -.25em; margin-inline-end: .3em; }
.chat-day { justify-self: center; grid-column: 1 / -1; padding: .25rem .75rem; border-radius: 8px; background: var(--panel-2); color: var(--muted); font-size: .75rem; margin-bottom: -.25rem; }

/* שאלות נפוצות — קווים במקום קופסאות */
.faq details { background: transparent; border: 0; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
.faq summary { padding: 1.1rem .5rem; }
.faq details[open] summary { border-bottom: 0; }
.faq .ans { padding: 0 .5rem 1.1rem; }

/* שלבים — ציר זמן זוהר */
.how { position: relative; }
.how::before { content: ''; position: absolute; top: 28px; inset-inline: 16%; height: 1px; background: linear-gradient(90deg, var(--line), var(--electric), var(--line)); }
.how-step { background: none; border: 0; text-align: center; padding: 0 1rem; }
.how-step .n { width: 56px; height: 56px; margin: 0 auto .9rem; border-radius: 50%; display: grid; place-items: center; font-size: 1.7rem; background: var(--ink); border: 1px solid var(--electric); box-shadow: 0 0 20px rgba(59, 158, 255, .4); position: relative; }

/* מדבקת מחיר על מכשיר */
.sticker { position: absolute; bottom: 14px; inset-inline-start: 14px; padding: .25rem .9rem .25rem 1.3rem; background: var(--glow); color: #06213f; font-family: var(--font-display); font-size: 1.7rem; line-height: 1; letter-spacing: .02em; transform: rotate(-4deg); clip-path: polygon(0 50%, 14px 0, 100% 0, 100% 100%, 14px 100%); box-shadow: 0 8px 20px rgba(0, 0, 0, .4); }
.sticker::before { content: ''; position: absolute; inset-inline-start: 7px; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); transform: translateY(-50%); }
.deal-visual { background: radial-gradient(circle at 50% 40%, hsl(var(--h) 80% 30% / .6), transparent 65%), radial-gradient(circle, rgba(59, 158, 255, .13) 1px, transparent 1.4px) 0 0 / 18px 18px, var(--ink-2); }
.deal-visual .phone-svg { transform: rotate(-8deg); filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .5)); transition: transform .3s; }
.deal-card:hover .phone-svg { transform: rotate(-3deg) translateY(-4px); }

/* רצועת קטגוריות של החנות המקוונת */
.store-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: .6rem; }
.store-cat { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: 1rem .5rem; border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--text); text-align: center; background: rgba(15, 24, 41, .6); transition: all .2s; }
.store-cat .ico { font-size: 1.6rem; }
.store-cat b { font-size: .82rem; font-weight: 600; }
.store-cat:hover { border-color: var(--electric); transform: translateY(-3px); box-shadow: var(--glow-shadow); color: #fff; }

/* אודות — ערכים בפאנל אחד */
.values { gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: rgba(15, 24, 41, .6); }
.value { border: 0; border-radius: 0; border-inline-start: 1px solid var(--line-soft); border-top: 1px solid var(--line-soft); }
.value:nth-child(-n+3) { border-top: 0; }
.value:nth-child(3n+1) { border-inline-start: 0; }

/* ---------- רספונסיב ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-4, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .bench, .chat, .values { grid-template-columns: 1fr 1fr; }
  .store-strip { grid-template-columns: repeat(4, 1fr); }
  .bench-item:nth-child(3n+1), .value:nth-child(3n+1) { border-inline-start: 1px solid var(--line-soft); }
  .bench-item:nth-child(odd), .value:nth-child(odd) { border-inline-start: 0; }
  .bench-item:nth-child(3), .value:nth-child(3) { border-top: 1px solid var(--line-soft); }
  .highlights { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .layout-2 { grid-template-columns: 1fr; }
  .sticky-cta { position: static; }
  .nav { display: none; }
  .search { max-width: none; }
}
@media (max-width: 720px) {
  .burger { display: inline-flex; }
  .header-cta .btn-wa { display: none; }
  .search { display: none; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.6rem); }
  .grid-2, .grid-3, .grid-5, .how, .values, .about-hero { grid-template-columns: 1fr; }
  .trust-item { flex-basis: 50%; padding: .8rem; flex-direction: column; align-items: flex-start; gap: .4rem; }
  .trust-item:nth-child(odd) { border-inline-start: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .brand-list, .model-list, .chat, .bench, .values { grid-template-columns: 1fr; }
  .bench-item, .value { border-inline-start: 0; border-top: 1px solid var(--line-soft); }
  .bench-item:first-child, .value:first-child { border-top: 0; }
  .brand-row .name { font-size: 1.6rem; }
  .store-strip { grid-template-columns: repeat(2, 1fr); }
  .how::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: repeat(4, 1fr); gap: .5rem; }
  .hl .ring { width: 66px; height: 66px; }
  .hl .ring div { font-size: 1.5rem; }
  .mode-tabs a, .mode-tabs button { font-size: .82rem; padding: .6rem .4rem; }
  .form .row { grid-template-columns: 1fr; }
  .ticket-body { padding: 1rem; }
  .grid-pick { grid-template-columns: repeat(2, 1fr); }
  .grid-pick.models { grid-template-columns: 1fr 1fr; }
  .cookie { inset-inline: 1rem; max-width: none; flex-wrap: wrap; }
  .fab-stack { bottom: .75rem; inset-inline-start: .75rem; }
  .fab { width: 48px; height: 48px; }
  .cart-bar { width: calc(100% - 2rem); justify-content: space-between; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .toolbar .seg { flex-wrap: wrap; border-radius: 16px; max-width: 100%; }
  .toolbar .count { margin-inline-start: 0; width: 100%; }
  /* טבלת מחירים → כרטיסים */
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; }
  .price-table thead { display: none; }
  .price-table tr { display: grid; grid-template-columns: 1fr auto; gap: .3rem .75rem; padding: .9rem 1rem; border-bottom: 1px solid var(--line-soft); }
  .price-table td { padding: 0; border: 0; }
  .price-table td.p { grid-column: 2; grid-row: 1; font-size: 1.2rem; }
  .price-table td:nth-child(2) { grid-column: 1 / -1; }
  .price-table td:nth-child(4) { grid-column: 1 / -1; margin-top: .4rem; }
  .price-table td .sub span { max-width: none; }
}
/* בטלפון האנימציה הזוחלת נראית כמו סרגל טעינה, אז משאירים קווים סטטיים */
@media (max-width: 820px) {
  .circuit { opacity: .3; }
  .circuit path.live {
    animation: none; stroke-dasharray: none; stroke-dashoffset: 0;
    opacity: .5; stroke-width: 1.1; filter: none;
  }
  .circuit circle { opacity: .45; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .site-header, .fab-stack, .cookie, .a11y-panel, .site-footer, .mode-tabs { display: none !important; }
  body { background: #fff; color: #000; }
}
