/* ============================================================
   ForceBook — Premium Brand Design System
   Built on the official Force Book Style Guide
   Font: Rubik · Icons: Material Symbols
   ============================================================ */

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

:root {
  /* ── Brand palette (official) ── */
  --blue:    #3D66AE;   /* primary */
  --sky:     #39A8DF;   /* sky blue */
  --navy:    #1D365D;   /* dark blue — frames / dark BG */
  --teal:    #00A099;   /* turquoise — refreshing accent */
  --coffee:  #D7CDBC;   /* warm accent */
  --dark:    #3C3C3B;   /* dark gray — text */
  --mid:     #979797;   /* mid gray — sub text */
  --light:   #F8F8F8;   /* light gray — soft BG */
  --line:    #ECECEC;   /* hairlines */
  --white:   #ffffff;

  --ink:     #2a2a29;   /* deepest text */
  --soft:    #6f6f6e;   /* body text */

  /* ── Gradients ── */
  --grad:        linear-gradient(120deg, #3D66AE 0%, #39A8DF 100%);
  --grad-sub:    linear-gradient(120deg, #3D66AE 0%, #00A099 100%);
  --grad-navy:   linear-gradient(135deg, #16294a 0%, #1D365D 55%, #2c4f86 100%);
  --grad-teal:   linear-gradient(120deg, #00A099 0%, #39A8DF 100%);
  --grad-soft:   linear-gradient(135deg, #f4f8ff 0%, #eef4fb 100%);

  /* ── Shadows ── */
  --sh-xs:   0 1px 2px rgba(29,54,93,.06);
  --sh-sm:   0 4px 14px rgba(29,54,93,.07);
  --sh-card: 0 10px 34px rgba(29,54,93,.08);
  --sh-lift: 0 20px 56px rgba(29,54,93,.14);
  --sh-xl:   0 36px 90px rgba(29,54,93,.18);
  --sh-blue: 0 14px 34px rgba(61,102,174,.32);
  --sh-teal: 0 14px 34px rgba(0,160,153,.28);

  /* ── Geometry ── */
  --r:       14px;
  --r-lg:    20px;
  --r-xl:    28px;
  --r-2xl:   36px;
  --r-full:  9999px;
  --nav-h:   80px;
  --ease:    cubic-bezier(.22,.61,.36,1);
  --maxw:    1200px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Rubik', system-ui, 'Segoe UI', sans-serif;
  color: var(--ink); background: var(--white);
  line-height: 1.7; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
/* keep phone numbers / emails rendering LTR even inside RTL text */
a[href^="tel:"], a[href^="mailto:"], .ltr { unicode-bidi: plaintext; }
::selection { background: rgba(57,168,223,.22); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue),var(--sky)); border-radius: 10px; border: 3px solid var(--light); }

/* ── MATERIAL SYMBOLS ── */
.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1; user-select: none; vertical-align: middle;
}

/* ── LAYOUT ── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { padding: 120px 0; position: relative; }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark { width: 84px; height: 84px; animation: spin 1.1s cubic-bezier(.6,.1,.3,.9) infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0;
  background: var(--grad); transform: rotate(45deg);
  box-shadow: 0 3px 9px rgba(61,102,174,.45);
}
.section-head.center .eyebrow { justify-content: center; }

.section-head { margin-bottom: 72px; max-width: 720px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.25rem); font-weight: 500;
  line-height: 1.12; letter-spacing: -.02em; color: var(--navy);
}
.section-title .g {
  position: relative; color: var(--blue); -webkit-text-fill-color: var(--blue); font-weight: 600;
  background-image: linear-gradient(transparent 58%, rgba(0,160,153,.22) 58%);
  background-repeat: no-repeat; padding: 0 .08em;
}
/* dark sections: lighter accent + stronger highlight */
.testimonials .eyebrow { color: #6fe9df; }
.testimonials .section-title .g {
  color: #7fe9e0; -webkit-text-fill-color: #7fe9e0;
  background-image: linear-gradient(transparent 58%, rgba(0,160,153,.38) 58%);
}
.section-sub { font-size: 1.075rem; color: var(--soft); line-height: 1.8; margin-top: 18px; }
.section-head.center .section-sub { margin-inline: auto; }

/* ── BUTTONS ── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 32px; border-radius: var(--r-full); border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 500; letter-spacing: .01em;
  text-decoration: none; white-space: nowrap; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s;
}
.btn .material-symbols-rounded { font-size: 1.25em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: var(--grad-sub); transition: opacity .3s var(--ease);
}
.btn-primary:hover { box-shadow: 0 18px 44px rgba(61,102,174,.46); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.32); backdrop-filter: blur(14px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.55); }

.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid rgba(61,102,174,.4); }
.btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--sh-blue); }

.btn-white { background: #fff; color: var(--blue); box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.btn-white:hover { box-shadow: 0 16px 44px rgba(0,0,0,.24); }

.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 28px rgba(37,211,102,.34); }
.btn-wa:hover { box-shadow: 0 16px 40px rgba(37,211,102,.5); }
.btn-wa::before {
  content: ''; width: 1.25em; height: 1.25em; flex-shrink: 0; background: currentColor;
  -webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.945C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.86 9.86 0 001.51 5.26l-.999 3.648 3.488-.806zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E");
          mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.945C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.86 9.86 0 001.51 5.26l-.999 3.648 3.488-.806zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E");
}
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding-top: 24px; /* floating gap from the top */
  transition: padding-top .45s var(--ease);
}
nav.scrolled { padding-top: 13px; }
.nav-inner {
  /* floating pill — follows document dir (true RTL / LTR) */
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; gap: 24px; padding-inline: 8px;
  border-radius: var(--r-full);
  transition: background .45s var(--ease), box-shadow .45s var(--ease),
              backdrop-filter .45s var(--ease), padding .45s var(--ease);
}
nav.scrolled .nav-inner {
  padding-inline: 22px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(28px) saturate(190%);
  box-shadow: 0 16px 48px rgba(29,54,93,.16), inset 0 0 0 1px rgba(255,255,255,.65);
}
.nav-logo { position: relative; display: inline-flex; align-items: center; flex-shrink: 0; height: 100%; }
.nav-logo img { height: 30px; width: auto; display: block; transition: opacity .35s var(--ease); }
.nav-logo .logo-light { position: absolute; top: 50%; inset-inline-start: 0; transform: translateY(-50%); }
nav:not(.scrolled) .logo-dark  { opacity: 0; }
nav:not(.scrolled) .logo-light { opacity: 1; }
nav.scrolled .logo-dark  { opacity: 1; }
nav.scrolled .logo-light { opacity: 0; }

.nav-links { display: flex; align-items: center; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  position: relative; text-decoration: none; font-size: .95rem; font-weight: 400;
  padding: 8px 2px; margin: 0 18px; white-space: nowrap; transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: center;
  transition: transform .3s var(--ease);
}
nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.82); }
nav:not(.scrolled) .nav-links a::after { background: #fff; }
nav:not(.scrolled) .nav-links a:hover { color: #fff; }
nav.scrolled .nav-links a { color: var(--soft); }
nav.scrolled .nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { font-weight: 500; }
nav:not(.scrolled) .nav-links a.active { color: #fff; }
nav.scrolled .nav-links a.active { color: var(--blue); }

.nav-end { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-cta {
  display: none; align-items: center; gap: 7px; padding: 10px 22px; border-radius: var(--r-full);
  font-size: .9rem; font-weight: 500; text-decoration: none; white-space: nowrap;
  transition: all .25s var(--ease);
}
.nav-cta .material-symbols-rounded { font-size: 1.15em; }
nav:not(.scrolled) .nav-cta { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); }
nav:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
nav.scrolled .nav-cta { background: var(--grad); color: #fff; box-shadow: var(--sh-blue); }
nav.scrolled .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(61,102,174,.45); }
@media (min-width: 880px) { .nav-cta { display: inline-flex; } }

/* ── Language dropdown (flag-based) ── */
.lang { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 9px; cursor: pointer; font-family: inherit;
  padding: 7px 12px; border-radius: var(--r-full);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px); color: #fff; font-size: .85rem; font-weight: 500;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.lang-toggle:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
nav.scrolled .lang-toggle { background: var(--light); border-color: var(--line); color: var(--navy); }
nav.scrolled .lang-toggle:hover { border-color: rgba(61,102,174,.35); }
.lang-flag { width: 22px; height: 16px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.14); flex-shrink: 0; }
.lang-cur { line-height: 1; }
.lang-chev { width: 15px; height: 15px; opacity: .7; transition: transform .3s var(--ease); flex-shrink: 0; }
.lang.open .lang-chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: calc(100% + 12px); inset-inline-end: 0; min-width: 184px;
  padding: 8px; border-radius: 16px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--sh-lift); z-index: 1100;
  opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.97);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
[dir="ltr"] .lang-menu { transform-origin: top right; }
[dir="rtl"] .lang-menu { transform-origin: top left; }
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-opt {
  display: flex; align-items: center; gap: 11px; width: 100%; cursor: pointer;
  padding: 10px 12px; border: none; background: none; border-radius: 11px;
  font-family: inherit; font-size: .92rem; font-weight: 400; color: var(--navy);
  text-align: start; transition: background .2s var(--ease);
}
.lang-opt img { width: 24px; height: 17px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.1); flex-shrink: 0; }
.lang-opt:hover { background: var(--light); }
.lang-opt.active { background: rgba(57,168,223,.1); color: var(--blue); font-weight: 600; }
.lang-opt .check { margin-inline-start: auto; color: var(--teal); font-size: 18px; opacity: 0; }
.lang-opt.active .check { opacity: 1; }
@media (max-width: 520px) { .lang-cur { display: none; } .lang-toggle { padding: 8px 10px; } }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; border-radius: 2px; transition: all .3s var(--ease); }
nav:not(.scrolled) .hamburger span { background: #fff; }
nav.scrolled .hamburger span { background: var(--navy); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav-drawer {
  display: none; position: fixed; top: 92px; left: 14px; right: 14px; z-index: 999;
  flex-direction: column; gap: 4px; padding: 18px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(26px);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(29,54,93,.18);
}
.nav-drawer.open { display: flex; animation: drawerIn .35s var(--ease); }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.nav-drawer a { padding: 14px 16px; border-radius: var(--r); font-weight: 500; font-size: 1rem; text-decoration: none; color: var(--navy); transition: background .2s; }
.nav-drawer a:hover, .nav-drawer a.active { background: var(--light); color: var(--blue); }
.drawer-lang { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.drawer-lang .lang-opt { background: var(--light); border: 1px solid var(--line); }
.drawer-lang .lang-opt.active { background: var(--grad); color: #fff; border-color: transparent; }
.drawer-lang .lang-opt.active .check { color: #fff; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: var(--grad-navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(20,33,58,.96) 0%, rgba(29,54,93,.86) 50%, rgba(44,79,134,.6) 100%);
}
.hero-glow {
  position: absolute; z-index: 1; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,160,153,.28), transparent 65%);
  filter: blur(20px); top: -160px; right: -120px; pointer-events: none;
}
.hero-glow.two { background: radial-gradient(circle, rgba(57,168,223,.3), transparent 65%); top: auto; bottom: -200px; right: auto; left: -160px; }

.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: 70px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 84px; align-items: center;
}
.hero-text { color: #fff; }

/* Hero brand lockup (logo) — replaces the old hero badge */
.hero-brand { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.hero-emblem {
  position: relative; display: grid; place-items: center; width: 66px; height: 66px; flex-shrink: 0;
  border-radius: 19px; background: rgba(16,28,50,.62);
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  animation: emblemFloat 6s var(--ease) infinite;
}
.hero-emblem::before {
  content: ''; position: absolute; inset: -2px; z-index: -1; border-radius: 21px;
  background: conic-gradient(from 0deg, var(--teal), var(--sky), var(--blue), var(--teal));
  opacity: .85; filter: blur(7px); animation: spin 7s linear infinite;
}
.hero-emblem img { width: 56%; height: 56%; object-fit: contain; filter: drop-shadow(0 3px 8px rgba(0,0,0,.45)); }
@keyframes emblemFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hero-brand-meta { display: flex; flex-direction: column; gap: 5px; }
.hero-brand-name { font-size: 1.72rem; font-weight: 600; letter-spacing: .005em; line-height: 1; color: #fff; }
.hero-brand-tag { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
  padding: 9px 18px 9px 9px; border-radius: var(--r-full);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px);
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.92);
}
[dir="rtl"] .hero-badge { padding: 9px 9px 9px 18px; }
.hero-badge b { background: var(--grad-teal); color: #fff; padding: 4px 11px; border-radius: var(--r-full); font-weight: 600; font-size: .76rem; }
.hero-title { font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 500; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 24px; }
.hero-title .g { display: inline; background: linear-gradient(110deg, #7fc4f0, #39A8DF 45%, #00d8cf); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.15rem; line-height: 1.85; color: rgba(255,255,255,.74); max-width: 540px; margin-bottom: 38px; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px 26px; margin-top: 46px; flex-wrap: wrap; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 11px; font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.86); }
.hero-trust-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: var(--teal); flex-shrink: 0; }
.hero-trust-ic .material-symbols-rounded { font-size: 21px; }

/* Hero photo card */
.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 50px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,33,58,.75) 0%, transparent 55%); }
.hf-chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18); animation: float 6s var(--ease) infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hf-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #fff; flex-shrink: 0; }
.hf-icon.teal { background: var(--grad-teal); }
.hf-icon .material-symbols-rounded { font-size: 24px; }
.hf-n { font-size: 1.25rem; font-weight: 600; color: var(--navy); line-height: 1; }
.hf-l { font-size: .72rem; color: var(--mid); margin-top: 3px; white-space: nowrap; }
[dir="rtl"] .hf-tl { right: 20px; } [dir="ltr"] .hf-tl { left: 20px; } .hf-tl { top: 22px; }
[dir="rtl"] .hf-br { left: 20px; } [dir="ltr"] .hf-br { right: 20px; } .hf-br { bottom: 24px; animation-delay: 2.4s; }

