/* =====================================================================
 * I.T.B AGENCIES LTD — Horizons ISG Distributor
 * DESIGN SYSTEM: "Command & Supply"
 * Static migration of the original React/Vite build → HTML5 + CSS3 + Vanilla JS.
 *
 * Palette : Deep charcoal hero, cobalt-blue accents, white / light-slate body.
 * Type    : Barlow Condensed (English display) + Heebo (Hebrew) + DM Sans / Inter (body).
 * Colours are kept in their original oklch() form for an exact visual match.
 *   (oklch is supported by all evergreen browsers — Chrome 111+, Safari 15.4+, FF 113+.)
 *
 * RTL / LTR is driven entirely by the [dir] attribute on <html>, set by js/app.js.
 * Logical CSS properties (margin-inline, border-inline, inset-inline) are used so the
 * layout mirrors automatically between Hebrew (rtl) and English (ltr).
 * ===================================================================== */

/* ------------------------------------------------------------------ *
 * 1. DESIGN TOKENS
 * ------------------------------------------------------------------ */
:root {
  /* Cobalt blue scale (primary brand) */
  --primary:        oklch(0.42 0.19 258);
  --primary-hover:  oklch(0.36 0.19 258);
  --cobalt-mid:     oklch(0.55 0.18 258);
  --cobalt-light:   oklch(0.70 0.15 258);
  --cobalt-52:      oklch(0.52 0.19 258);   /* section labels        */
  --cobalt-62:      oklch(0.62 0.19 258);   /* hero accent / stats   */
  --cobalt-72:      oklch(0.72 0.12 258);

  /* Deep charcoal (hero / dark sections) */
  --hero-bg:        oklch(0.12 0.018 258);
  --hero-bg-2:      oklch(0.16 0.018 258);
  --footer-bg:      oklch(0.10 0.018 258);
  --whyus-bg:       oklch(0.18 0.015 258);

  /* Slate greys */
  --slate-dark:     oklch(0.18 0.015 258);
  --slate-mid:      oklch(0.38 0.015 258);
  --slate-light:    oklch(0.55 0.012 258);
  --border:         oklch(0.90 0.008 258);
  --bg-subtle:      oklch(0.97 0.003 258);
  --bg-products:    #F8F9FB;

  --foreground:     oklch(0.18 0.015 258);

  /* Typography families */
  --font-display:   'Barlow Condensed', 'Montserrat', sans-serif;
  --font-body-en:   'Inter', 'DM Sans', sans-serif;
  --font-body-he:   'Heebo', 'Assistant', sans-serif;

  /* These two are swapped at runtime by app.js (see html[lang]) */
  --font-body:      var(--font-body-he);
  --font-heading:   var(--font-body-he);
}

/* English (LTR): body uses Inter/DM Sans, headings use Barlow Condensed */
html[lang="en"] {
  --font-body:    var(--font-body-en);
  --font-heading: var(--font-display);
}
/* Hebrew (RTL): both body and headings use Heebo (Barlow has no Hebrew glyphs) */
html[lang="he"] {
  --font-body:    var(--font-body-he);
  --font-heading: var(--font-body-he);
}

/* ------------------------------------------------------------------ *
 * 2. RESET & BASE
 * ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

* { border-color: var(--border); }

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

body {
  margin: 0;
  background: #fff;
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }
button { font-family: inherit; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-heading); }

/* Buttons / links get a pointer cursor */
button:not(:disabled),
[role="button"],
a[href],
select:not(:disabled) { cursor: pointer; }

/* Skip-to-content link (WCAG 2.4.1) */
.skip-to-content {
  position: absolute;
  top: -100px;
  inset-inline-start: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 99999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-to-content:focus { top: 1rem; }

/* ------------------------------------------------------------------ *
 * 3. LAYOUT — container
 * ------------------------------------------------------------------ */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 640px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; max-width: 1360px; } }

/* ------------------------------------------------------------------ *
 * 4. SHARED HELPERS
 * ------------------------------------------------------------------ */
.is-hidden { display: none !important; }

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Scroll-reveal animation (IntersectionObserver toggles .visible) */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ *
 * 5. NAVBAR
 * ------------------------------------------------------------------ */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: rgba(13, 27, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .navbar__inner { height: 80px; } }

