/* Specialized Networks — splnetworks.com
   Tokens and components. Authored per DESIGN.md. Logical properties throughout so the
   Arabic RTL build needs no stylesheet fork. */

:root {
  --navy-900: #051a3b;
  --navy-800: #082755;
  --navy-700: #0e3468;
  --green: #2cba30;        /* official brand green, from the logo PDF shading */
  --green-ink: #1b7f21;    /* darkened for text on light grounds (5.1:1 on white) */
  --indigo: #1a0087;       /* official gradient terminus */
  --brand-ink: #282560;    /* official wordmark navy */

  --surface: #ffffff;
  --surface-alt: #f4f7fb;
  --border: #dce4ee;
  --ink: #0d1b33;
  --ink-muted: #4a5b78;
  --on-navy: #ffffff;
  --on-navy-muted: #bfceeb;

  /* The logo's exact ramp: an N=1.26 eased interpolation, sampled from the PDF. */
  --grad: linear-gradient(90deg, #2cba30 0%, #299e3d 12%, #27814b 25%, #246657 38%,
          #214d63 50%, #1f376d 62%, #1d2078 75%, #1b0d81 88%, #1a0087 100%);

  --wrap: 1240px;
  --gutter: 24px;
  --pad-block: clamp(64px, 8vw, 112px);
  --r-pill: 999px;
  --r-card: 6px;

  --sh-1: 0 2px 8px rgba(5, 26, 59, 0.06);
  --sh-2: 0 8px 16px rgba(5, 26, 59, 0.14);
  --sh-3: 0 22px 44px rgba(5, 26, 59, 0.2);

  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
  --t: 200ms var(--ease);

  --font: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: inherit; }

/* --- bidi -----------------------------------------------------------------
   Latin runs (phone numbers, email, Latin product names) inside an RTL page are
   reordered by the bidi algorithm — "+966 555 930 88" renders as "88 930 555 966+".
   Isolating them keeps each run in its own direction. */
a[href^='tel:'], a[href^='mailto:'], .ltr, bdi { unicode-bidi: isolate; }
a[href^='tel:'], .ltr--force { direction: ltr; }

/* --- browser surfaces ---------------------------------------------------- */
::selection { background: rgba(44, 186, 48, 0.24); color: var(--ink); }
.on-dark ::selection, .foot ::selection, .hero ::selection { background: rgba(44, 186, 48, 0.34); color: #fff; }
:root { caret-color: var(--green-ink); accent-color: var(--green-ink); }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 3px;
}
.on-dark :where(a, button, input, textarea, select):focus-visible { outline-color: var(--green); box-shadow: 0 0 0 4px rgba(5, 26, 59, 0.9); }

.on-dark { scrollbar-color: var(--navy-700) var(--navy-900); }

.skip {
  position: absolute; inset-inline-start: 12px; inset-block-start: -100px;
  z-index: 200; background: var(--green); color: #06301a; font-weight: 700;
  padding: 12px 20px; border-radius: var(--r-pill); transition: inset-block-start var(--t);
}
.skip:focus { inset-block-start: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
@media (max-width: 640px) { :root { --gutter: 20px; } }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.ic { flex: none; }

/* --- type ---------------------------------------------------------------- */
.display { font-size: clamp(2.5rem, 1.4rem + 4.4vw, 4.5rem); letter-spacing: -0.035em; line-height: 1.05; text-wrap: balance; }
.h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); text-wrap: balance; }
.h3 { font-size: clamp(1.25rem, 1rem + 0.9vw, 1.6rem); letter-spacing: -0.02em; }
.h4 { font-size: 1.0625rem; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-ink);
  margin-block-end: 14px;
}
.on-dark .eyebrow, .hero .eyebrow { color: var(--green); }

