/* ──────────────────────────────────────────────────────────────
   NEX Consultants — design system tokens
   ────────────────────────────────────────────────────────────── */
:root {
  --ink:        #0E1B2C;
  --navy:       #13294B;
  --navy-soft:  #1B355F;
  --blue:       #1E5AA8;
  --blue-deep:  #174A8C;
  --blue-50:    #EAF1FB;
  --gold:       #C8A24B;
  --gold-soft:  #EFE3C2;

  --paper:      #FFFFFF;
  --paper-2:    #F4F6FA;
  --paper-3:    #ECEFF5;
  --line:       #E3E8EF;
  --line-2:     #D4DBE5;

  --text:       #0E1B2C;
  --text-2:     #3A4A60;
  --text-3:     #647387;
  --muted:      #8794A8;

  --focus:      #1E5AA8;

  --shadow-sm:  0 1px 2px rgba(14,27,44,.06), 0 1px 1px rgba(14,27,44,.04);
  --shadow-md:  0 4px 14px rgba(14,27,44,.07), 0 1px 3px rgba(14,27,44,.05);
  --shadow-lg:  0 24px 48px -16px rgba(14,27,44,.18), 0 6px 16px rgba(14,27,44,.08);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --font-display: "Figtree", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; color: var(--text-2); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img { display: block; max-width: 100%; }

/* RTL support — simple */
[dir="rtl"] { font-family: "IBM Plex Sans Arabic", "Noto Kufi Arabic", var(--font-body); }
[dir="rtl"] .flip { transform: scaleX(-1); }

/* ── Layout primitives ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 18px; } }

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
@media (max-width: 720px) { .section { padding: 56px 0; } .section--tight { padding: 40px 0; } }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }
.eyebrow--paper { color: rgba(255,255,255,.7); }
.eyebrow--paper::before { background: rgba(255,255,255,.5); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 6px 14px -6px rgba(30,90,168,.55);
}
.btn--primary:hover { background: var(--blue-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--paper-2); }

.btn--paper {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}
.btn--paper:hover { background: rgba(255,255,255,.18); }

.btn--wa {
  background: #25D366;
  color: #04331a;
}
.btn--wa:hover { background: #1ebb59; }

.btn--lg { padding: 16px 26px; font-size: 15px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }

/* ── Chevron motif (used as bullet / divider / accent) ── */
.chev {
  display: inline-block;
  width: 14px; height: 9px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 60;
}
.nav__inner {
  height: 72px;
  display: flex; align-items: center; gap: 36px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav__logo img { height: 36px; width: auto; }
.nav__links {
  display: flex; gap: 4px; flex: 1;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 9px 14px;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}
.nav__link:hover { color: var(--ink); background: var(--paper-2); }
.nav__link--active { color: var(--blue); }
.nav__link--active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 1px; height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__lang {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px; font-weight: 600;
}
.nav__lang button {
  background: transparent; border: 0;
  padding: 7px 11px;
  color: var(--text-3);
}
.nav__lang button.is-on { background: var(--ink); color: #fff; }

@media (max-width: 960px) {
  .nav__links { display: none; }
}

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(180deg, #0E1B2C 0%, #13294B 65%, #1B355F 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(30,90,168,.42), transparent 70%),
    radial-gradient(700px 360px at 5% 90%, rgba(200,162,75,.10), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 96px 0 110px;
  position: relative; z-index: 1;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 72px; }
}

.hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.hero h1 .accent { color: var(--gold); display: inline-block; }
.hero h1 .accent::after {
  content: "";
  display: block;
  height: 4px; width: 90%;
  background: var(--gold);
  margin-top: 6px;
  border-radius: 2px;
}
.hero__lede {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  margin-top: 22px;
  max-width: 540px;
}
.hero__ctas {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero__strip {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 26px 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  max-width: 600px;
}
.hero__strip div {
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
  display: flex; gap: 8px; align-items: flex-start;
  max-width: 240px;
}
.hero__strip div .chev { color: var(--gold); margin-top: 4px; flex-shrink: 0; }

/* hero card / form */
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.hero__card h3 {
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.hero__card .sub { color: rgba(255,255,255,.65); font-size: 13px; margin-top: 4px; }

.field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.field label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: 10px;
  padding: 11px 13px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border .15s ease, background .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='white' fill-opacity='.6' d='M0 0h10L5 6z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }

/* ── Logos / partners row ── */
.partners {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.partners__inner {
  display: flex; gap: 44px;
  align-items: center; justify-content: center;
  padding: 28px 0;
  flex-wrap: wrap;
}
.partners__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  border-right: 1px solid var(--line-2);
  padding-right: 32px;
  margin-right: -8px;
}
.partners img {
  height: 38px;
  width: auto;
  opacity: .85;
  filter: grayscale(.2);
}
@media (max-width: 720px) { .partners__label { border-right: 0; padding-right: 0; margin-right: 0; } }

/* ── Section heading ── */
.s-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 44px;
}
.s-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-top: 12px;
  max-width: 620px;
}
.s-head .s-head__lede {
  font-size: 16px;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 6px;
}
@media (max-width: 780px) {
  .s-head { grid-template-columns: 1fr; }
}

/* ── Service cards ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .service-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px 18px;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  min-height: 220px;
}
.svc-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
.svc-card h3 {
  font-size: 18px;
  letter-spacing: -0.015em;
}
.svc-card p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.5;
}
.svc-card__foot {
  margin-top: auto;
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
  display: inline-flex; gap: 6px; align-items: center;
}
.svc-card__foot .chev { color: var(--blue); }
.svc-card__bg {
  position: absolute;
  inset: auto -20px -20px auto;
  width: 90px; height: 90px;
  opacity: .04;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
}

/* ── Jurisdictions comparison ── */
.jcompare {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.jcompare__row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.jcompare__row:last-child { border-bottom: 0; }
.jcompare__row > div {
  padding: 18px 18px;
  font-size: 13.5px;
  color: var(--text-2);
  border-right: 1px solid var(--line);
}
.jcompare__row > div:last-child { border-right: 0; }
.jcompare__head {
  background: var(--ink);
  color: #fff;
}
.jcompare__head > div { color: #fff; font-weight: 600; font-family: var(--font-display); font-size: 14px; padding: 16px 18px; }
.jcompare__attr {
  background: var(--paper-2);
  font-weight: 600;
  color: var(--ink);
}
.jcompare__cell strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 13.5px; }
@media (max-width: 880px) {
  .jcompare { overflow-x: auto; }
  .jcompare__row { min-width: 760px; }
}

/* Jurisdiction cards */
.jzone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
@media (max-width: 880px) { .jzone-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .jzone-grid { grid-template-columns: 1fr; } }

.jzone {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.jzone:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.jzone__logo { height: 46px; display: flex; align-items: center; }
.jzone__logo img { max-height: 46px; width: auto; }
.jzone__name { font-size: 17px; letter-spacing: -0.01em; }
.jzone__kind {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.jzone__suit { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.jzone__bens {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.jzone__bens li {
  font-size: 12.5px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}
.jzone__bens li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 10px; height: 7px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
}

/* ── Calculator ── */
.calc {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 920px) { .calc { grid-template-columns: 1fr; } }

.calc__inputs { padding: 36px 36px; }
.calc__inputs h3 { font-size: 22px; }
.calc__inputs .sub { font-size: 14px; color: var(--text-3); margin-top: 6px; }
.calc__steps { margin-top: 28px; display: grid; gap: 22px; }
.calc__step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
}
.calc__step .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.calc__step h4 { font-size: 14px; font-family: var(--font-body); }
.calc__step .help { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.calc__options {
  margin-top: 10px;
  display: flex; flex-wrap: wrap;
  gap: 6px;
}
.calc__option {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: all .12s;
}
.calc__option:hover { border-color: var(--navy); color: var(--ink); }
.calc__option.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.calc__num {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 10px;
}
.calc__num button {
  width: 36px; height: 36px;
  background: transparent; border: 0;
  font-size: 18px; color: var(--text-2);
}
.calc__num span {
  min-width: 32px; text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--ink);
}

.calc__output {
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
  color: #fff;
  padding: 36px 36px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.calc__output::before {
  content: "";
  position: absolute;
  right: -80px; top: -50px;
  width: 220px; height: 220px;
  background: var(--gold);
  opacity: .08;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
}
.calc__output h4 {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.calc__range {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
}
.calc__range small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}
.calc__breakdown {
  margin-top: 24px;
  display: grid; gap: 8px;
  font-size: 13px;
}
.calc__breakdown div {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}
.calc__breakdown div span:last-child { color: #fff; font-variant-numeric: tabular-nums; }
.calc__disclaimer {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  padding: 12px 14px;
  background: rgba(200,162,75,.10);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  line-height: 1.5;
}
.calc__cta { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Leadership ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.member__img {
  aspect-ratio: 4 / 3.2;
  background: var(--paper-2);
  background-size: cover;
  background-position: center top;
}
.member__body { padding: 18px 20px 22px; }
.member__role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.member__name { font-size: 17px; margin-top: 4px; letter-spacing: -0.01em; }
.member__creds {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── Resources / Guides ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .guide-grid { grid-template-columns: 1fr; } }
.guide {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: all .15s;
  min-height: 240px;
}
.guide:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.guide h3 { font-size: 19px; letter-spacing: -0.015em; line-height: 1.25; }
.guide p { font-size: 13.5px; color: var(--text-3); }
.guide__foot {
  margin-top: auto;
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── About story ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 920px) { .story-grid { grid-template-columns: 1fr; gap: 28px; } }
.story-grid h2 { font-size: clamp(28px, 3.6vw, 44px); }
.story-grid p { font-size: 16px; line-height: 1.65; margin-top: 14px; }
.story-grid .panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.panel h4 { font-size: 14px; font-family: var(--font-body); color: var(--ink); }
.panel p { font-size: 12.5px; color: var(--text-3); margin-top: 4px; line-height: 1.5; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}
.contact-card h3 { font-size: 22px; letter-spacing: -0.015em; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 20px; }
.contact-list li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.contact-list .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.contact-list .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-list .val { font-size: 15px; color: var(--ink); font-weight: 500; margin-top: 2px; line-height: 1.4; }
.contact-list .val a { color: var(--blue); }
.contact-list small { font-size: 12px; color: var(--muted); }

.consult-form { display: grid; gap: 14px; margin-top: 20px; }
.consult-form .field { margin-top: 0; }
.consult-form .field label { color: var(--text-3); }
.consult-form .field input,
.consult-form .field select,
.consult-form .field textarea {
  background: #fff;
  border-color: var(--line-2);
  color: var(--ink);
}
.consult-form .field input::placeholder { color: var(--muted); }

/* ── Forms light variant ── */
.field--light input,
.field--light select,
.field--light textarea {
  background: #fff;
  border-color: var(--line-2);
  color: var(--ink);
}
.field--light label { color: var(--text-3); }

/* ── Trust strip ── */
.trust {
  background: var(--ink);
  color: #fff;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 900px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
.trust__cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.trust__cell:last-child { border-right: 0; }
.trust__cell h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  display: flex; gap: 8px; align-items: center;
}
.trust__cell h4 .chev { color: var(--gold); }
.trust__cell p { font-size: 12.5px; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ── Footer ── */
.foot {
  background: #0A1322;
  color: rgba(255,255,255,.7);
  padding: 64px 0 28px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 960px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h5 {
  color: #fff;
  font-size: 12.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot ul li { font-size: 13.5px; cursor: pointer; }
.foot ul li:hover { color: #fff; }
.foot__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.foot__logo img { height: 30px; filter: brightness(0) invert(1); }
.foot__legal {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.foot__socials { display: flex; gap: 10px; }
.foot__socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.foot__socials a:hover { background: var(--blue); color: #fff; }

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #04331a;
  border: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.6), 0 4px 8px rgba(0,0,0,.15);
  z-index: 50;
  transition: transform .15s;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .4;
  animation: pulse 2.2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ── Modal ── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,27,44,.62);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade-in .18s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow: auto;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: rise .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes rise { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 0;
  font-size: 18px;
  color: var(--text-2);
}
.modal__close:hover { background: var(--paper-3); }
.modal h3 { font-size: 22px; letter-spacing: -0.015em; }
.modal .sub { color: var(--text-3); margin-top: 4px; font-size: 14px; }

/* Service detail modal */
.svc-detail {
  max-width: 760px;
}
.svc-detail__hero {
  height: 200px;
  margin: -32px -32px 24px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.svc-detail__hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,27,44,0) 30%, rgba(14,27,44,.85) 100%);
}
.svc-detail__cat {
  position: absolute;
  left: 24px; bottom: 18px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.svc-detail__journey {
  display: grid; gap: 14px;
  margin-top: 18px;
}
.svc-detail__step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 10px;
  border-left: 3px solid var(--blue);
}
.svc-detail__step .n {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.svc-detail__step strong { font-size: 14px; color: var(--ink); display: block; }
.svc-detail__step span { font-size: 13px; color: var(--text-3); }

/* ── Compliance/journey feature ── */
.compliance {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) {
  .compliance { padding: 36px; grid-template-columns: 1fr; gap: 32px; }
}
.compliance::before {
  content: "";
  position: absolute;
  right: -120px; top: -80px;
  width: 360px; height: 360px;
  background: var(--blue);
  opacity: .14;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M0 0 L8 4.5 L0 9 L4 4.5 Z M6 0 L14 4.5 L6 9 L10 4.5 Z' fill='black'/></svg>") center/contain no-repeat;
}
.compliance h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); position: relative; }
.compliance p { color: rgba(255,255,255,.72); margin-top: 14px; max-width: 460px; position: relative; }
.compliance__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}
.compliance__step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 12px 14px;
}
.compliance__step .n {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.compliance__step span { font-size: 12.5px; color: rgba(255,255,255,.85); line-height: 1.4; }

/* ── Filter chips ── */
.filters {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.filter {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: all .12s;
}
.filter:hover { border-color: var(--navy); color: var(--ink); }
.filter.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  animation: rise-toast .25s ease;
}
@keyframes rise-toast { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }
.toast .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Hero image card right side ── */
.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero__visual .tile {
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy-soft);
  position: relative;
}
.hero__visual .tile img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__visual .tile--big {
  grid-row: 1 / span 2;
  aspect-ratio: 3/4.4;
}
.hero__visual .tile--small {
  aspect-ratio: 4/3;
}
.hero__visual .tile__cap {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(14,27,44,.78);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
@media (max-width: 720px) {
  .hero__visual .tile--big { aspect-ratio: 4/3; grid-row: auto; }
}

/* RTL adjustments */
[dir="rtl"] .eyebrow::before { margin-right: 0; }
[dir="rtl"] .jcompare__row > div { border-right: 0; border-left: 1px solid var(--line); }
[dir="rtl"] .jcompare__row > div:last-child { border-left: 0; }
[dir="rtl"] .svc-detail__step { border-left: 0; border-right: 3px solid var(--blue); }

/* ── small utility ── */
.kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--text-3);
}

.divider-chev {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--line-2);
  margin: 32px 0;
}
.divider-chev .chev { color: var(--line-2); }
.divider-chev::before, .divider-chev::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Section nav (anchor jumps within home) */
.crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