.navbar__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar__brand-text {
  display: none;
  flex-direction: column;
  justify-content: center;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
  padding-inline-end: 12px;
  margin-inline-end: 4px;
}
@media (min-width: 1024px) { .navbar__brand-text { display: flex; } }
.navbar__sublabel {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--cobalt-52);
  white-space: nowrap;
}
.navbar__subbrand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.navbar__links { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .navbar__links { display: flex; } }
.navbar__link {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
  padding-block: 4px;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--cobalt-52);
  transition: width 0.3s;
}
.navbar__link:hover { color: #fff; }
.navbar__link:hover::after { width: 100%; }

.navbar__right { display: none; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .navbar__right { display: flex; } }

/* Language switcher pill (EN | עב) */
.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}
.lang-switch__btn {
  padding: 5px 10px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.2s;
}
.lang-switch__btn[data-lang="en"] { font-family: 'Inter', sans-serif; }
.lang-switch__btn[data-lang="he"] { font-family: 'Heebo', sans-serif; letter-spacing: 0.04em; }
.lang-switch__btn.active { background: var(--primary); color: #fff; }
.lang-switch__divider { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.2); }

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
}
.navbar__cta:hover { background: var(--primary-hover); }

/* Mobile controls */
.navbar__mobile { display: flex; align-items: center; gap: 8px; }
@media (min-width: 1024px) { .navbar__mobile { display: none; } }
.lang-switch--sm .lang-switch__btn { padding: 4px 8px; font-size: 0.65rem; }
.lang-switch--sm .lang-switch__divider { height: 14px; }
.navbar__hamburger { color: #fff; background: none; border: none; padding: 8px; display: inline-flex; }

.navbar__mobile-menu {
  display: none;
  background: rgba(13, 27, 42, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar__mobile-menu.open { display: block; }
@media (min-width: 1024px) { .navbar__mobile-menu { display: none !important; } }
.navbar__mobile-inner { display: flex; flex-direction: column; gap: 16px; padding-block: 24px; }
.navbar__mobile-link {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding-block: 8px;
  text-align: start;
}
.navbar__mobile-link:hover { color: #fff; }
.navbar__mobile-cta {
  margin-top: 8px;
  text-align: center;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
}

/* ------------------------------------------------------------------ *
 * 6. HERO
 * ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    oklch(0.10 0.018 258 / 0.94) 0%,
    oklch(0.12 0.018 258 / 0.82) 50%,
    oklch(0.14 0.018 258 / 0.60) 100%);
}
.hero__fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 12rem;
  background: linear-gradient(to top, var(--hero-bg) 0%, transparent 100%);
}
.hero__rule {
  position: absolute;
  top: 0; bottom: 0;
  inset-inline-start: 0;
  width: 4px;
  background: var(--primary);
  display: none;
}
@media (min-width: 1024px) { .hero__rule { display: block; } }

.hero__content { position: relative; z-index: 10; padding-top: 6rem; padding-bottom: 5rem; }
.hero__inner { max-width: 56rem; margin-inline-end: auto; text-align: start; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: oklch(0.42 0.19 258 / 0.18);
  border: 1px solid oklch(0.42 0.19 258 / 0.45);
}
.hero__badge span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.78 0.12 258);
}

.hero__h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1;
  margin-bottom: 12px;
}
.hero__h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1;
  color: var(--cobalt-62);
  margin-bottom: 24px;
}
.hero__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}
.hero__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  max-width: 42rem;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}
.hero__cta-primary:hover { background: var(--primary-hover); }
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.hero__cta-secondary:hover { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
/* The RTL arrow inside the primary CTA is mirrored */
[dir="rtl"] .hero__cta-primary .arrow { transform: scaleX(-1); }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--cobalt-62);
  line-height: 1;
}
.hero__stat-label {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.hero__scroll:hover { color: rgba(255, 255, 255, 0.6); }
.bounce { animation: bounce 1.4s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ------------------------------------------------------------------ *
 * 7. TRUST BAR
 * ------------------------------------------------------------------ */
.trustbar { background: var(--primary); border-block: 1px solid var(--primary-hover); }
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
}
.trustbar__item { display: flex; align-items: center; gap: 12px; }
.trustbar__divider { display: none; width: 1px; height: 32px; background: rgba(255, 255, 255, 0.2); }
@media (min-width: 640px) { .trustbar__divider { display: block; } }
.trustbar__code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.trustbar__desc { font-family: var(--font-body); font-size: 0.65rem; color: rgba(255, 255, 255, 0.65); }

/* ------------------------------------------------------------------ *
 * 8. SECTION HEADINGS (shared by products / guide / about / etc.)
 * ------------------------------------------------------------------ */
.section { padding-block: 80px; }
@media (min-width: 1024px) { .section { padding-block: 112px; } }
.section--dark { background: var(--hero-bg); }
.section--products { background: var(--bg-products); }
.section--white { background: #fff; }

.sec-head { margin-bottom: 56px; text-align: start; }
.sec-head__h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--slate-dark);
  margin-bottom: 0.75rem;
}
.sec-head__h2--light { color: #fff; }
.sec-head__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: oklch(0.45 0.015 258);
  max-width: 560px;
  line-height: 1.7;
}
[dir="rtl"] .sec-head__sub { margin-inline-start: auto; }

/* ------------------------------------------------------------------ *
 * 9. PRODUCTS
 * ------------------------------------------------------------------ */
.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px)  { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }

.pcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-inline-start: 3px solid var(--primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pcard:hover {
  box-shadow: 0 4px 20px rgba(26,86,219,0.12), 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.pcard__media { position: relative; height: 176px; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__media-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.pcard__tag {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  padding: 4px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.pcard__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--slate-dark);
  letter-spacing: 0.02em;
  text-align: start;
  margin-bottom: 8px;
}
.pcard__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: oklch(0.42 0.015 258);
  line-height: 1.7;
  text-align: start;
  margin-bottom: 20px;
  flex: 1;
}
.pcard__specs-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  text-align: start;
  margin-bottom: 8px;
}
.pcard__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pcard__chip {
  padding: 4px 8px;
  background: oklch(0.96 0.005 258);
  border: 1px solid oklch(0.90 0.01 258);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: oklch(0.30 0.018 258);
}
.pcard__thickness {
  padding-top: 16px;
  margin-bottom: 20px;
  border-top: 1px solid oklch(0.93 0.005 258);
  text-align: start;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  color: oklch(0.55 0.015 258);
}
.pcard__thickness b {
  font-family: var(--font-display);
  font-weight: 700;
  color: oklch(0.25 0.018 258);
}
.pcard__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.2s;
}
.pcard__cta:hover { background: var(--primary-hover); }