.lead { font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.1875rem); color: var(--ink-muted); max-width: 62ch; }
.on-dark .lead { color: var(--on-navy-muted); }
.prose { max-width: 68ch; color: var(--ink-muted); }
.prose > * + * { margin-block-start: 1.05em; }
.prose strong { color: var(--ink); font-weight: 700; }
.rule { height: 3px; width: 68px; background: var(--grad); border-radius: 3px; margin-block-end: 22px; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 700; font-size: 0.9375rem; line-height: 1;
  padding: 15px 28px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn--primary { background: var(--green); color: #04240a; box-shadow: var(--sh-1); }
.on-dark .btn--primary, .hero .btn--primary, .band .btn--primary { box-shadow: none; }
.on-dark .btn--primary:hover, .hero .btn--primary:hover, .band .btn--primary:hover { box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3); }
.btn--primary:hover { background: #34d438; transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh-2); }
.on-dark .btn--dark:hover { box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3); }
.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.on-dark .btn--ghost, .hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.on-dark .btn--ghost:hover, .hero .btn--ghost:hover { background: #fff; color: var(--navy-800); border-color: #fff; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0); }

.tlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green-ink); text-decoration: none; }
.tlink .ic { transition: transform var(--t); }
.tlink:hover .ic { transform: translateX(4px); }
[dir='rtl'] .tlink .ic { transform: scaleX(-1); }
[dir='rtl'] .tlink:hover .ic { transform: scaleX(-1) translateX(4px); }
.on-dark .tlink { color: var(--green); }

