/* Insutile shared site CSS — extracted from per-page inline styles. */

:root {
      --font-body:    'Plus Jakarta Sans', 'Inter', sans-serif;
      --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
      --font-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
      --font-logo:    'Inter', sans-serif; /* locked — do not change */
    }

h1, h2, h3, h4, h5, h6,
    .hero h1, .hero-subtitle,
    .section-head h2,
    .cta-band h2 {
      font-family: var(--font-heading);
      letter-spacing: -0.01em;
    }

.logo,
    .logo-text,
    .logo-text span,
    .logo-text span:first-child,
    .logo-text span:nth-child(2),
    .footer-brand .logo-text span,
    .footer-brand .logo-text span:first-child,
    .footer-brand .logo-text span:last-child {
      font-family: var(--font-logo) !important;
    }

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

html { scroll-behavior: smooth; }

body {
      font-family: var(--font-body);
      color: #1e2d3d;
      background: #fff;
      line-height: 1.6;
    }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

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

header {
      position: fixed;
      top: 1rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background: transparent;
      border: none;
      box-shadow: none;
      width: 100%;
      max-width: 1100px;
      padding: 0 1.5rem;
    }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-text span:first-child { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: 2.5px; text-transform: uppercase; white-space: nowrap; }

nav { display: flex; align-items: center; justify-content: center; flex: 1; margin: 0 1rem; }

nav > ul { display: flex; gap: .5rem; }

nav > ul > li { position: relative; }

nav > ul > li > a {
      display: block;
      padding: .5rem 1rem;
      font-size: .72rem;
      font-weight: 600;
      color: rgba(255,255,255,.6);
      transition: color .25s;
      white-space: nowrap;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }

nav > ul > li > a::after {
      content: '';
      display: block;
      height: 2px;
      background: var(--green);
      transform: scaleX(0);
      transition: transform .25s;
      margin-top: 2px;
      border-radius: 1px;
    }

nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dropdown a:hover { color: #fff; border-color: var(--green); background: rgba(255,255,255,.06); }

.dropdown.dropdown-rich {
      min-width: 380px;
      padding: .5rem;
      background: linear-gradient(165deg, rgba(20,38,62,.96) 0%, rgba(13,33,55,.96) 100%);
      border: 1px solid rgba(93,200,245,.14);
      box-shadow: 0 18px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.2) inset;
    }

.dropdown-rich .dropdown-eyebrow {
      font-family: var(--font-mono);
      font-size: .60rem;
      font-weight: 600;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      color: rgba(93,200,245,.85);
      padding: .55rem .65rem .65rem;
      margin-bottom: .25rem;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

.dropdown-rich a.dropdown-item {
      display: flex;
      align-items: center;
      gap: .85rem;
      padding: .55rem .6rem;
      border-radius: 10px;
      border-left: none;
      background: transparent;
      color: rgba(255,255,255,.85);
      transition: background .22s ease, transform .22s ease;
      position: relative;
      overflow: hidden;
    }

.dropdown-rich a.dropdown-item::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      width: 3px; height: 0;
      background: var(--green);
      border-radius: 2px;
      transform: translateY(-50%);
      transition: height .25s ease;
    }

.dropdown-rich a.dropdown-item:hover {
      background: linear-gradient(90deg, rgba(58,175,227,.12) 0%, rgba(58,175,227,0) 100%);
      border-color: transparent;
      color: #fff;
    }

.dropdown-rich a.dropdown-item:hover::before { height: 60%; }

.dropdown-rich .dropdown-thumb {
      flex-shrink: 0;
      width: 46px; height: 46px;
      border-radius: 9px;
      background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
      border: 1px solid rgba(255,255,255,.08);
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      transition: transform .25s ease, border-color .22s ease;
    }

.dropdown-rich .dropdown-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

.dropdown-rich a.dropdown-item:hover .dropdown-thumb {
      border-color: rgba(93,200,245,.45);
      transform: scale(1.04);
    }

.dropdown-rich .dropdown-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1px;
      min-width: 0;
    }

.dropdown-rich .dropdown-name {
      font-family: var(--font-body);
      font-size: .87rem;
      font-weight: 600;
      letter-spacing: -0.005em;
      color: rgba(255,255,255,.95);
      line-height: 1.25;
    }

.dropdown-rich .dropdown-tagline {
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 400;
      color: rgba(255,255,255,.50);
      line-height: 1.35;
    }

.dropdown-rich a.dropdown-item:hover .dropdown-tagline { color: rgba(255,255,255,.7); }