/* ------------------------------------------------------------------ *
 * 10. SELECTION GUIDE
 * ------------------------------------------------------------------ */
.guide { background: #fff; border-top: 1px solid var(--border); }
.guide__head { margin-bottom: 48px; }
.guide__head-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .guide__head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.guide__h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--slate-dark);
  line-height: 1.1;
}
.guide__intro {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.75;
  max-width: 420px;
  text-align: start;
}
.guide__rule {
  margin-top: 24px;
  height: 1px;
  background: linear-gradient(to right, var(--primary), transparent);
}
[dir="rtl"] .guide__rule { background: linear-gradient(to left, var(--primary), transparent); }

.guide__tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.guide__tab {
  position: relative;
  padding: 16px 24px;
  text-align: start;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s;
}
.guide__tab.active { border-bottom-color: var(--primary); }
.guide__tab-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--slate-light);
}
.guide__tab.active .guide__tab-label { color: var(--primary); }
.guide__tab-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: oklch(0.72 0.008 258);
}
.guide__tab.active .guide__tab-sub { color: var(--cobalt-mid); }

.guide__panel-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--slate-dark);
  margin-bottom: 4px;
  text-align: start;
}
.guide__panel-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate-light);
  text-align: start;
  margin-bottom: 24px;
}

/* Legend (shared by chart + matrix) */
.legend { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.legend__item { display: flex; align-items: center; gap: 8px; }
.legend__swatch { width: 16px; height: 16px; flex-shrink: 0; }
.legend__dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend__label { font-family: var(--font-body); font-size: 0.78rem; color: var(--slate-mid); }

/* Outdoor-life bar chart */
.bars { display: flex; flex-direction: column; gap: 20px; }
.bar-row { display: flex; align-items: center; gap: 16px; }
.bar-row__label {
  flex-shrink: 0;
  width: 110px;
  text-align: start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-dark);
  letter-spacing: 0.02em;
}
.bar-track { position: relative; flex: 1; height: 44px; background: oklch(0.88 0.005 258); }
.bar-fill {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar-fill__txt {
  position: absolute;
  inset-inline-start: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.bar-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-inline-start: 126px;
}
.bar-axis span { font-family: var(--font-display); font-size: 0.7rem; color: var(--slate-light); }

/* Performance matrix table */
.matrix-wrap { overflow-x: auto; }
.matrix { width: 100%; border-collapse: collapse; }
.matrix th, .matrix td { padding: 12px 8px; }
.matrix thead th.factor {
  text-align: start;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--slate-light);
  border-bottom: 2px solid var(--primary);
  width: 180px;
}
.matrix thead th.prod {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--slate-dark);
  border-bottom: 2px solid var(--border);
  transition: all 0.15s;
}
.matrix tbody td {
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.matrix tbody td.factor { text-align: start; }
.matrix__factor-cell { display: flex; align-items: center; gap: 10px; }
.matrix__icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: oklch(0.42 0.19 258 / 0.1);
  color: var(--primary);
}
.matrix__factor-label { font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; color: var(--slate-dark); }
.matrix__rating {
  display: inline-block;
  padding: 2px 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid transparent;
}
.matrix__detail { display: block; font-family: var(--font-display); font-size: 0.7rem; color: var(--slate-light); line-height: 1.3; margin-top: 2px; }
.matrix-foot {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
}
.matrix-foot p { margin: 0; font-family: var(--font-body); font-size: 0.72rem; color: var(--slate-light); line-height: 1.65; }

