/* ═══════════════════════════════════════════════
   QuickTech — Global Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&family=Jura:wght@300;400&family=Big+Shoulders+Display:wght@700;800;900&display=swap');

:root {
  --navy:       #0A1629;
  --navy-mid:   #112044;
  --blue:       #2563EB;
  --blue-lt:    #60A5FA;
  --blue-pale:  #EFF6FF;
  --white:      #FFFFFF;
  --slate:      #64748B;
  --slate-lt:   #94A3B8;
  --text:       #1E293B;
  --border:     #E2E8F0;
  --bg:         #F8FAFC;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(10,22,41,.08);
  --shadow-lg:  0 8px 40px rgba(10,22,41,.14);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Rubik', 'Segoe UI', Arial, sans-serif;
  direction: rtl;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ─────────────────────────────── */
h1,h2,h3,h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Layout ─────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Logo (PNG image) ────────────────────────── */
.site-logo-img {
  height: 120px;
  width: 360px;
  display: block;
  object-fit: contain;
  object-position: right center;
  flex-shrink: 0;
}
/* Footer CSS logo (kept for dark background) */
.logo-wrap { display: flex; flex-direction: column; align-items: flex-end; line-height: 1; }
.logo-quick {
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: .78rem;
  letter-spacing: .38em;
  color: var(--navy);
  text-transform: uppercase;
}
.logo-tech  {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--blue);
  line-height: .9;
  letter-spacing: -.01em;
}
.logo-bar      { width: 100%; height: 3px; background: var(--blue); margin-bottom: 2px; }
.logo-subtitle {
  font-family: 'Jura', sans-serif;
  font-size: .46rem;
  letter-spacing: .18em;
  color: var(--slate-lt);
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-brand .logo-quick    { color: #93C5FD; }
.footer-brand .logo-bar      { background: var(--blue); }
.footer-brand .logo-subtitle { color: #475569; }

/* ── Header ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(10,22,41,.10); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}

.topbar {
  display: none;
  background: var(--navy);
  color: #93C5FD;
  font-size: .78rem;
  padding: 6px 0;
  text-align: center;
  letter-spacing: .04em;
}
.topbar a { color: #93C5FD; }
.topbar a:hover { color: var(--white); }

nav ul { display: flex; gap: 4px; list-style: none; }
nav a  {
  padding: 8px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--text);
  transition: background var(--transition), color var(--transition);
}
nav a:hover, nav a.active { background: var(--blue-pale); color: var(--blue); }

.btn-nav {
  background: var(--blue); color: var(--white) !important;
  padding: 9px 20px !important; border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav:hover { background: #1D4ED8 !important; transform: translateY(-1px); }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  border: none; transition: all var(--transition);
  font-family: 'Rubik', sans-serif;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover { background: #1D4ED8; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,.4); }

.btn-ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ── Hero ────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, #1a3a8f44, transparent),
              radial-gradient(ellipse 40% 40% at 80% 20%, #2563eb22, transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--blue-lt); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; flex: 0 0 32px; height: 2px; background: var(--blue); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--white); }
.hero-sub { font-size: 1.1rem; color: #93C5FD; margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 36px;
  backdrop-filter: blur(8px);
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-item { text-align: center; }
.stat-num  { font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--blue-lt); }
.stat-lbl  { font-size: .82rem; color: #93C5FD; margin-top: 4px; }

/* ── Services Grid ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0; left: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.service-card p  { font-size: .88rem; color: var(--slate); line-height: 1.65; }

/* ── Stats Strip ─────────────────────────────── */
.stats-strip { background: var(--navy); color: var(--white); padding: 56px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.big-num  { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.big-num em { color: var(--blue-lt); font-style: normal; }
.big-lbl  { font-size: .85rem; color: #93C5FD; margin-top: 6px; }

/* ── Reviews ─────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card  {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars    { color: #F59E0B; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: .95rem; color: var(--text); line-height: 1.75; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.author-name  { font-weight: 600; font-size: .9rem; }
.author-role  { font-size: .78rem; color: var(--slate); }
.google-badge { font-size: .72rem; color: var(--slate-lt); margin-top: 4px; display: flex; align-items: center; gap: 4px; }

/* ── Why Us ──────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.why-card h3 { margin-bottom: 4px; font-size: 1rem; }
.why-card p  { font-size: .88rem; color: var(--slate); }

/* ── Clients ─────────────────────────────────── */
.clients-strip { background: var(--bg); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-label { text-align: center; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 28px; }
.clients-row { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; align-items: center; }
.client-pill {
  padding: 8px 20px; border-radius: 30px;
  background: var(--white); border: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--slate);
  transition: all var(--transition);
}
.client-pill:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.client-logo {
  height: 38px; width: auto; max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%) opacity(55%);
  transition: filter var(--transition), transform var(--transition);
}
.client-logo:hover { filter: grayscale(0%) opacity(100%); transform: translateY(-2px); }

/* ── CTA Section ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 100%);
  color: var(--white); text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: #93C5FD; font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────── */
.site-footer { background: var(--navy); color: #93C5FD; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-quick { color: #93C5FD; }
.footer-brand .logo-bar   { background: var(--blue); }
.footer-desc { font-size: .88rem; color: #64748B; margin-top: 14px; line-height: 1.8; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a  { font-size: .85rem; color: #CBD5E1; transition: color var(--transition); }
.footer-col a:hover { color: var(--blue-lt); }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .85rem; color: #CBD5E1; }
.contact-item strong { color: var(--white); }
.footer-bottom { border-top: 1px solid #1e3a5f; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: #334155; }

/* ── WhatsApp Float ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 20px; left: 20px; z-index: 999;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  width: 52px;
}
.wa-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-label {
  background: var(--white); color: var(--text);
  font-size: .82rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  position: absolute; bottom: 58px; left: 0;
  opacity: 0; transform: translateY(4px);
  transition: all var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-label { opacity: 1; transform: translateY(0); }

/* ── About Page ──────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.about-img-wrap {
  border-radius: 20px; overflow: hidden;
  background: transparent;
  aspect-ratio: 3/4;
  display: flex; align-items: flex-start; justify-content: center;
  font-size: 6rem; color: var(--blue);
  position: relative;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: top center;
}
.value-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 8px; flex-shrink: 0; }
.value-item p { font-size: .95rem; color: var(--slate); }
.value-item strong { color: var(--text); }

/* ── Contact Page ────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px; font-size: .95rem;
  font-family: 'Rubik', sans-serif;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-info-card {
  background: var(--navy); color: var(--white);
  border-radius: 20px; padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; font-size: 1.3rem; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(37,99,235,.25); color: var(--blue-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-label { font-size: .78rem; color: #64748B; margin-bottom: 2px; }
.info-value { font-size: .95rem; color: var(--white); font-weight: 500; }
.info-value a { color: var(--blue-lt); }

/* ── Page Hero (inner pages) ─────────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 15% 50%, #1a3a8f44, transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: #93C5FD; margin-top: 12px; font-size: 1.1rem; }
.breadcrumb   { color: #64748B; font-size: .82rem; margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: #64748B; }
.breadcrumb a:hover { color: var(--blue-lt); }

/* ── Hamburger / Mobile ──────────────────────── */
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px 4px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.ham span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* Topbar responsive spans */
.tb-addr { display: inline; }

/* ════════════════════════════════════════════════
   TABLET — 900px
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav → hamburger */
  nav          { display: none; }
  nav.open     {
    display: block;
    position: absolute; top: 100%; right: 0; left: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    box-shadow: var(--shadow);
    z-index: 200;
  }
  nav.open ul  { flex-direction: column; gap: 2px; }
  nav.open a   { display: block; padding: 12px 14px; font-size: 1rem; }
  .ham         { display: flex; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }

  /* Layout */
  .hero-grid    { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-card    { display: none; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .stats-row    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { aspect-ratio: 3/2; max-height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .reviews-grid  { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .tb-addr      { display: none; }
}

/* ════════════════════════════════════════════════
   MOBILE — 640px
   ════════════════════════════════════════════════ */
@media (max-width: 640px) {
  html { font-size: 15px; }

  .container  { padding: 0 16px; }
  .section    { padding: 56px 0; }
  .section-sm { padding: 44px 0; }

  /* Topbar — phone only */
  .topbar        { font-size: .72rem; padding: 5px 0; }
  .tb-email      { display: none; }
  .tb-sep-email  { display: none; }

  /* Hero */
  .hero          { min-height: auto; padding: 52px 0 44px; }
  .hero h1       { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-sub      { font-size: .95rem; }
  .hero-actions  { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card  { padding: 22px 18px; }

  /* Stats strip */
  .stats-strip   { padding: 40px 0; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .big-num       { font-size: 2.4rem; }
  .big-lbl       { font-size: .78rem; }

  /* Hero stats card hidden already at 900px */

  /* Why */
  .why-grid  { grid-template-columns: 1fr; gap: 14px; }
  .why-card  { flex-direction: row; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card  { padding: 22px 18px; }

  /* Clients strip */
  .clients-row   { gap: 18px; }
  .client-logo   { height: 30px; max-width: 90px; }
  .clients-strip { padding: 32px 0; }

  /* About */
  .about-grid     { gap: 32px; }
  .about-img-wrap { aspect-ratio: 4/3; max-height: 300px; }
  .value-list     { gap: 12px; }

  /* Contact */
  .contact-info-card { padding: 28px 20px; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .site-footer   { padding: 48px 0 24px; }

  /* Buttons */
  .btn { padding: 13px 22px; font-size: .95rem; }

  /* Page hero (inner pages) */
  .page-hero { padding: 52px 0 40px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Accessibility panel — full width */
  #access-panel { right: 10px; bottom: 80px; width: calc(100vw - 20px); max-width: 310px; }
  #access-btn   { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.25rem; }
  .wa-float     { bottom: 14px; left: 14px; width: 48px; }
  .wa-btn       { width: 50px; height: 50px; font-size: 1.5rem; }
  .wa-label     { display: none; }
}

/* ════════════════════════════════════════════════
   SMALL PHONES — 400px
   ════════════════════════════════════════════════ */
@media (max-width: 400px) {
  html { font-size: 14px; }
  .container { padding: 0 12px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .big-num   { font-size: 2rem; }
  .hero h1   { font-size: 1.6rem; }
  .logo-tech { font-size: 1.7rem; }
  .logo-quick { font-size: .68rem; }
}

/* ══════════════════════════════════════════════
   נגישות — Accessibility Widget
   ══════════════════════════════════════════════ */
#access-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 1001;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--blue); color: white;
  border: 3px solid white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 20px rgba(37,99,235,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  outline: none;
}
#access-btn:hover  { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,99,235,.55); }
#access-btn:focus  { outline: 3px solid #FFD700; outline-offset: 2px; }

#access-panel {
  position: fixed; bottom: 94px; right: 28px; z-index: 1001;
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 18px;
  box-shadow: 0 8px 40px rgba(10,22,41,.18);
  width: 250px; display: none; direction: rtl;
}
#access-panel.open { display: block; }
#access-panel h4 {
  font-size: .9rem; font-weight: 700; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.acc-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; gap: 8px;
}
.acc-row label { font-size: .82rem; color: var(--text); }
.acc-size-btns { display: flex; gap: 5px; }
.acc-size-btns button {
  width: 28px; height: 28px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--bg);
  cursor: pointer; font-weight: 700; font-size: .82rem;
  font-family: 'Rubik', sans-serif; line-height: 1;
  transition: all var(--transition);
}
.acc-size-btns button:hover { background: var(--blue); color: white; border-color: var(--blue); }
.acc-toggle {
  position: relative; width: 42px; height: 22px;
  border-radius: 11px; background: var(--border);
  border: none; cursor: pointer;
  transition: background var(--transition); flex-shrink: 0;
}
.acc-toggle::after {
  content: ''; position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: white; top: 3px; right: 3px;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.acc-toggle.on { background: var(--blue); }
.acc-toggle.on::after { transform: translateX(-20px); }
.acc-reset {
  width: 100%; padding: 8px; margin-top: 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; font-size: .8rem; cursor: pointer;
  font-family: 'Rubik', sans-serif; color: var(--slate);
  transition: all var(--transition);
}
.acc-reset:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* Accessibility body classes */
body.acc-contrast  { filter: contrast(1.6) brightness(1.05); }
body.acc-gray      { filter: grayscale(100%); }
body.acc-contrast.acc-gray { filter: contrast(1.6) grayscale(100%); }
body.acc-links  a  { background: #FFD700 !important; color: #000 !important; text-decoration: underline !important; border-radius: 2px; }
body.acc-font, body.acc-font * { font-family: Arial, Helvetica, sans-serif !important; letter-spacing: .03em !important; }
body.acc-anim *, body.acc-anim *::before, body.acc-anim *::after { animation: none !important; transition: none !important; }
body.acc-cursor, body.acc-cursor * { cursor: crosshair !important; }

/* ══════════════════════════════════════════════
   אבטחה — Security (no copy/right-click)
   ══════════════════════════════════════════════ */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
input, textarea, select {
  -webkit-user-select: text;
  user-select: text;
}


/* ═══════════════════════════════════════════════
   NEW FEATURES — Support Tab, Side Assistant,
   New Nav Items (תיקון 13 / שאלון מחשוב)
   ═══════════════════════════════════════════════ */

/* ── Nav: תמיכה טכנית special button ──────────── */
.btn-nav-support {
  background: #16A34A !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav-support:hover { background: #15803D !important; transform: translateY(-1px); }

/* ── Support Sticky Side Tab (vertical, right edge) */
.support-side-tab {
  position: fixed;
  left: 0;
  top: 46%;
  z-index: 998;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: var(--blue);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 14px 8px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  box-shadow: 2px 0 16px rgba(37,99,235,.35);
  transition: background .2s, padding .2s;
  text-decoration: none;
}
.support-side-tab:hover { background: #1D4ED8; padding-right: 14px; color: #fff; }

/* ── Side Assistant Widget ─────────────────────── */
.side-assistant {
  position: fixed;
  bottom: 84px;
  left: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.side-assistant-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,.45);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(10,22,41,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
  position: relative;
}
.side-assistant-btn:hover { transform: scale(1.1); background: var(--blue); }
.side-assistant-btn .pulse {
  position: absolute;
  top: 2px; right: 2px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22C55E;
  border: 2px solid #fff;
}

.side-assistant-panel {
  display: none;
  position: absolute;
  bottom: 62px;
  left: 0;
  width: 270px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(10,22,41,.18);
  overflow: hidden;
  animation: slideUp .25s ease;
}
.side-assistant-panel.open { display: block; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.asst-head {
  background: var(--navy);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.asst-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.asst-head-text h4 { color: #fff; font-size: .92rem; margin-bottom: 2px; }
.asst-head-text p  { color: #93C5FD; font-size: .74rem; }

.asst-body { padding: 16px; }
.asst-greeting { font-size: .88rem; color: var(--text); margin-bottom: 14px; line-height: 1.55; }

.asst-actions { display: flex; flex-direction: column; gap: 8px; }
.asst-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all .18s;
  cursor: pointer;
  background: #fff;
  font-family: 'Rubik', sans-serif;
  width: 100%;
  text-align: right;
}
.asst-action:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.asst-action .asst-icon { font-size: 1.1rem; flex-shrink: 0; }

.asst-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }

.asst-mini-form { display: flex; flex-direction: column; gap: 8px; }
.asst-mini-form input, .asst-mini-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .83rem;
  font-family: 'Rubik', sans-serif;
  color: var(--text);
  direction: rtl;
  resize: none;
  transition: border-color .2s;
}
.asst-mini-form input:focus, .asst-mini-form textarea:focus {
  outline: none; border-color: var(--blue);
}
.asst-mini-form textarea { height: 60px; }
.asst-send {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  transition: background .2s;
}
.asst-send:hover { background: #1D4ED8; }
.asst-sent { display: none; text-align: center; padding: 12px; color: #16A34A; font-weight: 600; font-size: .88rem; }

/* ── Responsive: hide side tab on mobile ──────── */
@media(max-width:768px){
  .support-side-tab { display: none; }
  .side-assistant { bottom: 76px; left: 14px; }
  .side-assistant-panel { width: 240px; }
}

/* === עוזר אישי — שאלות מהירות === */
.asst-close {
  margin-right: auto; background: none; border: none; color: #fff;
  font-size: 1rem; cursor: pointer; opacity: .7; padding: 0 4px;
}
.asst-close:hover { opacity: 1; }
.asst-chat-area {
  max-height: 180px; overflow-y: auto; padding: 8px 12px;
  display: flex; flex-direction: column; gap: 8px;
  scrollbar-width: thin; scrollbar-color: #dde rgba(0,0,0,0);
}
.asst-bubble {
  max-width: 88%; padding: 9px 13px; border-radius: 14px;
  font-size: .82rem; line-height: 1.5; animation: fadeIn .2s ease;
}
.asst-bubble.bot {
  background: #EFF6FF; color: #1e3a5f; border-bottom-right-radius: 4px;
  align-self: flex-start;
}
.asst-bubble.user {
  background: var(--blue); color: #fff; border-bottom-left-radius: 4px;
  align-self: flex-end; text-align: right;
}
.asst-bubble.typing { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.asst-bubble.typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #93c5fd;
  animation: typingDot .9s infinite ease-in-out;
}
.asst-bubble.typing span:nth-child(2) { animation-delay: .2s; }
.asst-bubble.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }
@keyframes fadeIn { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:translateY(0)} }

.asst-quick {
  display: flex; flex-direction: column; gap: 5px;
  padding: 6px 12px 2px;
}
.asst-q-btn {
  background: #F0F7FF; border: 1px solid #BFDBFE; color: #1D4ED8;
  border-radius: 20px; padding: 7px 12px; font-size: .78rem;
  cursor: pointer; text-align: right; transition: all .18s;
  font-family: inherit; font-weight: 500;
}
.asst-q-btn:hover { background: #DBEAFE; border-color: #93C5FD; transform: translateX(-2px); }
.asst-cta-link {
  display: inline-block; margin-top: 4px; color: var(--blue);
  font-weight: 700; text-decoration: none; font-size: .8rem;
}
.asst-cta-link:hover { text-decoration: underline; }
#asstReset {
  display: none; background: none; border: none; color: #6B7280;
  font-size: .75rem; cursor: pointer; padding: 2px 12px 6px;
  text-decoration: underline; font-family: inherit;
}
#asstReset:hover { color: var(--blue); }

/* === Tooltip bubble on assistant button === */
.asst-tooltip {
  position: absolute; bottom: 62px; left: 0;
  background: var(--navy); color: #fff;
  padding: 10px 14px; border-radius: 12px 12px 12px 0;
  font-size: .82rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 4px 18px rgba(10,22,41,.25);
  opacity: 0; transform: translateY(8px) scale(.95);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.asst-tooltip::after {
  content: ''; position: absolute; bottom: -8px; left: 16px;
  border: 5px solid transparent; border-top-color: var(--navy);
  border-bottom: none;
}
.asst-tooltip.show { opacity: 1; transform: translateY(0) scale(1); }