.dropdown-rich .dropdown-arrow {
      flex-shrink: 0;
      font-family: var(--font-body);
      font-size: .95rem;
      color: rgba(93,200,245,.35);
      transition: transform .25s ease, color .22s ease;
      margin-left: .25rem;
    }

.dropdown-rich a.dropdown-item:hover .dropdown-arrow {
      color: rgba(93,200,245,1);
      transform: translateX(4px);
    }

.nav-cta {
      margin-left: auto;
      display: flex;
      gap: .75rem;
      align-items: center;
    }

.btn {
      display: inline-flex; align-items: center; gap: .4rem;
      padding: .55rem 1.3rem;
      border-radius: var(--radius);
      font-size: .85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      border: 2px solid transparent;
    }

.btn-outline { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }

footer {
      background: var(--navy);
      color: #a0b4c4;
      padding: 3.5rem 2rem 1.5rem;
    }

.footer-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

.footer-brand .logo { cursor: pointer; display: inline-block; }

.footer-brand .logo-text span:first-child { color: #fff !important; font-size: 2.5rem !important; letter-spacing: 2px; text-transform: uppercase; white-space: normal !important; line-height: 1.1; font-weight: 800; }

.footer-brand p {
      margin-top: 1rem;
      font-size: .83rem;
      line-height: 1.65;
      color: #8aa0b4;
      max-width: 300px;
    }

.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }

.social-btn {
      width: 34px; height: 34px;
      background: rgba(255,255,255,.07);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
      transition: background .2s;
      cursor: pointer;
    }