/* --- utility bar ---------------------------------------------------------- */
.utility { background: var(--navy-900); color: var(--on-navy-muted); font-size: 0.8125rem; }
.utility__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 44px; }
.utility__tag { letter-spacing: 0.02em; }
.utility__contact { display: flex; align-items: center; gap: 22px; }
.utility__contact a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: color var(--t); }
.utility__contact a:hover { color: #fff; }
.utility__contact .ic { width: 15px; height: 15px; opacity: 0.75; }
.utility__lang { font-weight: 700; color: #fff; border-inline-start: 1px solid rgba(255, 255, 255, 0.18); padding-inline-start: 22px; }
@media (max-width: 900px) { .utility__tag { display: none; } .utility__in { justify-content: center; } }
@media (max-width: 620px) { .utility__contact { gap: 16px; } .utility__contact a:nth-child(2) { display: none; } }

/* --- header --------------------------------------------------------------- */
.head { position: sticky; top: 0; z-index: 90; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px); border-block-end: 1px solid var(--border); transition: box-shadow var(--t); }
.head.is-stuck { box-shadow: var(--sh-1); }
.head__in { display: flex; align-items: center; gap: 28px; min-height: 76px; }

/* One height governs the whole lockup. The wordmark is set to 65% of the mark height —
   matching them exactly read too heavy — and each width follows from its own artwork
   aspect ratio.
   mark 60.42/61.96 = 0.975 · latin 180.4/14.85 = 12.148 · arabic 179.52/17.48 = 10.270
   so latin width = h × 0.65 × 12.148 = h × 7.896, arabic = h × 0.65 × 10.270 = h × 6.676 */
.brand {
  --brand-h: 26px;
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; flex: none;
}
.brand__mark {
  height: var(--brand-h); width: calc(var(--brand-h) * 0.9752); flex: none;
}

/* The wordmark is the client's outlined lettering, not a system font. Painting it as a
   mask keeps one cached file and lets colour follow the surface it sits on. */
.brand__word {
  display: block; flex: none;
  height: calc(var(--brand-h) * 0.65); width: calc(var(--brand-h) * 7.896);
  background: currentColor; color: var(--brand-ink);
  -webkit-mask: url('/assets/logo/wordmark.svg') no-repeat left center / contain;
  mask: url('/assets/logo/wordmark.svg') no-repeat left center / contain;
  text-indent: -9999px; overflow: hidden; white-space: nowrap;
}
[dir='rtl'] .brand__word {
  width: calc(var(--brand-h) * 6.676);
  -webkit-mask-image: url('/assets/logo/wordmark-ar.svg');
  mask-image: url('/assets/logo/wordmark-ar.svg');
  -webkit-mask-position: right center; mask-position: right center;
}
.brand--foot { --brand-h: 28px; }
.brand--foot .brand__word { color: #fff; }

@media (max-width: 1240px) { .brand { --brand-h: 23px; } }
@media (max-width: 1080px) { .brand { --brand-h: 26px; } }   /* nav is hidden below here, so the lockup can breathe */
@media (max-width: 560px)  { .brand { --brand-h: 21px; gap: 10px; } .brand--foot { --brand-h: 24px; } }
@media (max-width: 380px)  { .brand { --brand-h: 18px; } }

@supports not ((-webkit-mask-image: url('#')) or (mask-image: url('#'))) {
  .brand__word {
    width: auto; height: auto; background: none; text-indent: 0; overflow: visible;
    font-weight: 800; font-size: 1.125rem; letter-spacing: -0.035em; color: var(--brand-ink);
  }
  .brand--foot .brand__word { color: #fff; }
}

.nav { margin-inline-start: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__item { position: relative; }
.nav__link { display: inline-block; padding: 10px 14px; font-size: 0.9375rem; font-weight: 600; color: var(--ink); text-decoration: none; border-radius: var(--r-pill); transition: color var(--t), background-color var(--t); }
.nav__link:hover { color: var(--green-ink); background: var(--surface-alt); }
.nav__link.is-active { color: var(--green-ink); }
.nav__toggle { display: none; }

.nav__item--has-sub > .nav__link { padding-inline-end: 30px; }
.nav__item--has-sub::after { content: ''; position: absolute; inset-inline-end: 14px; top: 50%; width: 8px; height: 8px; margin-top: -5px; border-inline-end: 2px solid currentColor; border-block-end: 2px solid currentColor; transform: rotate(45deg); opacity: 0.5; pointer-events: none; }

.subnav {
  position: absolute; inset-inline-start: 0; top: calc(100% + 8px); min-width: 268px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--sh-2);
  padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__item--has-sub:hover .subnav,
.nav__item--has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav__link { display: block; padding: 10px 14px; border-radius: 6px; font-size: 0.9rem; font-weight: 600; text-decoration: none; color: var(--ink); transition: background-color var(--t), color var(--t); }
.subnav__link:hover, .subnav__link.is-active { background: var(--surface-alt); color: var(--green-ink); }

.head__cta { flex: none; }
.burger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: 1px solid var(--border); border-radius: 10px; color: var(--ink); cursor: pointer; }
.burger .ic:last-child, .burger[aria-expanded='true'] .ic:first-child { display: none; }
.burger[aria-expanded='true'] .ic:last-child { display: block; }

@media (max-width: 1080px) {
  .nav, .head__cta { display: none; }
  .burger { display: inline-flex; margin-inline-start: auto; }
}

.mnav { position: fixed; inset: 0; z-index: 95; background: var(--navy-900); color: #fff; overflow-y: auto; padding-block: 92px 32px; }
.mnav__list { list-style: none; }
.mnav__list a { display: block; padding: 14px 0; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; text-decoration: none; border-block-end: 1px solid rgba(255, 255, 255, 0.1); }
.mnav__sub a { font-size: 0.9375rem; font-weight: 500; color: var(--on-navy-muted); padding-inline-start: 18px; }
.mnav__foot { display: grid; gap: 12px; margin-block-start: 28px; }

/* --- hero ----------------------------------------------------------------- */
.hero { position: relative; background: var(--navy-800); color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(5, 26, 59, 0.86) 0%, rgba(5, 26, 59, 0.7) 42%, rgba(5, 26, 59, 0.94) 100%);
}
.hero__in { padding-block: clamp(72px, 9vw, 132px) 0; }
.hero__copy { max-width: 660px; }
.hero .display { margin-block-end: 22px; max-width: 13ch; }
.hero__lead { color: var(--on-navy-muted); font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-block-start: 34px; }

.hero__strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-block-start: clamp(48px, 6vw, 84px); background: rgba(255, 255, 255, 0.16); border-radius: 10px 10px 0 0; overflow: hidden; }
.strip__cell { position: relative; display: block; background: rgba(5, 26, 59, 0.82); backdrop-filter: blur(6px); padding: 26px 26px 30px; text-decoration: none; transition: background-color var(--t); }
.strip__cell:hover { background: rgba(14, 52, 104, 0.94); }
.strip__num { display: block; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green); margin-block-end: 10px; font-variant-numeric: tabular-nums; }
.strip__name { display: block; font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; margin-block-end: 6px; }
.strip__desc { display: block; font-size: 0.875rem; color: var(--on-navy-muted); line-height: 1.45; }
.strip__cell::after { content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: inline-start; transition: transform var(--t); }
.strip__cell:hover::after, .strip__cell:focus-visible::after { transform: scaleX(1); }
@media (max-width: 860px) { .hero__strip { grid-template-columns: 1fr; } .hero__copy, .hero .display { max-width: none; } }

/* --- page header (interior) ------------------------------------------------ */
.phead { position: relative; background: var(--navy-800); color: #fff; isolation: isolate; padding-block: clamp(56px, 7vw, 96px); }
.phead__media { position: absolute; inset: 0; z-index: -2; }
.phead__media img { width: 100%; height: 100%; object-fit: cover; }
.phead::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5, 26, 59, 0.9), rgba(5, 26, 59, 0.8)); }
.phead h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); letter-spacing: -0.035em; margin-block-end: 16px; max-width: 22ch; }
.phead .lead { color: var(--on-navy-muted); }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: 0.8125rem; color: var(--on-navy-muted); margin-block-end: 20px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.crumbs li + li::before { content: '/'; margin-inline-end: 8px; opacity: 0.5; }