/* Scroll cue */
.hero-scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll .material-symbols-rounded { font-size: 22px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── INNER PAGE HERO ── */
.page-hero { position: relative; display: flex; align-items: center; overflow: hidden; background: var(--grad-navy); }
.page-hero .hero-bg img { opacity: .3; }
.page-hero .hero-bg::after { background: linear-gradient(120deg, rgba(20,33,58,.95), rgba(29,54,93,.8)); }
.page-hero-inner { position: relative; z-index: 2; width: 100%; max-width: 760px; margin-inline: auto; text-align: center; padding: calc(var(--nav-h) + 58px) 0 66px; color: #fff; }
.page-hero .hero-badge { margin-bottom: 22px; }
.page-hero .hero-title { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.12; margin-bottom: 16px; }
.page-hero .hero-sub { margin: 0 auto; max-width: 600px; }

/* ── COUNTRIES STRIP ── */
.countries { background: var(--navy); padding: 34px 0; }
.countries-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.countries-lbl { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.4); letter-spacing: .06em; }
.country-chip { display: flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: var(--r-full); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.82); font-size: .92rem; font-weight: 500; transition: all .25s var(--ease); }
.country-chip:hover { background: rgba(57,168,223,.16); border-color: rgba(57,168,223,.4); transform: translateY(-3px); }
.country-flag { width: 26px; height: 19px; border-radius: 4px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,.18); flex-shrink: 0; }
.country-flag img { width: 100%; height: 100%; object-fit: cover; }
.cs-sep { color: var(--teal); font-size: 1.3rem; }
/* the flow arrow points toward Israel (the destination); mirror it in RTL so it points left */
.cs-arrow { display: inline-block; }
[dir="rtl"] .cs-arrow { transform: scaleX(-1); }