.social-btn:hover { background: #3AAFE3; }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; display: block; }

.footer-col h5 {
      color: #fff;
      font-size: .85rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }

.footer-col ul li a {
      font-size: .82rem;
      color: #8aa0b4;
      transition: color .15s;
    }

.footer-col ul li a:hover { color: #5DC8F5; }

.footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      margin-bottom: .65rem;
      font-size: .82rem;
      color: #8aa0b4;
    }

.footer-bottom {
      max-width: 1280px;
      margin: 1.5rem auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .77rem;
      color: #5a7080;
      flex-wrap: wrap;
      gap: .5rem;
    }

.footer-bottom a { color: #5a7080; transition: color .15s; }

.footer-bottom a:hover { color: #5DC8F5; }

.wa-float-btn svg {
    width: 30px; height: 30px; fill: #fff;
  }

.wa-float:hover .wa-float-label {
    opacity: 1;
    transform: translateX(0);
  }

/* Accessibility — visible focus indicators (WCAG 2.4.7) */
:focus { outline: none; }

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[data-modal-open]:focus-visible,
[data-modal-close]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #5DC8F5;
  outline-offset: 2px;
  border-radius: 4px;
}

/* On dark surfaces (header/footer/dropdowns), use a brighter ring with offset shadow for legibility. */
header a:focus-visible,
header button:focus-visible,
.dropdown a:focus-visible,
footer a:focus-visible,
footer button:focus-visible,
.wa-float-btn:focus-visible {
  outline: 2px solid #5DC8F5;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(13,33,55,.7);
}

/* Skip link — visually hidden until keyboard-focused (WCAG 2.4.1). */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  background: #0d2137;
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 2px solid #5DC8F5;
  transition: top .15s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: none;
}

/* Honor user motion preferences (WCAG 2.3.3). */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === Mobile menu — Spec-sheet drawer (auto-injected) === */
/* ── Mobile Menu — Spec-sheet drawer ─────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1001;
  pointer-events: none; visibility: hidden;
  transition: visibility 0s .55s;
}
.mobile-menu.active { pointer-events: auto; visibility: visible; transition: visibility 0s 0s; }
.mobile-menu .mm-backdrop {
  position: absolute; inset: 0;
  background: rgba(7,18,33,0);
  backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  transition: background .4s ease, backdrop-filter .4s ease;
  cursor: pointer;
}
.mobile-menu.active .mm-backdrop {
  background: rgba(7,18,33,.58);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.mobile-menu .mm-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(92vw, 420px);
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255,255,255,.018) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(255,255,255,.018) 23px 24px),
    linear-gradient(180deg, #0d2137 0%, #122d4d 55%, #0d2137 100%);
  border-left: 1px solid rgba(58,175,227,.18);
  box-shadow: -32px 0 64px rgba(0,0,0,.45);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.65,0,.05,1);
}
.mobile-menu.active .mm-panel { transform: translateX(0); }
/* Corner ticks */
.mobile-menu .mm-tick { position: absolute; width: 18px; height: 18px; pointer-events: none; border-color: rgba(58,175,227,.55); }
.mobile-menu .mm-tick-tl { top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.mobile-menu .mm-tick-tr { top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.mobile-menu .mm-tick-bl { bottom: 14px; left: 14px; border-bottom: 1px solid; border-left: 1px solid; }
.mobile-menu .mm-tick-br { bottom: 14px; right: 14px; border-bottom: 1px solid; border-right: 1px solid; }
/* Header */
.mobile-menu .mm-meta {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: 1.6rem 1.6rem 1.4rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .58rem; letter-spacing: 2.4px; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border-bottom: 1px dashed rgba(255,255,255,.1);
}
.mobile-menu .mm-meta::after {
  content: ''; position: absolute; left: 1.6rem; bottom: -2px;
  width: 48px; height: 3px; background: #3AAFE3; border-radius: 2px;
}
.mobile-menu .mm-meta-label { color: rgba(255,255,255,.78); font-weight: 600; }
.mobile-menu .mm-meta-rev { color: #3AAFE3; margin-left: auto; }
.mobile-menu .mm-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  cursor: pointer; transition: background .25s, border-color .25s, transform .35s;
}
.mobile-menu .mm-close:hover,
.mobile-menu .mm-close:focus-visible {
  background: rgba(58,175,227,.18); border-color: rgba(58,175,227,.55);
  transform: rotate(90deg);
}
.mobile-menu .mm-close svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 1.6; fill: none; }
/* Nav body */
.mobile-menu .mm-nav {
  display: block; flex: 1; overflow-y: auto;
  padding: .9rem 0 1.4rem;
  scrollbar-width: thin; scrollbar-color: rgba(58,175,227,.3) transparent;
}
.mobile-menu .mm-nav::-webkit-scrollbar { width: 4px; }
.mobile-menu .mm-nav::-webkit-scrollbar-thumb { background: rgba(58,175,227,.3); border-radius: 4px; }
/* Row */
.mobile-menu .mm-row {
  position: relative;
  display: grid; grid-template-columns: 42px 1fr auto; align-items: center;
  width: 100%; padding: 1rem 1.6rem;
  background: none; border: none;
  color: rgba(255,255,255,.92);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem; font-weight: 600; letter-spacing: -.005em;
  text-align: left; cursor: pointer;
  transition: color .25s;
}
.mobile-menu .mm-row::before {
  content: ''; position: absolute; left: 1.6rem; bottom: .82rem;
  width: 0; height: 1px; background: #3AAFE3;
  transition: width .4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu .mm-row:hover::before,
.mobile-menu .mm-row:focus-visible::before { width: calc(100% - 3.2rem); }
.mobile-menu .mm-row:hover,
.mobile-menu .mm-row:focus-visible { color: #fff; outline: none; }
.mobile-menu .mm-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .58rem; letter-spacing: 1.6px;
  color: rgba(58,175,227,.7); font-weight: 500;
}
.mobile-menu .mm-arrow { color: rgba(255,255,255,.32); font-size: 1rem; transition: transform .3s, color .3s; }
.mobile-menu .mm-row:hover .mm-arrow,
.mobile-menu .mm-row:focus-visible .mm-arrow { color: #3AAFE3; transform: translateX(3px); }
/* Chevron */
.mobile-menu .mm-chev {
  width: 8px; height: 8px;
  border-right: 1.6px solid rgba(255,255,255,.55);
  border-bottom: 1.6px solid rgba(255,255,255,.55);
  transform: rotate(45deg);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .25s;
}
.mobile-menu [data-open="true"] > .mm-row-toggle .mm-chev { transform: rotate(-135deg); border-color: #3AAFE3; }
.mobile-menu .mm-row-toggle:hover .mm-chev { border-color: #3AAFE3; }
/* Sub menu */
.mobile-menu .mm-sub {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s cubic-bezier(.2,.8,.2,1), opacity .3s ease, padding .3s ease;
  padding: 0 1.6rem;
}
.mobile-menu [data-open="true"] > .mm-sub { max-height: 900px; opacity: 1; padding: .15rem 1.6rem 1rem; }
.mobile-menu .mm-subrow {
  display: grid; grid-template-columns: 56px 1fr; align-items: center;
  padding: .55rem 0 .55rem 1rem;
  color: rgba(255,255,255,.62);
  font-size: .9rem; font-weight: 500; letter-spacing: -.005em;
  border-left: 1px dashed rgba(58,175,227,.3);
  margin-left: 20px; position: relative;
  transition: color .25s, border-color .25s;
}
.mobile-menu .mm-subrow:hover,
.mobile-menu .mm-subrow:focus-visible { color: #fff; border-color: #3AAFE3; outline: none; }
.mobile-menu .mm-sub-num { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .55rem; letter-spacing: 1.4px; color: rgba(58,175,227,.55); }
/* Product cards */
.mobile-menu .mm-products { display: flex; flex-direction: column; gap: .35rem; }
.mobile-menu .mm-product {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: .85rem;
  padding: .7rem .8rem;
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.02);
  transition: background .25s, border-color .25s, transform .25s;
}
.mobile-menu .mm-product:hover,
.mobile-menu .mm-product:focus-visible {
  background: rgba(58,175,227,.07); border-color: rgba(58,175,227,.45);
  transform: translateX(-2px); outline: none;
}
.mobile-menu .mm-product-thumb {
  width: 44px; height: 44px; border-radius: 6px;
  background: rgba(255,255,255,.04); overflow: hidden;
  display: grid; place-items: center;
}
.mobile-menu .mm-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mobile-menu .mm-product-text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.mobile-menu .mm-product-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; color: #fff; letter-spacing: -.005em; }
.mobile-menu .mm-product-tag { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .55rem; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(255,255,255,.42); }
.mobile-menu .mm-product-arrow { color: rgba(255,255,255,.3); font-size: .9rem; transition: color .25s, transform .25s; }
.mobile-menu .mm-product:hover .mm-product-arrow,
.mobile-menu .mm-product:focus-visible .mm-product-arrow { color: #3AAFE3; transform: translateX(2px); }
/* View All CTA — sits below the product cards */
.mobile-menu .mm-viewall {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .85rem;
  padding: .8rem 1rem; margin-top: .25rem;
  border: 1px solid rgba(58,175,227,.35); border-radius: 8px;
  background: rgba(58,175,227,.08);
  transition: background .25s, border-color .25s, transform .25s;
}
.mobile-menu .mm-viewall:hover,
.mobile-menu .mm-viewall:focus-visible {
  background: rgba(58,175,227,.16);
  border-color: rgba(58,175,227,.6);
  transform: translateX(-2px); outline: none;
}
.mobile-menu .mm-viewall-text { display: flex; flex-direction: column; gap: .15rem; }
.mobile-menu .mm-viewall-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .92rem; color: #3AAFE3; letter-spacing: -.005em; }
.mobile-menu .mm-viewall-tag { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .55rem; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(58,175,227,.55); }
.mobile-menu .mm-viewall-arrow { color: #3AAFE3; font-size: 1rem; transition: transform .25s; }
.mobile-menu .mm-viewall:hover .mm-viewall-arrow,
.mobile-menu .mm-viewall:focus-visible .mm-viewall-arrow { transform: translateX(3px); }
/* Footer */
.mobile-menu .mm-foot {
  padding: 1rem 1.4rem 1.4rem;
  border-top: 1px dashed rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: .85rem;
  background: linear-gradient(0deg, rgba(0,0,0,.2), transparent);
}
.mobile-menu .mm-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.1rem;
  background: #3AAFE3; color: #fff;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: .92rem; letter-spacing: -.005em;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.mobile-menu .mm-cta:hover,
.mobile-menu .mm-cta:focus-visible { background: #2890C0; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(58,175,227,.3); outline: none; }
.mobile-menu .mm-cta svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.mobile-menu .mm-foot-meta { display: flex; align-items: center; justify-content: flex-end; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: .52rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); }
.mobile-menu .mm-foot-meta a { color: rgba(255,255,255,.55); transition: color .2s; }
.mobile-menu .mm-foot-meta a:hover,
.mobile-menu .mm-foot-meta a:focus-visible { color: #3AAFE3; outline: none; }
/* Stagger entry */
@keyframes mmRowIn { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: translateX(0); } }
.mobile-menu.active .mm-nav > .mm-row,
.mobile-menu.active .mm-nav > .mm-section,
.mobile-menu.active .mm-foot > * { animation: mmRowIn .55s both; animation-delay: calc(.2s + var(--i, 0) * .05s); }
body.mm-locked { overflow: hidden; }
/* Push WhatsApp float clear of the sticky "Get in touch" CTA when menu is open */
body.mm-locked .wa-float { bottom: 110px !important; transition: bottom .4s cubic-bezier(.65,0,.05,1); }
/* iOS touch reliability for accordions + decorative pseudo-elements not eating taps */
.mobile-menu .mm-row::before { pointer-events: none; }
.mobile-menu .mm-row-toggle { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.mobile-menu .mm-row-toggle * { pointer-events: none; }
@media (min-width: 901px) { .mobile-menu { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu .mm-panel,
  .mobile-menu .mm-backdrop,
  .mobile-menu .mm-sub,
  .mobile-menu .mm-close { transition-duration: .01ms; }
  .mobile-menu.active .mm-nav > *,
  .mobile-menu.active .mm-foot > * { animation: none; }
}