/* --- sections -------------------------------------------------------------- */
.sec { padding-block: var(--pad-block); }
.sec--alt { background: var(--surface-alt); }
.sec--navy { background: var(--navy-800); color: #fff; }
.sec--tight { padding-block: clamp(48px, 6vw, 76px); }
.sec__head { max-width: 62ch; margin-block-end: clamp(36px, 4vw, 56px); }
.sec__head .h2 { margin-block-end: 16px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--copy-end > :first-child { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--copy-end > :first-child { order: 0; } }

.media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-2); background: var(--surface-alt); }
.media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media--tall img { aspect-ratio: 3 / 4; }

/* --- service cards --------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.card {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--sh-1); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: #c6d4e6; }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-alt); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { display: flex; flex-direction: column; gap: 10px; padding: 26px 26px 28px; flex: 1; }
.card__title { font-size: 1.1875rem; font-weight: 800; letter-spacing: -0.025em; }
.card__title a { text-decoration: none; }
.card__title a::after { content: ''; position: absolute; inset: 0; }
.card__text { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.6; }
.card__foot { margin-block-start: auto; padding-block-start: 6px; }

/* Five cards in a three-column grid leave a hole. Split the row: 3 then 2 full-width. */
@media (min-width: 1024px) {
  .cards--5 { grid-template-columns: repeat(6, 1fr); }
  .cards--5 > * { grid-column: span 2; }
  .cards--5 > :nth-child(4) { grid-column: 1 / span 3; }
  .cards--5 > :nth-child(5) { grid-column: 4 / span 3; }
  .cards--5 > :nth-child(4) .card__media,
  .cards--5 > :nth-child(5) .card__media { aspect-ratio: 21 / 9; }
}

/* --- capability list ------------------------------------------------------- */
.caps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4px 40px; list-style: none; }
.caps li { display: flex; gap: 14px; align-items: flex-start; padding-block: 16px; border-block-end: 1px solid var(--border); }
.sec--navy .caps li { border-color: rgba(255, 255, 255, 0.14); }
.caps .ic { color: var(--green-ink); margin-block-start: 3px; width: 18px; height: 18px; }
.sec--navy .caps .ic { color: var(--green); }
.caps b { display: block; font-weight: 700; letter-spacing: -0.01em; }
.caps span { font-size: 0.9375rem; color: var(--ink-muted); }
.sec--navy .caps span { color: var(--on-navy-muted); }