/* ── STATS BAR ── */
.stats { background: var(--grad-navy); padding: 70px 0; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% -20%, rgba(0,160,153,.22), transparent 50%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat { text-align: center; }
.stat-ico { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--sky); }
.stat-ico .material-symbols-rounded { font-size: 28px; }
.stat-num { font-size: 3rem; font-weight: 600; line-height: 1; background: linear-gradient(120deg,#fff,#bcd8f5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-suffix { -webkit-text-fill-color: var(--teal); color: var(--teal); }
.stat-lbl { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: 12px; letter-spacing: .04em; }

/* ── HOW IT WORKS ── */
.how { background: var(--light); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.how-step { position: relative; background: #fff; border-radius: var(--r-xl); padding: 40px 32px; border: 1px solid var(--line); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.how-step:hover { transform: translateY(-8px); box-shadow: var(--sh-lift); }
.how-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.how-step:hover::before { transform: scaleX(1); }
.how-num { position: absolute; top: 22px; font-size: 5.5rem; font-weight: 600; line-height: 1; color: rgba(61,102,174,.06); pointer-events: none; }
[dir="rtl"] .how-num { left: 26px; } [dir="ltr"] .how-num { right: 26px; }
.how-ico { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: var(--grad-soft); border: 1px solid rgba(61,102,174,.12); color: var(--blue); margin-bottom: 24px; transition: all .35s var(--ease); }
.how-step:hover .how-ico { background: var(--grad); color: #fff; box-shadow: var(--sh-blue); }
.how-ico .material-symbols-rounded { font-size: 32px; }
.how-title { font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.how-desc { font-size: .97rem; color: var(--soft); line-height: 1.75; }

/* ── FEATURES / WHY ── */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.feature {
  display: flex; gap: 22px; align-items: flex-start; padding: 32px 30px;
  background: #fff; border-radius: var(--r-xl); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--sh-card); border-color: transparent; }
[dir="rtl"] .feature { flex-direction: row; }
.feature-ico { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0; background: var(--grad-soft); color: var(--blue); transition: all .3s var(--ease); }
.feature:hover .feature-ico { background: var(--grad); color: #fff; box-shadow: var(--sh-blue); }
.feature-ico .material-symbols-rounded { font-size: 30px; }
.feature-title { font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.feature-desc { font-size: .95rem; color: var(--soft); line-height: 1.7; }

/* ── WORKERS ── */
.workers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-bottom: 60px; }
.worker { position: relative; background: #fff; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.worker:hover { transform: translateY(-9px); box-shadow: var(--sh-lift); }
.worker-top { position: relative; height: 110px; background: var(--grad); display: flex; justify-content: flex-end; padding: 16px; }
.worker-top::after { content: ''; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(255,255,255,.22), transparent 58%); }
.worker-badge { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 5px; height: fit-content; padding: 6px 12px; border-radius: var(--r-full); background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: .72rem; font-weight: 500; backdrop-filter: blur(8px); }
.worker-badge .material-symbols-rounded { font-size: 15px; }
.worker-av { position: absolute; bottom: -38px; left: 50%; transform: translateX(-50%); z-index: 2; width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg,#eaf2ff,#d2e4fb); color: var(--blue); font-size: 1.3rem; font-weight: 600; border: 5px solid #fff; box-shadow: var(--sh-card); }
.worker-body { padding: 54px 24px 26px; text-align: center; }
.worker-name { font-size: 1.1rem; font-weight: 500; color: var(--navy); }
.worker-anon { font-size: .8rem; color: var(--mid); letter-spacing: .2em; margin-bottom: 16px; }
.worker-specs { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.worker-spec { padding: 5px 14px; border-radius: var(--r-full); background: rgba(0,160,153,.08); color: var(--teal); border: 1px solid rgba(0,160,153,.18); font-size: .75rem; font-weight: 500; }
.worker-flags { display: flex; gap: 7px; justify-content: center; margin-bottom: 10px; }
.worker-flag { width: 32px; height: 23px; border-radius: 4px; overflow: hidden; box-shadow: 0 0 0 1px var(--line); }
.worker-flag img { width: 100%; height: 100%; object-fit: cover; }
.worker-exp { font-size: .85rem; color: var(--mid); margin-bottom: 22px; }
.worker-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.worker-btn { display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 11px; border-radius: var(--r-full); font-size: .85rem; font-weight: 500; text-decoration: none; cursor: pointer; font-family: inherit; transition: all .25s var(--ease); }
.worker-btn .material-symbols-rounded { font-size: 17px; }
.worker-btn.v { border: 1.5px solid rgba(61,102,174,.28); color: var(--blue); background: transparent; }
.worker-btn.v:hover { background: var(--light); border-color: var(--blue); }
.worker-btn.r { border: none; background: var(--grad); color: #fff; }
.worker-btn.r:hover { box-shadow: var(--sh-blue); }
.workers-cta { text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--grad-navy); position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 10%, rgba(0,160,153,.18), transparent 45%); }
.test-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.test { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-xl); padding: 36px 32px; transition: transform .3s var(--ease), border-color .3s; }
.test:hover { transform: translateY(-6px); border-color: rgba(57,168,223,.4); }
.test-stars { display: flex; gap: 3px; color: #ffc44d; margin-bottom: 18px; }
.test-stars .material-symbols-rounded { font-size: 20px; font-variation-settings: 'FILL' 1; }
.test-quote { font-size: 1rem; color: rgba(255,255,255,.78); line-height: 1.85; margin-bottom: 26px; font-weight: 300; }
.test-author { display: flex; align-items: center; gap: 14px; }
[dir="rtl"] .test-author { flex-direction: row; }
.test-av { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-teal); color: #fff; font-weight: 600; font-size: .9rem; flex-shrink: 0; }
.test-name { font-weight: 500; color: #fff; }
.test-role { font-size: .82rem; color: rgba(255,255,255,.45); }

/* ── SPECIALTIES (photo cards) ── */
.spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.spec { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; }
.spec img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.spec:hover img { transform: scale(1.08); }
.spec::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,33,58,.96) 0%, rgba(20,33,58,.5) 45%, rgba(20,33,58,.08) 100%); transition: opacity .4s; }
.spec-content { position: relative; z-index: 1; padding: 30px; }
.spec-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); color: #fff; backdrop-filter: blur(10px); margin-bottom: 16px; }
.spec-ico .material-symbols-rounded { font-size: 28px; }
.spec-title { font-size: 1.25rem; font-weight: 500; color: #fff; margin-bottom: 9px; }
.spec-desc { font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ── CASES ── */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.case { background: #fff; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.case:hover { transform: translateY(-7px); box-shadow: var(--sh-lift); }
.case-photo { position: relative; height: 190px; overflow: hidden; }
.case-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.case:hover .case-photo img { transform: scale(1.07); }
.case-city { position: absolute; bottom: 14px; z-index: 1; display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: var(--r-full); background: rgba(255,255,255,.92); color: var(--blue); font-size: .76rem; font-weight: 500; backdrop-filter: blur(8px); }
.case-city .material-symbols-rounded { font-size: 15px; }
[dir="rtl"] .case-city { right: 16px; } [dir="ltr"] .case-city { left: 16px; }
.case-body { padding: 26px 24px; }
.case-title { font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.case-desc { font-size: .92rem; color: var(--soft); line-height: 1.7; margin-bottom: 16px; }
.case-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.case-tag { padding: 5px 12px; border-radius: var(--r-full); background: var(--light); color: var(--blue); font-size: .73rem; font-weight: 500; }

/* ── ABOUT — STORY ── */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.story-media { position: relative; }
.story-photo { border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-xl); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-badge { position: absolute; bottom: 28px; display: flex; align-items: center; gap: 14px; padding: 18px 24px; border-radius: var(--r-lg); background: #fff; box-shadow: var(--sh-lift); }
[dir="rtl"] .story-badge { right: -24px; } [dir="ltr"] .story-badge { left: -24px; }
.story-badge .material-symbols-rounded { font-size: 38px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.story-badge-n { font-size: 1.5rem; font-weight: 600; color: var(--navy); line-height: 1; }
.story-badge-l { font-size: .8rem; color: var(--mid); }
.story-text p { font-size: 1.02rem; color: var(--soft); line-height: 1.85; margin-bottom: 18px; }
.story-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 34px; }
.sms { padding: 22px 16px; border-radius: var(--r-lg); background: var(--light); border: 1px solid var(--line); text-align: center; }
.sms-num { font-size: 1.8rem; font-weight: 600; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sms-lbl { font-size: .78rem; color: var(--mid); margin-top: 4px; }

/* ── MISSION ── */
.mission { background: var(--grad-sub); text-align: center; position: relative; overflow: hidden; padding: 100px 0; }
.mission::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 18%, rgba(255,255,255,.16), transparent 42%), radial-gradient(circle at 88% 92%, rgba(0,160,153,.3), transparent 45%); }
.mission-inner { position: relative; max-width: 820px; margin: 0 auto; }
.mission .material-symbols-rounded { font-size: 56px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.mission-quote { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 400; color: #fff; line-height: 1.55; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.value { display: flex; gap: 22px; align-items: flex-start; padding: 32px 30px; background: #fff; border-radius: var(--r-xl); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.value:hover { transform: translateY(-5px); box-shadow: var(--sh-card); }
[dir="rtl"] .value { flex-direction: row; }
.value-ico { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0; background: var(--grad-soft); color: var(--teal); }
.value-ico .material-symbols-rounded { font-size: 30px; }
.value-title { font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.value-desc { font-size: .95rem; color: var(--soft); line-height: 1.7; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.team { background: #fff; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); text-align: center; box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.team:hover { transform: translateY(-7px); box-shadow: var(--sh-lift); }
.team-top { height: 88px; background: var(--grad); }
.team-av { width: 80px; height: 80px; margin: -40px auto 0; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg,#eaf2ff,#d2e4fb); color: var(--blue); font-weight: 600; font-size: 1.2rem; border: 5px solid #fff; box-shadow: var(--sh-card); position: relative; }
.team-name { font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-top: 16px; }
.team-role { font-size: .85rem; color: var(--teal); font-weight: 500; margin-bottom: 12px; }
.team-desc { font-size: .9rem; color: var(--soft); line-height: 1.65; padding: 0 24px 28px; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.form-card { background: #fff; border-radius: var(--r-2xl); padding: 48px; box-shadow: var(--sh-xl); border: 1px solid var(--line); }
.form-card h3 { font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 30px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .86rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border-radius: var(--r); border: 1.5px solid var(--line); background: var(--white); font-family: inherit; font-size: .95rem; color: var(--ink); transition: all .25s var(--ease); outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(57,168,223,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.phone-row { display: grid; grid-template-columns: 130px 1fr; gap: 10px; }
.prefix-box { display: flex; align-items: center; padding: 0 12px; border-radius: var(--r); border: 1.5px solid var(--line); background: var(--light); }
.prefix-box select { border: none; background: transparent; padding: 14px 0; cursor: pointer; }

/* ── INTERNATIONAL PHONE FIELD ── */
.phone-field { display: flex; gap: 10px; align-items: stretch; }
.phone-field input[type="tel"] { flex: 1; min-width: 0; }
.cc { position: relative; flex-shrink: 0; }
.cc-toggle {
  display: flex; align-items: center; gap: 8px; height: 100%; cursor: pointer;
  padding: 0 14px; border: 1.5px solid var(--line); border-radius: var(--r);
  background: var(--light); font-family: inherit; font-size: .95rem; color: var(--ink);
  transition: border-color .2s var(--ease);
}
.cc-toggle:hover { border-color: rgba(61,102,174,.4); }
.cc.open .cc-toggle { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(57,168,223,.12); }
.cc-toggle img { width: 24px; height: 17px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.cc-toggle .cc-dial { font-weight: 500; }
.cc-toggle .material-symbols-rounded { font-size: 18px; color: var(--mid); transition: transform .25s var(--ease); }
.cc.open .cc-toggle .material-symbols-rounded { transform: rotate(180deg); }
.cc-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-start: 0; z-index: 60;
  width: 320px; max-width: 86vw; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-lift);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .22s var(--ease);
}
.cc.open .cc-menu { opacity: 1; visibility: visible; transform: none; }
.cc-search { width: 100%; padding: 11px 14px; margin-bottom: 8px; border: 1.5px solid var(--line); border-radius: 11px; font-family: inherit; font-size: .92rem; outline: none; }
.cc-search:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(57,168,223,.1); }
.cc-list { max-height: 264px; overflow-y: auto; scrollbar-width: thin; }
.cc-list::-webkit-scrollbar { width: 8px; }
.cc-opt { display: flex; align-items: center; gap: 11px; width: 100%; padding: 9px 11px; border: none; background: none; border-radius: 10px; cursor: pointer; font-family: inherit; font-size: .9rem; color: var(--navy); text-align: start; }
.cc-opt:hover { background: var(--light); }
.cc-opt img { width: 24px; height: 17px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.1); flex-shrink: 0; }
.cc-opt .cc-name { flex: 1; }
.cc-opt .cc-d { color: var(--mid); font-size: .85rem; unicode-bidi: plaintext; }
.cc-empty { padding: 16px; text-align: center; color: var(--mid); font-size: .88rem; }
.form-note { font-size: .8rem; color: var(--mid); margin-bottom: 20px; line-height: 1.5; }
.form-success { display: none; margin-top: 16px; padding: 16px 20px; border-radius: var(--r); background: #e8f8f1; border: 1px solid #9fe3c5; color: #0a7a52; font-weight: 500; font-size: .92rem; }
.form-success.show { display: flex; align-items: center; gap: 8px; }
.form-success .material-symbols-rounded { font-size: 20px; }

.info-card { background: var(--grad-navy); border-radius: var(--r-2xl); padding: 44px; position: relative; overflow: hidden; }
.info-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(0,160,153,.3), transparent 70%); }
.info-card h4 { position: relative; font-size: 1.3rem; font-weight: 500; color: #fff; margin-bottom: 30px; }
.info-item { position: relative; display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
[dir="rtl"] .info-item { flex-direction: row; }
.info-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: var(--sky); flex-shrink: 0; }
.info-ico .material-symbols-rounded { font-size: 22px; }
.info-lbl { font-size: .74rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.info-val { font-size: .98rem; font-weight: 400; color: #fff; text-decoration: none; }
.info-val:hover { color: var(--sky); }
.info-note { position: relative; font-size: .88rem; color: rgba(255,255,255,.5); margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); line-height: 1.7; }

/* ── PREMIUM CONTACT (page) ── */
.contact-hero { min-height: 52vh; align-items: flex-end; }
.contact-hero .page-hero-inner { padding-bottom: 165px; }
.contact-lift { padding-top: 0; padding-bottom: 120px; }
.contact-lift .container { margin-top: -120px; position: relative; z-index: 5; }
.contact-card {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  background: #fff; border-radius: var(--r-2xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,.6); box-shadow: var(--sh-xl);
}
.contact-aside { position: relative; overflow: hidden; color: #fff; background: var(--grad-navy); padding: 54px 46px; }
.contact-aside::before { content: ''; position: absolute; top: -90px; inset-inline-end: -90px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(0,160,153,.45), transparent 70%); }
.contact-aside::after  { content: ''; position: absolute; bottom: -130px; inset-inline-start: -110px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(57,168,223,.32), transparent 70%); }
.contact-aside > * { position: relative; z-index: 1; }
.contact-aside h3 { font-size: 1.55rem; font-weight: 500; margin-bottom: 12px; }
.contact-aside-sub { font-size: .96rem; color: rgba(255,255,255,.66); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
.contact-aside .info-item { margin-bottom: 24px; }
.contact-aside .btn-wa { margin-top: 6px; }
.contact-aside-badge { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding: 11px 18px; border-radius: var(--r-full); background: rgba(0,160,153,.18); border: 1px solid rgba(0,160,153,.4); font-size: .86rem; font-weight: 500; }
.contact-aside-badge .material-symbols-rounded { font-size: 20px; color: #5ff0e6; }

.contact-panel { padding: 54px 50px; }
.contact-panel h3 { font-size: 1.55rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.contact-panel-sub { font-size: .95rem; color: var(--soft); margin-bottom: 30px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 860px) {
  .contact-hero .page-hero-inner { padding-bottom: 120px; }
  .contact-lift .container { margin-top: -90px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-aside, .contact-panel { padding: 38px 26px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ── CTA BAND (premium) ── */
.cta {
  text-align: center; position: relative; overflow: hidden; padding: 124px 0; isolation: isolate;
  background:
    radial-gradient(880px 520px at 85% 120%, rgba(0,160,153,.85), transparent 60%),
    radial-gradient(720px 480px at 8% -12%, rgba(57,168,223,.6), transparent 58%),
    linear-gradient(122deg, #2b51a0 0%, #3D66AE 42%, #2f86c2 78%, #1f9fb3 122%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}
/* soft dot-grid texture, masked toward the centre */
.cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .55;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.1px, transparent 1.1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 46%, #000 28%, transparent 80%);
          mask-image: radial-gradient(ellipse 72% 68% at 50% 46%, #000 28%, transparent 80%);
}
/* floating highlight orb */
.cta::after {
  content: ''; position: absolute; z-index: -1; top: -170px; left: 50%; transform: translateX(-50%);
  width: 640px; height: 380px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 22px; }
.cta-inner h2 { font-size: clamp(2.1rem, 4.4vw, 3.15rem); font-weight: 600; color: #fff; margin-bottom: 18px; letter-spacing: -.022em; line-height: 1.1; text-shadow: 0 2px 20px rgba(8,22,48,.18); }
.cta-inner p { font-size: 1.14rem; color: rgba(255,255,255,.92); margin-bottom: 42px; line-height: 1.75; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CTA buttons — premium polish (scoped to the band) */
.cta .btn-lg { padding: 18px 40px; font-weight: 600; }
.cta .btn-white { color: var(--blue); box-shadow: 0 16px 40px rgba(8,22,48,.3); }
.cta .btn-white:hover { box-shadow: 0 24px 56px rgba(8,22,48,.42); }
.cta .btn-white::after {
  content: ''; width: 1.02em; height: 1.02em; flex-shrink: 0; background: currentColor; opacity: .92;
  -webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
          mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  transition: transform .28s var(--ease);
}
[dir="rtl"] .cta .btn-white::after { transform: scaleX(-1); }
.cta .btn-white:hover::after { transform: translateX(4px); }
[dir="rtl"] .cta .btn-white:hover::after { transform: scaleX(-1) translateX(4px); }
.cta .btn-wa, .cta .btn-ghost { box-shadow: 0 14px 36px rgba(8,22,48,.24); }
.cta .btn-ghost { border-color: rgba(255,255,255,.5); }
.cta .btn-ghost:hover { border-color: rgba(255,255,255,.85); }

/* ── FOOTER ── */
footer { background: #16243f; color: rgba(255,255,255,.5); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-brand p { font-size: .92rem; line-height: 1.8; max-width: 260px; color: rgba(255,255,255,.45); }
.footer-col h4 { font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: .92rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; flex-wrap: wrap; gap: 14px; }
.footer-socials { display: flex; gap: 10px; }
.footer-soc { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.55); text-decoration: none; transition: all .25s var(--ease); }
.footer-soc:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }
.footer-soc svg { width: 17px; height: 17px; }

/* ── CUSTOM PAGES (CMS page builder output) ── */
.pc-hero { min-height: 42vh; }
.pc-section { padding-block: 76px 92px; }
.pc-body { max-width: 820px; margin-inline: auto; }
.pc-block { margin-bottom: 34px; }
.pc-block:last-child { margin-bottom: 0; }
.pc-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.pc-eyebrow::before {
  content: ''; width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0;
  background: var(--grad); transform: rotate(45deg); box-shadow: 0 3px 9px rgba(61,102,174,.45);
}
.pc-heading h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 600; line-height: 1.18; letter-spacing: -.02em; color: var(--navy); }
.pc-text p { font-size: 1.075rem; color: var(--soft); line-height: 1.85; margin-bottom: 16px; }
.pc-text p:last-child { margin-bottom: 0; }
.pc-image { margin-block: 6px; }
.pc-image img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-card); }
.pc-image figcaption { margin-top: 12px; font-size: .88rem; color: var(--mid); text-align: center; }
.pc-btn { display: flex; }
.pc-divider { height: 1px; background: var(--line); margin-block: 6px; }
.pc-html :where(h1,h2,h3,h4) { color: var(--navy); font-weight: 600; line-height: 1.22; margin-bottom: .5em; }
.pc-html p { font-size: 1.075rem; color: var(--soft); line-height: 1.85; margin-bottom: 16px; }
.pc-html a { color: var(--blue); text-decoration: underline; }
.pc-html img { max-width: 100%; border-radius: var(--r-lg); }
.pc-html iframe, .pc-html video { max-width: 100%; border: 0; border-radius: var(--r-lg); }
.pc-html ul, .pc-html ol { margin: 0 0 16px; padding-inline-start: 1.4em; }
.pc-html li { color: var(--soft); line-height: 1.7; margin-bottom: 6px; }

/* ── LIVE PAGE BUILDER (logged-in CMS users on custom pages) ── */
.fbb-fab {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 5000;
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px;
  border: none; border-radius: var(--r-full); background: var(--grad); color: #fff;
  font-family: inherit; font-weight: 600; font-size: .95rem; cursor: pointer;
  box-shadow: 0 14px 34px rgba(61,102,174,.45); transition: transform .2s var(--ease);
}
.fbb-fab:hover { transform: translateY(-2px); }
.fbb-fab .material-symbols-rounded { font-size: 20px; }

.fbb-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 6000;
  display: flex; align-items: center; gap: 12px; padding: 12px 18px;
  background: var(--navy); color: #fff; box-shadow: 0 -10px 30px rgba(0,0,0,.25);
}
.fbb-bar .fbb-lang { font-size: .9rem; color: rgba(255,255,255,.8); }
.fbb-bar .fbb-lang b { color: #fff; }
.fbb-bar .fbb-tsp { flex: 1; }
.fbb-bar button { display: inline-flex; align-items: center; gap: 6px; border: none; border-radius: 10px; padding: 10px 18px; font-family: inherit; font-weight: 600; font-size: .92rem; cursor: pointer; }
.fbb-bar .fbb-bsave { background: var(--teal); color: #fff; }
.fbb-bar .fbb-bexit { background: rgba(255,255,255,.14); color: #fff; }
.fbb-bar .material-symbols-rounded { font-size: 18px; }
html.fbb-editing body { padding-bottom: 80px; }

html.fbb-editing .fbb { position: relative; margin: 12px 0; border: 1.5px dashed transparent; border-radius: 14px; transition: border-color .2s; }
html.fbb-editing .fbb:hover { border-color: rgba(57,168,223,.45); }
.fbb.fbb-drag { opacity: .45; }
.fbb.fbb-over-t { box-shadow: 0 -3px 0 var(--sky); }
.fbb.fbb-over-b { box-shadow: 0 3px 0 var(--sky); }
.fbb-tools {
  position: absolute; top: -15px; inset-inline-start: 14px; z-index: 5;
  display: flex; align-items: center; gap: 4px; padding: 4px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--sh-sm);
  opacity: 0; transition: opacity .15s;
}
.fbb:hover > .fbb-tools, .fbb:focus-within > .fbb-tools { opacity: 1; }
@media (hover: none) { html.fbb-editing .fbb-tools { opacity: 1; } }   /* touch: always show controls */
.fbb-tools button { width: 30px; height: 30px; display: grid; place-items: center; border: none; background: #f3f6fc; color: var(--navy); border-radius: 7px; cursor: pointer; }
.fbb-tools button:hover { background: var(--blue); color: #fff; }
.fbb-tools .fbb-h { cursor: grab; background: var(--blue); color: #fff; }
.fbb-tools .fbb-del:hover { background: #dc2626; }
.fbb-tools .material-symbols-rounded { font-size: 18px; }
.fbb-tname { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; font-weight: 600; color: var(--mid); padding: 0 6px; white-space: nowrap; }
.fbb-tname .material-symbols-rounded { font-size: 16px; color: var(--blue); }
.fbb-tools .fbb-tsp { width: 4px; }
.fbb-body { padding: 6px; }

.fbb-ce { outline: 1.5px dashed rgba(57,168,223,.4); outline-offset: 4px; border-radius: 4px; cursor: text; min-width: 40px; }
.fbb-ce:focus { outline: 2px solid var(--sky); background: rgba(57,168,223,.05); }
.fbb-ce:empty::before { content: attr(data-ph); color: #b9c2d0; }
.fbb-ml { white-space: pre-wrap; }
.fbb-ce.pc-text { font-size: 1.075rem; color: var(--soft); line-height: 1.85; }
.fbb-ctl { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.fbb-ctl input, .fbb-ctl select { padding: 8px 11px; border: 1.5px solid var(--line); border-radius: 8px; font-family: inherit; font-size: .9rem; background: #fff; }
.fbb-ctl input { flex: 1; min-width: 150px; }
.fbb-noimg { display: grid; place-items: center; min-height: 160px; border: 2px dashed var(--line); border-radius: 14px; color: var(--mid); background: var(--light); }
.fbb-hint { color: var(--mid); font-style: italic; }

.fbb-empty { text-align: center; padding: 56px 20px; color: var(--mid); font-size: 1.05rem; border: 2px dashed var(--line); border-radius: 18px; background: var(--light); }
.fbb-addrow { display: flex; justify-content: center; margin: 18px 0; }
.fbb-add { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border: 2px dashed var(--sky); background: rgba(57,168,223,.08); color: var(--navy); border-radius: 12px; cursor: pointer; font-family: inherit; font-weight: 600; }
.fbb-add:hover { background: rgba(57,168,223,.18); }
.fbb-add .material-symbols-rounded { font-size: 20px; color: var(--blue); }

.fbb-menu { position: absolute; z-index: 6100; display: grid; gap: 2px; padding: 8px; min-width: 184px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--sh-lift); }
.fbb-menu button { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: none; background: none; border-radius: 9px; cursor: pointer; font-family: inherit; font-size: .92rem; color: var(--navy); text-align: start; }
.fbb-menu button:hover { background: var(--light); color: var(--blue); }
.fbb-menu .material-symbols-rounded { font-size: 20px; color: var(--blue); }

.fbb-modal { position: fixed; inset: 0; z-index: 6200; display: grid; place-items: center; padding: 20px; background: rgba(20,33,58,.6); backdrop-filter: blur(4px); }
.fbb-modal-card { width: 100%; max-width: 680px; background: #fff; border-radius: 18px; padding: 24px; box-shadow: var(--sh-xl); }
.fbb-modal-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; }
.fbb-html { width: 100%; min-height: 280px; padding: 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .86rem; line-height: 1.5; resize: vertical; }
.fbb-modal-act { display: flex; gap: 10px; margin-top: 16px; }

.fbb-title-edit { outline: 2px dashed rgba(255,255,255,.45); outline-offset: 6px; border-radius: 6px; cursor: text; }
.fbb-title-edit:empty::before { content: attr(data-ph); color: rgba(255,255,255,.5); }

.fbb-toast { position: fixed; bottom: 88px; inset-inline-start: 50%; transform: translateX(-50%); z-index: 6300; background: var(--navy); color: #fff; padding: 12px 22px; border-radius: 12px; box-shadow: var(--sh-lift); font-size: .92rem; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.fbb-toast.show { opacity: 1; visibility: visible; }
.fbb-toast.bad { background: #b91c1c; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: .08s; } .fade-up.d2 { transition-delay: .16s; }
.fade-up.d3 { transition-delay: .24s; } .fade-up.d4 { transition-delay: .32s; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE  ·  breakpoints: 1024 / 880 / 768 / 600 / 480 / 380
   ════════════════════════════════════════════════════════════════ */

/* ── ≤1024px — tablets (landscape) ── */
@media (max-width: 1024px) {
  section { padding: 84px 0; }
  .section-head { margin-bottom: 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  .story { grid-template-columns: 1fr; gap: 48px; }
  .story-media { max-width: 460px; margin-inline: auto; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 36px; }
  .stats-grid { gap: 24px; }
}

/* ── ≤880px — floating nav collapses to hamburger ── */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── ≤768px — tablets (portrait) & large phones ── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 22px; }
  .section-head { margin-bottom: 40px; }

  /* every multi-column card grid → single column */
  .how-grid, .workers-grid, .test-grid, .spec-grid, .cases-grid, .team-grid,
  .features-grid, .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* full-width stacked CTAs */
  .hero-actions, .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-trust { gap: 14px 18px; }

  /* contact / forms */
  .form-card { padding: 32px 24px; }
  .phone-row { grid-template-columns: 1fr; }

  /* footer bottom row centers */
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ── ≤600px — phones ── */
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .container { padding: 0 18px; }

  /* drawer hugs the screen edges a touch tighter */
  .nav-drawer { top: 86px; left: 12px; right: 12px; padding: 14px; }

  /* hero breathing room + trust strip */
  .hero-inner { padding-top: calc(var(--nav-h) + 26px); padding-bottom: 50px; gap: 38px; }
  .page-hero-inner { padding-top: calc(var(--nav-h) + 30px); padding-bottom: 48px; }
  .hero-trust { gap: 18px 26px; }
  .hero-trust-sep { display: none; }

  /* hero photo chips shrink so they never overflow the frame */
  .hf-chip { padding: 10px 13px; gap: 9px; }
  .hf-icon { width: 36px; height: 36px; }
  .hf-icon .material-symbols-rounded { font-size: 20px; }
  .hf-n { font-size: 1.05rem; }
  .hf-tl { top: 14px; }
  .hf-br { bottom: 14px; }
  [dir="rtl"] .hf-tl { right: 12px; } [dir="ltr"] .hf-tl { left: 12px; }
  [dir="rtl"] .hf-br { left: 12px; }  [dir="ltr"] .hf-br { right: 12px; }

  /* dark band paddings ease up */
  .stats { padding: 56px 0; }
  .stat-num { font-size: 2.6rem; }
  .mission { padding: 72px 0; }
  .cta { padding: 80px 0; }
  .section-sub { font-size: 1rem; }

  /* contact card insets */
  .contact-aside, .contact-panel { padding: 34px 22px; }
}

/* ── ≤480px — small phones (≈390px target) ── */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  section { padding: 52px 0; }

  .stats-grid { grid-template-columns: 1fr; gap: 30px; }

  /* hero */
  .hero-badge { font-size: .76rem; padding: 8px 14px 8px 8px; }
  [dir="rtl"] .hero-badge { padding: 8px 8px 8px 14px; }
  .hero-trust-num { font-size: 1.45rem; }
  .btn-lg { padding: 16px 28px; font-size: 1rem; }
  .eyebrow { font-size: .7rem; letter-spacing: .15em; margin-bottom: 16px; }

  /* about story badge floats out → settles inline */
  .story-badge { position: static; inset: auto; margin-top: 16px; }
  [dir="rtl"] .story-badge, [dir="ltr"] .story-badge { left: auto; right: auto; }
  .story-stats { gap: 12px; }
  .sms { padding: 18px 10px; }
  .sms-num { font-size: 1.5rem; }

  /* feature / value rows stack icon above text */
  .feature, .value,
  [dir="rtl"] .feature, [dir="rtl"] .value { flex-direction: column; gap: 16px; padding: 26px 22px; }

  /* worker card CTAs stack */
  .worker-actions { grid-template-columns: 1fr; }

  /* phone country-code menu & lang menu never exceed the viewport */
  .cc-menu { width: min(320px, 92vw); }
  .lang-menu { min-width: 170px; }

  /* contact lift overlaps less aggressively */
  .contact-hero .page-hero-inner { padding-bottom: 100px; }
  .contact-lift .container { margin-top: -70px; }

  /* footer bottom stacks */
  .footer-bottom { flex-direction: column; }
  .nav-drawer { top: 80px; }
}

/* ── ≤380px — very small phones ── */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero-trust { gap: 14px 18px; }
  .worker-specs { gap: 6px; }
  .contact-aside, .contact-panel { padding: 28px 18px; }
}

/* ════════════════════════════════════════════════════════════════
   ACCESSIBILITY WIDGET (self-hosted 'accessibility' lib, MIT)
   ════════════════════════════════════════════════════════════════ */
/* float the toolbar icon at the bottom-start, clear of WhatsApp / CMS controls.
   Vars must live on :root — the widget injects its icon as a child of <html>. */
:root { --_access-icon-top: auto; --_access-icon-right: auto; --_access-icon-bottom: 22px; --_access-icon-left: 22px; --_access-icon-z-index: 4500; }
._access-icon { box-shadow: 0 14px 34px rgba(29,54,93,.3) !important; }
._access-menu { z-index: 4600 !important; }
@media (max-width: 600px) { :root { --_access-icon-bottom: 18px; --_access-icon-left: 16px; } }