/* Mobile accordion (matrix) */
.matrix-acc { display: flex; flex-direction: column; gap: 12px; }
.matrix-acc__item { border: 1px solid var(--border); }
.matrix-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #fff;
  border: none;
  text-align: start;
}
.matrix-acc__panel { padding: 16px; background: #fff; }
.matrix-acc__row { display: flex; align-items: center; justify-content: space-between; padding-block: 6px; border-bottom: 1px solid var(--border); }

@media (min-width: 768px) { .matrix-acc { display: none; } .matrix-wrap { display: block; } }
@media (max-width: 767px) { .matrix-wrap { display: none; } }

/* Characteristics table */
.chartable-wrap { overflow-x: auto; }
.chartable { width: 100%; border-collapse: collapse; min-width: 700px; }
.chartable th.charh {
  text-align: start;
  padding: 12px 24px 12px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--slate-light);
  border-bottom: 2px solid var(--primary);
  min-width: 160px;
}
[dir="rtl"] .chartable th.charh { padding: 12px 0 12px 24px; }
.chartable th.prod {
  text-align: center;
  padding: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--slate-dark);
  border-bottom: 2px solid var(--border);
  transition: all 0.15s;
}
.chartable td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate-mid);
  line-height: 1.55;
  transition: all 0.15s;
}
.chartable td.rowlabel {
  text-align: start;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--slate-dark);
  padding-inline-end: 24px;
  padding-inline-start: 0;
}
.chartable .widest-badge {
  margin-inline-start: 8px;
  padding: 2px 6px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  background: var(--primary);
}
.chartable col.col-hover, .cell-hover { background: oklch(0.96 0.04 258) !important; }

/* Guide bottom CTA */
.guide__cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: oklch(0.97 0.006 258);
  border-inline-end: 4px solid var(--primary);
}
@media (min-width: 640px) { .guide__cta { flex-direction: row; align-items: center; justify-content: space-between; } }
.guide__cta-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--slate-dark); margin-bottom: 3px; }
.guide__cta-sub   { font-family: var(--font-body); font-size: 0.82rem; color: var(--slate-light); }
.guide__cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}
[dir="rtl"] .guide__cta-btn .arrow { transform: scaleX(-1); }

/* ------------------------------------------------------------------ *
 * 11. ABOUT
 * ------------------------------------------------------------------ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) { .about__grid { grid-template-columns: repeat(2, 1fr); } }
.about__text { text-align: start; }
.about__h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--slate-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}
.about__p { font-family: var(--font-body); font-size: 0.95rem; color: oklch(0.40 0.015 258); line-height: 1.8; margin-bottom: 16px; }
.about__p:last-of-type { margin-bottom: 32px; }
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--primary);
  background: oklch(0.97 0.005 258);
}
.about__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.about__badge-title { font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; color: oklch(0.25 0.018 258); }
.about__badge-sub   { font-family: var(--font-body); font-size: 0.68rem; color: oklch(0.50 0.015 258); }

.about__aside { display: flex; flex-direction: column; gap: 24px; }
.about__img { position: relative; height: 208px; overflow: hidden; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(13,27,42,0.6) 100%); }
.about__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about__stat {
  padding: 20px;
  background: oklch(0.97 0.005 258);
  border-inline-start: 3px solid var(--primary);
  text-align: start;
}
.about__stat-value { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--primary); line-height: 1; }
.about__stat-label { font-family: var(--font-body); font-size: 0.75rem; color: oklch(0.45 0.015 258); margin-top: 4px; }
.about__pillars { display: flex; flex-direction: column; gap: 16px; }
.about__pillar { display: flex; align-items: flex-start; gap: 16px; }
.about__pillar-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: oklch(0.97 0.005 258);
  border: 1px solid oklch(0.90 0.01 258);
  color: var(--primary);
}
.about__pillar-title { font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; color: oklch(0.20 0.018 258); margin-bottom: 2px; }
.about__pillar-body  { font-family: var(--font-body); font-size: 0.8rem; color: oklch(0.50 0.015 258); line-height: 1.6; }
.about__pillar-text { text-align: start; }

/* ------------------------------------------------------------------ *
 * 12. WHY US
 * ------------------------------------------------------------------ */