/* --- steps (real sequences only) ------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; list-style: none; counter-reset: step; }
.steps li { counter-increment: step; position: relative; padding-block-start: 26px; border-block-start: 3px solid var(--border); }
@counter-style ar-lead-zero { system: numeric; symbols: '٠' '١' '٢' '٣' '٤' '٥' '٦' '٧' '٨' '٩'; pad: 2 '٠'; }
[dir='rtl'] .steps li::before { content: counter(step, ar-lead-zero); }
.steps li::before { content: counter(step, decimal-leading-zero); position: absolute; inset-block-start: -3px; inset-inline-start: 0; padding-block-start: 26px; font-size: 0.8125rem; font-weight: 800; color: var(--green-ink); letter-spacing: 0.08em; font-variant-numeric: tabular-nums; }
.steps li > * { margin-inline-start: 40px; }
.steps h3 { font-size: 1.0625rem; margin-block-end: 8px; }
.steps p { font-size: 0.9375rem; color: var(--ink-muted); }
.sec--navy .steps li { border-color: rgba(255, 255, 255, 0.2); }
.sec--navy .steps li::before { color: var(--green); }
.sec--navy .steps p { color: var(--on-navy-muted); }

/* --- automation: flow stages and mechanism list ----------------------------- */
.stages { display: grid; gap: clamp(40px, 5vw, 64px); }
.stage__head { display: flex; align-items: baseline; gap: 14px; margin-block-end: 22px;
  padding-block-end: 14px; border-block-end: 2px solid var(--border); }
.sec--navy .stage__head { border-color: rgba(255, 255, 255, 0.18); }
.stage__n { font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.1em; color: var(--green-ink);
  font-variant-numeric: tabular-nums; flex: none; }
.sec--navy .stage__n { color: var(--green); }
.stage__head h3 { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem); letter-spacing: -0.02em; }

/* Each entry states the thing, then how it works, then what it changes. */
.mech { list-style: none; display: grid; }
.mech li { padding-block: 26px; border-block-end: 1px solid var(--border); }
.sec--navy .mech li { border-color: rgba(255, 255, 255, 0.14); }
.mech h3 { font-size: 1.0625rem; letter-spacing: -0.015em; margin-block-end: 10px; }
.mech p { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.6; }
.sec--navy .mech p { color: var(--on-navy-muted); }
.mech p + p { margin-block-start: 8px; }
.mech .lbl { font-weight: 700; color: var(--ink); }
.sec--navy .mech .lbl { color: #fff; }
@media (min-width: 940px) {
  .mech li { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: start; }
  .mech h3 { margin-block-end: 0; }
}

/* --- spec table ------------------------------------------------------------ */
.spec { width: 100%; border-collapse: collapse; font-size: 0.9375rem; font-variant-numeric: tabular-nums; }
.spec caption { text-align: start; font-weight: 700; color: var(--ink); margin-block-end: 14px; }
.spec th, .spec td { text-align: start; padding: 14px 16px; border-block-end: 1px solid var(--border); vertical-align: top; }
.spec thead th { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); font-weight: 700; }
.spec tbody th { font-weight: 700; width: 42%; }
.spec tbody td { color: var(--ink-muted); }
.spec tbody tr:hover { background: var(--surface-alt); }
.table-scroll { overflow-x: auto; }

/* --- CTA band -------------------------------------------------------------- */
.band { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; }
.band::before { content: ''; position: absolute; inset-inline: 0; inset-block-start: 0; height: 4px; background: var(--grad); }
.band__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; padding-block: clamp(48px, 6vw, 76px); }
.band h2 { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem); max-width: 24ch; }
.band p { color: var(--on-navy-muted); margin-block-start: 12px; max-width: 52ch; }
.band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- contact --------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.cinfo { display: grid; gap: 4px; list-style: none; }
.cinfo li { display: flex; gap: 14px; align-items: flex-start; padding-block: 18px; border-block-end: 1px solid var(--border); }
.cinfo .ic { color: var(--green-ink); margin-block-start: 2px; }
.cinfo b { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); font-weight: 700; margin-block-end: 4px; }
.cinfo a, .cinfo span { text-decoration: none; font-weight: 600; color: var(--ink); }
.cinfo a:hover { color: var(--green-ink); text-decoration: underline; text-underline-offset: 3px; }