.whyus { background: var(--whyus-bg); }
.whyus__inner { padding-block: 64px; }
.whyus__head { margin-bottom: 40px; text-align: start; }
.whyus__label { font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.14em; color: var(--cobalt-62); text-transform: uppercase; margin-bottom: 8px; }
.whyus__h2 { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); color: #fff; line-height: 1.1; }
.whyus__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .whyus__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .whyus__grid { grid-template-columns: repeat(4, 1fr); } }
.whyus__item { padding: 24px; border-inline-start: 1px solid rgba(255,255,255,0.08); text-align: start; }
.whyus__item:first-child { border-inline-start: none; }
.whyus__big { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--cobalt-62); line-height: 1; margin-bottom: 6px; }
.whyus__title { font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; color: #fff; margin-bottom: 6px; }
.whyus__desc { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ------------------------------------------------------------------ *
 * 13. APPLICATIONS
 * ------------------------------------------------------------------ */
.apps { background: var(--hero-bg); padding-block: 96px; }
@media (min-width: 1024px) { .apps { padding-block: 128px; } }
.apps__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .apps__grid { grid-template-columns: repeat(3, 1fr); } }
.app-card { position: relative; overflow: hidden; }
.app-card__media { position: relative; height: 320px; overflow: hidden; }
.app-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.app-card:hover .app-card__media img { transform: scale(1.05); }
.app-card__grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0.85) 100%); }
.app-card__num {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}
.app-card__content { position: absolute; inset-inline: 0; bottom: 0; padding: 24px; text-align: start; }
.app-card__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 0.65rem; letter-spacing: 0.14em; color: var(--cobalt-72); text-transform: uppercase; margin-bottom: 4px; }
.app-card__title { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: #fff; line-height: 1.1; margin-bottom: 8px; }
.app-card__desc { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.app-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.app-card__tag {
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

/* ------------------------------------------------------------------ *
 * 14. CONTACT
 * ------------------------------------------------------------------ */
.contact { background: #fff; padding-block: 96px; }
@media (min-width: 1024px) { .contact { padding-block: 128px; } }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .contact__grid { grid-template-columns: repeat(5, 1fr); gap: 64px; } }
.contact__info { text-align: start; }
@media (min-width: 1024px) { .contact__info { grid-column: span 2; } }
.contact__form-col { } 
@media (min-width: 1024px) { .contact__form-col { grid-column: span 3; } }
.contact__h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: oklch(0.18 0.015 258);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact__sub { font-family: var(--font-body); font-size: 0.95rem; color: oklch(0.42 0.015 258); line-height: 1.8; margin-bottom: 40px; }
.contact__info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact__info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact__info-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  background: oklch(0.42 0.19 258 / 0.1);
  color: var(--primary);
}
.contact__info-label { font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em; color: var(--cobalt-52); margin-bottom: 2px; text-align: start; }
.contact__info-value { font-family: var(--font-body); font-size: 0.9rem; color: oklch(0.28 0.015 258); text-align: start; }
.contact__cert {
  padding: 16px;
  background: oklch(0.97 0.005 258);
  border-inline-start: 3px solid var(--primary);
  text-align: start;
}
.contact__cert-title { font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; color: oklch(0.25 0.018 258); margin-bottom: 4px; }
.contact__cert-desc  { font-family: var(--font-body); font-size: 0.75rem; color: oklch(0.50 0.015 258); line-height: 1.6; }

.cform { display: flex; flex-direction: column; gap: 20px; }
.cform__row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .cform__row { grid-template-columns: repeat(2, 1fr); } }
.cform__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: oklch(0.38 0.015 258);
  margin-bottom: 6px;
  text-align: start;
}
.cform__control {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: oklch(0.22 0.015 258);
  background: #fff;
  border: 1px solid oklch(0.88 0.008 258);
  outline: none;
  text-align: start;
}
.cform__control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px oklch(0.42 0.19 258 / 0.12); }
select.cform__control { appearance: none; }
textarea.cform__control { resize: vertical; }
.cform__submit {
  padding: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: background 0.2s;
}
.cform__submit:hover { background: var(--primary-hover); }
.cform__submit[disabled], .cform__submit.is-loading { opacity: 0.72; cursor: default; }
.cform__submit.is-loading::before {
  content: ""; width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45); border-top-color: #fff;
  animation: cform-spin 0.7s linear infinite;
}
@keyframes cform-spin { to { transform: rotate(360deg); } }
/* Honeypot: removed from layout and from assistive tech / tab order. */
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform__control.is-invalid {
  border-color: oklch(0.62 0.18 25);
  box-shadow: 0 0 0 3px oklch(0.62 0.18 25 / 0.12);
}
.cform__error {
  padding: 12px 16px;
  background: oklch(0.97 0.02 25);
  border: 1px solid oklch(0.85 0.08 25);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: oklch(0.35 0.15 25);
  text-align: start;
}
.cform__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-block: 64px;
  gap: 16px;
  text-align: center;
}
.cform__success-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: oklch(0.42 0.19 258 / 0.1);
}
.cform__success h3 { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: oklch(0.18 0.015 258); }
.cform__success p  { font-family: var(--font-body); color: oklch(0.45 0.015 258); max-width: 360px; line-height: 1.7; font-size: 0.95rem; }
.cform__success-note { margin-top: 8px; padding: 8px 16px; border-radius: 4px; background: oklch(0.97 0.005 258); font-family: var(--font-body); font-size: 0.8rem; color: oklch(0.45 0.015 258); }