.form { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--r-card); padding: clamp(24px, 3vw, 36px); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__grid > .field--wide { grid-column: 1 / -1; }
@media (max-width: 620px) { .form__grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.875rem; font-weight: 700; }
.field .req { color: var(--green-ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.9375rem; color: var(--ink); background: #fff;
  border: 1.5px solid var(--border); border-radius: 8px; padding: 13px 14px; width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #c1d0e2; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-ink); box-shadow: 0 0 0 3px rgba(27, 127, 33, 0.16); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: #8496ad; }
.field .hint { font-size: 0.8125rem; color: var(--ink-muted); }
.field .err { font-size: 0.8125rem; font-weight: 600; color: #b42318; }
.field input[aria-invalid='true'], .field textarea[aria-invalid='true'], .field select[aria-invalid='true'] { border-color: #b42318; }
.form__note { font-size: 0.8125rem; color: var(--ink-muted); margin-block-start: 16px; }
.form__status { margin-block-start: 16px; padding: 14px 16px; border-radius: 8px; font-size: 0.9375rem; font-weight: 600; }
.form__status[data-state='ok'] { background: #e6f8ee; color: #04642f; border: 1px solid #a9e3c4; }
.form__status[data-state='err'] { background: #fdecea; color: #b42318; border: 1px solid #f3b7b1; }
.btn[aria-disabled='true'] { opacity: 0.6; pointer-events: none; }

/* --- footer ---------------------------------------------------------------- */
.foot { background: var(--navy-900); color: var(--on-navy-muted); padding-block: clamp(56px, 7vw, 84px) 0; }
.foot__top { display: grid; grid-template-columns: 1.1fr 2fr; gap: clamp(32px, 5vw, 64px); padding-block-end: 48px; }
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr; } }
.foot__blurb { margin-block: 18px 14px; font-size: 0.9375rem; max-width: 46ch; line-height: 1.65; }
.foot__cr { font-size: 0.8125rem; opacity: 0.72; }
.foot__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }
.foot__h { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; font-weight: 700; margin-block-end: 18px; }
.foot__col ul { list-style: none; display: grid; gap: 11px; font-size: 0.9375rem; }
.foot__col a { text-decoration: none; transition: color var(--t); }
.foot__col a:hover { color: #fff; }
.foot__contact a, .foot__addr { display: inline-flex; gap: 10px; align-items: flex-start; }
.foot__contact .ic, .foot__addr .ic { width: 17px; height: 17px; opacity: 0.6; margin-block-start: 3px; }
.foot__addr { font-size: 0.9375rem; }
.foot__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 24px; border-block-start: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.8125rem; opacity: 0.75; }

/* --- floating whatsapp ----------------------------------------------------- */
.wa {
  position: fixed; inset-inline-end: 20px; inset-block-end: 20px; z-index: 80;
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  background: #25d366; color: #05341a; border-radius: 50%; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform var(--t), box-shadow var(--t);
}
.wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34); }
.wa .ic { width: 28px; height: 28px; }
@media (max-width: 620px) { .wa { inset-inline-end: 14px; inset-block-end: 14px; width: 50px; height: 50px; } }

/* --- the one authored moment ------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  /* The one authored moment: the hero settles once on load.
     `backwards` applies the from-state only during the delay, so if animations never
     run the content is simply visible — never stuck at opacity 0. */
  .settle { animation: settle 620ms var(--ease) backwards; }
  .settle:nth-child(1) { animation-delay: 60ms; }
  .settle:nth-child(2) { animation-delay: 140ms; }
  .settle:nth-child(3) { animation-delay: 210ms; }
  .settle:nth-child(4) { animation-delay: 280ms; }
  .hero__strip .strip__cell:nth-child(1) { animation: settle 620ms var(--ease) 340ms backwards; }
  .hero__strip .strip__cell:nth-child(2) { animation: settle 620ms var(--ease) 410ms backwards; }
  .hero__strip .strip__cell:nth-child(3) { animation: settle 620ms var(--ease) 480ms backwards; }
  @keyframes settle { from { opacity: 0; transform: translateY(14px); } }
}

@media print {
  .utility, .head, .mnav, .wa, .band__actions, .form { display: none !important; }
  body { color: #000; }
  .hero, .phead, .sec--navy, .foot { background: #fff !important; color: #000 !important; }
  .hero::after, .phead::after { display: none; }
}