/* ------------------------------------------------------------------ *
 * 15. FOOTER
 * ------------------------------------------------------------------ */
.footer { background: var(--footer-bg); }
.footer__bar { height: 4px; background: var(--primary); }
.footer__inner { padding-block: 56px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer__col { text-align: start; }
.footer__brand-logo { display: flex; margin-bottom: 20px; }
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--cobalt-52);
}
.footer__tagline { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.75; }
.footer__col-title { font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--cobalt-52); text-transform: uppercase; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer__link--display { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.03em; }
.footer__link:hover { color: rgba(255,255,255,0.9); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; } }
.footer__copy { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; align-items: center; gap: 16px; }
@media (min-width: 640px) { .footer__legal { margin-inline-start: auto; } }
.footer__legal a { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }
.footer__legal .sep { color: rgba(255,255,255,0.15); font-size: 0.7rem; }
.footer__legal .auth { font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.2); }

/* ------------------------------------------------------------------ *
 * 16. COOKIE CONSENT
 * ------------------------------------------------------------------ */
.cookie {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-start: 1.5rem;
  z-index: 9999;
  max-width: 420px;
  width: calc(100vw - 3rem);
  background: var(--hero-bg);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  color: #fff;
  font-family: var(--font-body);
}
.cookie__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 0; }
.cookie__title { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.95rem; color: #fff; }
.cookie__close { background: none; border: none; color: rgba(255,255,255,0.6); padding: 4px; display: flex; }
.cookie__body { padding: 8px 18px 0; }
.cookie__text { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.7); text-align: start; }
.cookie__text a { color: var(--cobalt-52); text-decoration: underline; }
.cookie__tiers { padding: 12px 18px 0; display: flex; flex-direction: column; gap: 10px; }
.cookie__tier { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cookie__tier-title { font-size: 0.8rem; font-weight: 700; color: #fff; }
.cookie__tier-desc { font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-top: 2px; text-align: start; }
.cookie__alwayson { font-size: 0.65rem; color: var(--cobalt-52); font-weight: 700; white-space: nowrap; }
.cookie__switch {
  position: relative;
  width: 38px; height: 20px;
  border-radius: 999px;
  background: oklch(0.30 0.015 258);
  border: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cookie__switch.on { background: var(--primary); }
.cookie__switch::after {
  content: '';
  position: absolute;
  top: 2px;
  inset-inline-start: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.cookie__switch.on::after { transform: translateX(18px); }
[dir="rtl"] .cookie__switch.on::after { transform: translateX(-18px); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 16px 18px; }
.cookie__btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  border: none;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.cookie__btn--primary { background: var(--primary); color: #fff; }
.cookie__btn--primary:hover { background: var(--primary-hover); }
.cookie__btn--ghost { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); }
.cookie__btn--ghost:hover { border-color: rgba(255,255,255,0.5); }
.cookie__manage { background: none; border: none; color: var(--cobalt-52); font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; padding: 0 18px 14px; text-align: start; display: inline-flex; align-items: center; gap: 4px; }

/* ------------------------------------------------------------------ *
 * 17. ACCESSIBILITY TOOLBAR
 * ------------------------------------------------------------------ */
.a11y-trigger {
  position: fixed;
  z-index: 9999;
  bottom: 1.25rem;
  inset-inline-end: 1.25rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.18s;
}
.a11y-trigger:hover { transform: scale(1.07); }
.a11y-trigger svg { width: 60px; height: 60px; display: block; }

.a11y-panel {
  position: fixed;
  z-index: 9999;
  bottom: 5rem;
  inset-inline-end: 1.25rem;
  width: 288px;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  border: 1px solid #e2e8f0;
  color: #1a1a1a;
}
.a11y-panel__head {
  background: #2d6a1f;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px 16px 0 0;
}
.a11y-panel__title { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 15px; }
.a11y-panel__close { background: none; border: none; color: rgba(255,255,255,0.85); padding: 4px; display: flex; }
.a11y-panel__inner { padding: 12px; }
.a11y-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #94a3b8; text-align: start; margin-bottom: 6px; }
.a11y-textsize { display: flex; gap: 8px; margin-bottom: 12px; }
.a11y-actionbtn {
  flex: 1;
  padding: 8px;
  display: flex; align-items: center; justify-content: center; gap: 2px;
  background: #f1f5f9; color: #334155;
  border: 1px solid #e2e8f0; border-radius: 8px;
  transition: background 0.15s;
}
.a11y-actionbtn:hover:not(:disabled) { background: #e2e8f0; }
.a11y-actionbtn:disabled { opacity: 0.4; cursor: not-allowed; }
.a11y-fontbadge { display: flex; align-items: center; justify-content: center; padding: 0 10px; background: #eff6ff; color: #1d4ed8; border-radius: 8px; font-size: 12px; font-weight: 700; }
.a11y-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.a11y-toggle {
  width: 100%;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 10px;
  background: #f8fafc; color: #334155;
  border: 1px solid #e2e8f0; border-radius: 10px;
  font-size: 13px; font-weight: 500;
  text-align: start;
  transition: background 0.15s, color 0.15s;
}
.a11y-toggle:hover:not(.on) { background: #f1f5f9; }
.a11y-toggle.on { background: #1d4ed8; color: #fff; border-color: #1d4ed8; }
.a11y-toggle__icon { flex-shrink: 0; display: flex; align-items: center; }
.a11y-toggle__label { flex: 1; }
.a11y-toggle__check { font-size: 11px; opacity: 0.85; flex-shrink: 0; }
.a11y-divider { border-top: 1px solid #e2e8f0; margin: 4px 0 10px; }
.a11y-reset, .a11y-statement {
  width: 100%;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 8px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.a11y-reset { margin-bottom: 6px; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.a11y-reset:hover { background: #fee2e2; }
.a11y-statement { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.a11y-statement:hover { background: #dcfce7; }

/* Focus outline for all interactive elements (keyboard) */
button:focus-visible, a:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* ------------------------------------------------------------------ *
 * 18. ACCESSIBILITY MODES (Israeli Std 5568 / WCAG 2.1 AA)
 * ------------------------------------------------------------------ */
.a11y-high-contrast { filter: contrast(1.5) brightness(1.05); }
.a11y-high-contrast body { background: #000 !important; color: #fff !important; }
.a11y-high-contrast a { color: #ff0 !important; text-decoration: underline !important; }
.a11y-high-contrast button, .a11y-high-contrast [role="button"] { outline: 2px solid #ff0 !important; }

.a11y-grayscale { filter: grayscale(1); }

.a11y-negative-contrast { filter: invert(1) hue-rotate(180deg); }
.a11y-negative-contrast img,
.a11y-negative-contrast video,
.a11y-negative-contrast [style*="background-image"] { filter: invert(1) hue-rotate(180deg); }

.a11y-light-bg, .a11y-light-bg body, .a11y-light-bg main, .a11y-light-bg section,
.a11y-light-bg header, .a11y-light-bg footer, .a11y-light-bg nav, .a11y-light-bg div {
  background-color: #f8f9fa !important;
  background-image: none !important;
  color: #1a1a1a !important;
}

.a11y-underline-links a, .a11y-underline-links [role="link"] {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.a11y-readable-font, .a11y-readable-font * {
  font-family: 'Heebo', Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.01em !important;
  line-height: 1.6 !important;
}

/* ------------------------------------------------------------------ *
 * 19. PROCESSING GUIDE PAGE
 * ------------------------------------------------------------------ */
.pg { min-height: 100vh; background: #fff; }
.pg__header { padding-top: 112px; padding-bottom: 64px; background: var(--hero-bg); }
.pg__back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; transition: color 0.2s;
}
.pg__back:hover { color: rgba(255,255,255,0.8); }
.pg__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px; padding: 6px 16px;
  border: 1px solid oklch(0.42 0.19 258 / 0.45);
  background: oklch(0.42 0.19 258 / 0.12);
}
.pg__eyebrow span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cobalt-72); }
.pg__title { color: #fff; font-family: var(--font-heading); font-weight: 900; font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.05; margin-bottom: 16px; }
.pg__subtitle { max-width: 42rem; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.6); font-family: var(--font-body); }

.pg__tabs-wrap { position: sticky; top: 0; z-index: 30; background: var(--hero-bg-2); border-bottom: 1px solid oklch(0.22 0.018 258); }
.pg__tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
.pg__tabs::-webkit-scrollbar { display: none; }
.pg__tab {
  flex-shrink: 0;
  padding: 16px 24px;
  background: none; border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.2s;
}
.pg__tab.active { color: #fff; }

.pg__main { padding-block: 64px; }
.pg__prod-head {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 48px; padding-bottom: 40px;
  border-bottom: 1px solid oklch(0.90 0.01 258);
}
@media (min-width: 1024px) { .pg__prod-head { flex-direction: row; } }
.pg__prod-info { flex: 1; text-align: start; }
.pg__prod-method {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding: 4px 12px; border-radius: 2px;
}
.pg__prod-method span { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; }
.pg__prod-name { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); color: var(--hero-bg); line-height: 1; margin-bottom: 12px; }
.pg__prod-tagline { font-size: 1rem; line-height: 1.65; color: oklch(0.40 0.03 258); max-width: 600px; font-family: var(--font-body); }
.pg__stepcount {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px; min-width: 140px; text-align: center;
}
.pg__stepcount-num { font-family: var(--font-display); font-weight: 900; font-size: 3.5rem; color: #fff; line-height: 1; }
.pg__stepcount-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }

.pg__cols { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .pg__cols { grid-template-columns: repeat(2, 1fr); } }
.pg__col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 32px; text-align: start; font-family: var(--font-body); }

/* Vertical stepper */
.stepper { position: relative; }
.step { position: relative; display: flex; }
.step__line {
  position: absolute;
  inset-inline-start: 19px;
  top: 40px; bottom: -8px;
  width: 2px;
  background: oklch(0.88 0.01 258);
  transition: background 0.3s;
}
.step__circle {
  position: relative; z-index: 10; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: oklch(0.94 0.01 258);
  border: 2px solid oklch(0.85 0.02 258);
  margin-inline-end: 16px;
  margin-top: 4px;
  transition: all 0.3s;
}
.step__content { flex: 1; padding-bottom: 24px; text-align: start; }
.step__btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: none; padding: 4px 0;
}
.step__eyebrow { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.60 0.05 258); margin-bottom: 2px; text-align: start; }
.step__title { display: block; font-weight: 700; font-size: 1rem; color: oklch(0.25 0.02 258); text-align: start; }
.step__chevron { color: oklch(0.60 0.05 258); flex-shrink: 0; }
.step__body { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.step__body-inner { margin-top: 12px; background: oklch(0.97 0.005 258); border-inline-start: 3px solid var(--primary); overflow: hidden; }
.step__img { position: relative; width: 100%; height: 200px; overflow: hidden; }
.step__img img { width: 100%; height: 100%; object-fit: cover; }
.step__caption {
  position: absolute; inset-inline: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10,15,30,0.82));
  padding: 10px 14px 8px;
  text-align: start;
}
.step__caption span { font-size: 0.72rem; color: rgba(255,255,255,0.88); font-weight: 500; letter-spacing: 0.02em; }
.step__text { padding: 16px; }
.step__text p { font-size: 0.9rem; line-height: 1.7; color: oklch(0.35 0.02 258); margin: 0; }
.step__highlight {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 2px;
}
.step__highlight span { font-size: 0.75rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }

/* Specs panel */
.specs { border-radius: 2px; overflow: hidden; border: 1px solid oklch(0.88 0.01 258); }
.specs__block { padding: 20px; border-bottom: 1px solid oklch(0.88 0.01 258); text-align: start; }
.specs__title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.specs__list { margin: 0; padding: 0; list-style: none; }
.specs__list li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.specs__bullet { display: inline-block; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.specs__list li span:last-child { font-size: 0.85rem; color: oklch(0.35 0.02 258); line-height: 1.5; }
.specs__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.specs__chip {
  display: inline-block; padding: 3px 10px;
  background: oklch(0.94 0.01 258);
  border: 1px solid oklch(0.88 0.01 258);
  font-size: 0.78rem; font-weight: 600;
  color: oklch(0.30 0.02 258);
  font-family: var(--font-display);
}
.specs__chip--accent { color: #fff; border: none; }
.specs__rows { }
.specs__row { display: flex; padding: 12px 20px; gap: 16px; border-bottom: 1px solid oklch(0.88 0.01 258); text-align: start; }
.specs__row:last-child { border-bottom: none; }
.specs__row-label { font-size: 0.75rem; font-weight: 700; color: oklch(0.55 0.04 258); min-width: 120px; flex-shrink: 0; }
.specs__row-value { font-size: 0.85rem; color: oklch(0.25 0.02 258); }

/* PG CTA banner */
.pg__cta { padding-block: 64px; background: var(--hero-bg); }
.pg__cta-row { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 32px; text-align: start; }
@media (min-width: 1024px) { .pg__cta-row { flex-direction: row; } }
.pg__cta-title { color: #fff; font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.1; margin-bottom: 8px; }
.pg__cta-sub { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.6; font-family: var(--font-body); }
.pg__cta-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  background: var(--primary); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.pg__cta-btn:hover { background: var(--primary-hover); }
[dir="rtl"] .pg__cta-btn .arrow { transform: scaleX(-1); }

/* ------------------------------------------------------------------ *
 * 20. SIMPLE STATIC PAGES (privacy / accessibility statement / 404)
 * ------------------------------------------------------------------ */
.doc { min-height: 100vh; }
.doc__main { padding-top: 140px; padding-bottom: 80px; }
.doc__main h1 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--slate-dark); margin-bottom: 24px; }
.doc__main h2 { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--slate-dark); margin: 28px 0 12px; }
.doc__main p, .doc__main li { font-family: var(--font-body); font-size: 0.95rem; color: var(--slate-mid); line-height: 1.8; }
.doc__main ul { padding-inline-start: 20px; }
.doc__main a { color: var(--primary); }
