/* ==========================================================================
   DigitAge Infocom — site stylesheet
   Hand-built. No framework. Palette from the original theme:
     cyan #3fb6da / #19afce   blue #22318c   dark #0a1440
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cyan: #3fb6da;
  --cyan-deep: #19afce;
  --cyan-ink: #0e8fab;
  --cyan-soft: #d9f0f8;
  --cyan-tint: #eef8fc;
  --navy: #22318c;
  --navy-700: #2c40ac;
  --navy-soft: #e5e8f7;
  --ink: #0a1440;
  --ink-2: #101c55;
  --text: #1b1f3b;
  --muted: #5d6384;
  --faint: #8f94ae;
  --paper: #f3f4fb;
  --paper-2: #e9ecf5;
  --line: #e0e2ea;
  --line-dark: rgba(255, 255, 255, 0.12);
  --white: #ffffff;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --container: 1240px;
  --gutter: 24px;
  --section: clamp(64px, 8vw, 110px);
  --header-h: 76px;

  --shadow-sm: 0 1px 2px rgba(10, 20, 64, 0.06), 0 1px 3px rgba(10, 20, 64, 0.04);
  --shadow-md: 0 12px 32px -12px rgba(10, 20, 64, 0.18);
  --shadow-lg: 0 30px 60px -24px rgba(10, 20, 64, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
table { border-collapse: collapse; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
::selection { background: var(--cyan-soft); color: var(--navy); }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .display {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.08; }
h2 { font-size: clamp(28px, 3.2vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; line-height: 1.35; }
.lead { font-size: 17.5px; line-height: 1.65; color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.mono {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--cyan); }
.eyebrow .idx { color: var(--faint); }
.on-dark .eyebrow { color: var(--cyan); }
.on-dark .eyebrow .idx { color: rgba(255, 255, 255, 0.5); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark, .on-dark .lead { color: rgba(255, 255, 255, 0.78); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding: var(--section) 0; }
.section--tight { padding: calc(var(--section) * 0.6) 0; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); }
.section--navy { background: var(--navy); }
.section--tint { background: var(--cyan-tint); }

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 24px 64px;
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.sec-head--center { grid-template-columns: minmax(0, 720px); justify-content: center; text-align: center; justify-items: center; }
.sec-head--center .eyebrow::before { display: none; }
.sec-head--single { grid-template-columns: minmax(0, 760px); }
.sec-head .lead { margin-bottom: 4px; }
.sec-head__aside { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 991px) {
  .sec-head { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 599px) {
  :root { --gutter: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn--primary { background: var(--cyan); color: var(--white); }
.btn--primary:hover { background: var(--cyan-deep); box-shadow: 0 10px 24px -10px rgba(25, 175, 206, 0.8); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-700); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--paper); }
.btn--ghost { border-color: var(--line); color: var(--navy); background: var(--white); }
.btn--ghost:hover { border-color: var(--navy); }
.on-dark .btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.3); color: var(--white); }
.on-dark .btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--navy); }
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--cyan-deep); }
.link-arrow:hover svg { transform: translateX(3px); }
.on-dark .link-arrow { color: var(--cyan); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.topbar { background: var(--ink); color: rgba(255, 255, 255, 0.75); font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 24px; }
.topbar__list { display: flex; gap: 28px; align-items: center; }
.topbar__list li { display: flex; align-items: center; gap: 8px; }
.topbar__list svg { width: 14px; height: 14px; color: var(--cyan); }
.topbar a:hover { color: var(--white); }
.topbar__tag { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); }
@media (max-width: 991px) { .topbar__tag { display: none; } .topbar .container { justify-content: center; } }
@media (max-width: 767px) { .topbar__list li:first-child { display: none; } }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(10, 20, 64, 0.35); }
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }
.brand img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a, .nav > li > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav > li > a:hover, .nav > li > button:hover, .nav > li.is-open > button { color: var(--navy); background: var(--paper); }
.nav > li > a.is-current { color: var(--cyan-deep); }
.nav svg { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.nav > li.is-open svg { transform: rotate(180deg); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius); border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav-toggle svg { width: 20px; height: 20px; }

/* Mega menu */
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 40px 60px -30px rgba(10, 20, 64, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.25s var(--ease), visibility 0.2s;
}
.header.mega-open .mega { opacity: 1; visibility: visible; transform: none; }
.mega .container { display: grid; grid-template-columns: 300px 1fr; padding-top: 0; padding-bottom: 0; align-items: stretch; }
.mega__nav { padding: 24px 24px 24px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.mega__nav .mono { color: var(--faint); margin: 0 12px 10px; }
.mega__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  text-align: left;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mega__tab small { font-size: 12px; font-weight: 600; color: var(--faint); }
.mega__tab.is-active { background: var(--cyan-tint); color: var(--navy); }
.mega__tab.is-active small { color: var(--cyan-deep); }
.mega__panels { padding: 28px 0 28px 40px; }
.mega__panel { display: none; }
.mega__panel.is-active { display: block; }
.mega__panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mega__panel-head h4 { font-size: 20px; }
.mega__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 24px; }
.mega__links a { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14.5px; color: var(--muted); transition: color 0.15s; }
.mega__links a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--line); flex: none; transition: background 0.15s; }
.mega__links a:hover { color: var(--navy); }
.mega__links a:hover::before { background: var(--cyan); }

@media (max-width: 1199px) {
  /* .mega must go out of layout, not just out of sight. It is absolutely
     positioned and only visibility:hidden by default, and its container is a
     300px + 1fr grid, so below ~700px that fixed column keeps the panel wider
     than the viewport and the page picks up ~190px of horizontal scroll on
     every screen. The drawer replaces it here, so display:none is safe. */
  .nav, .header__actions .btn, .mega { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Drawer (mobile nav) */
.drawer { position: fixed; inset: 0; z-index: 80; visibility: hidden; pointer-events: none; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(10, 20, 64, 0.55); opacity: 0; transition: opacity 0.3s; }
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.drawer__head img { height: 36px; }
.drawer__close { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); border: 1px solid var(--line); }
.drawer__close svg { width: 16px; height: 16px; }
.drawer__nav { padding: 12px 8px; }
.drawer__nav > li > a, .drawer__nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  font-weight: 500;
  font-size: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  list-style: none;
}
.drawer__nav summary::-webkit-details-marker { display: none; }
.drawer__nav summary svg { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.drawer__nav details[open] > summary svg { transform: rotate(180deg); }
.drawer__nav details[open] > summary { color: var(--navy); }
.drawer__sub { padding: 4px 0 8px 12px; }
.drawer__sub summary { font-size: 15px; font-weight: 500; padding: 10px 12px; color: var(--text); }
.drawer__sub a { display: block; padding: 8px 12px; font-size: 14.5px; color: var(--muted); }
.drawer__sub .drawer__all { color: var(--cyan-deep); font-weight: 600; }
.drawer__foot { margin-top: auto; padding: 20px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.drawer__foot p { font-size: 14px; color: var(--muted); }
.drawer__foot a.plain { font-weight: 500; color: var(--navy); }

/* --------------------------------------------------------------------------
   Hero
   Light and type-led, with the product in a tinted panel on the right.
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(90% 70% at 88% 18%, rgba(63, 182, 218, 0.1) 0%, rgba(63, 182, 218, 0) 62%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 58%, #eef3fa 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 4.4vw, 62px);
  align-items: center;
  padding-top: clamp(38px, 4.2vw, 62px);
  padding-bottom: clamp(44px, 5vw, 70px);
}
.hero__content { max-width: 620px; }
.hero__content .eyebrow { color: var(--cyan-ink); margin-bottom: 20px; }
.hero__content .eyebrow::before { background: var(--cyan); }

.hero__title {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(36px, 4.3vw, 55px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}
.hero__lead {
  max-width: 48ch;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 17.5px);
  line-height: 1.64;
}

.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 28px; }
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.hero__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.hero__link:hover { color: var(--cyan-ink); border-color: var(--cyan); }
.hero__link:hover svg { transform: translateX(3px); }

/* Product panel: a tinted container gives the cut-out render an edge to sit
   against, and the contact shadow stops it hovering. */
.hero__panel {
  position: relative;
  border-radius: 20px;
  background:
    radial-gradient(75% 60% at 50% 22%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(158deg, #e7f4fa 0%, #dfe9f8 46%, #d7e2f5 100%);
  border: 1px solid #dfe6f2;
  box-shadow: 0 30px 60px -32px rgba(10, 20, 64, 0.3);
  aspect-ratio: 1.16;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 3vw, 40px);
  isolation: isolate;
}
.hero__panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 18%;
  right: 18%;
  bottom: 8%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(10, 20, 64, 0.22), rgba(10, 20, 64, 0) 70%);
  filter: blur(5px);
}
.hero__panel img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(10, 20, 64, 0.2));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 1099px) {
  .hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 32px; }
  .hero__lead { max-width: 42ch; }
}
@media (max-width: 767px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; padding-top: 30px; padding-bottom: 42px; }
  .hero__content { max-width: none; }
  .hero__title { font-size: clamp(32px, 8.4vw, 44px); }
  .hero__lead { max-width: none; margin-bottom: 28px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__panel { aspect-ratio: 1.3; order: -1; }
}
@media (prefers-reduced-motion: reduce) { .hero__panel img { animation: none; } }

/* --------------------------------------------------------------------------
   Brand marquee
   -------------------------------------------------------------------------- */
.brands { border-bottom: 1px solid var(--line); padding: 44px 0 42px; background: var(--white); overflow: hidden; }
.brands__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.brands__head h2 { font-size: clamp(22px, 2.4vw, 28px); }
.brands__head .mono { color: var(--faint); }
.marquee { position: relative; overflow: hidden; padding: 6px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee + .marquee { margin-top: 8px; }
.marquee__track { display: flex; gap: 20px; width: max-content; animation: marquee 70s linear infinite; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex: none;
  width: 176px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.marquee__item img { max-height: 34px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: filter 0.3s, opacity 0.3s; }
.marquee__item:hover img { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfd4e2; }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--paper); display: flex; align-items: center; justify-content: center; padding: 24px; border-bottom: 1px solid var(--line); }
.card__media img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.45s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__media--cover { padding: 0; }
.card__media--cover img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: normal; }
.card__media--tall { aspect-ratio: 4 / 5; }
.card__n { position: absolute; top: 14px; left: 16px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--cyan-deep); background: var(--white); border: 1px solid var(--line); padding: 4px 8px; border-radius: 4px; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { font-size: 20px; }
.card__body h3 a::after { content: ""; position: absolute; inset: 0; }
.card__meta { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.card__excerpt { color: var(--muted); font-size: 15px; }
.card__excerpt p { margin: 0; }
.card__list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.card__list li a { position: relative; z-index: 1; display: inline-block; padding: 5px 10px; border-radius: 999px; background: var(--paper); font-size: 12.5px; color: var(--muted); transition: background 0.15s, color 0.15s; }
.card__list li a:hover { background: var(--cyan-soft); color: var(--navy); }
.card__list li span { display: inline-block; padding: 5px 4px; font-size: 12.5px; color: var(--faint); }
.card__foot { margin-top: auto; padding-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.card__foot .link-arrow { font-size: 14px; }

/* --------------------------------------------------------------------------
   Split (image + text)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.split__media .plaque { position: absolute; left: -20px; bottom: 36px; background: var(--navy); color: var(--white); padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 220px; }
.plaque strong { display: block; font-size: 40px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; margin-bottom: 6px; }
.plaque strong span { color: var(--cyan); }
.plaque small { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.split__media .frame { position: absolute; inset: 24px -24px -24px 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); z-index: -1; }
.split h2 { margin-bottom: 18px; }
.split .lead { margin-bottom: 26px; }
.pillars { display: grid; gap: 22px; margin-bottom: 32px; }
.pillar { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.pillar__icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--cyan-tint); color: var(--cyan-deep); display: flex; align-items: center; justify-content: center; }
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h4 { margin-bottom: 4px; }
.pillar p { color: var(--muted); font-size: 15px; }
@media (max-width: 991px) {
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; max-width: 520px; }
  .split__media .plaque { left: 16px; bottom: 16px; }
  .split__media .frame { display: none; }
}

/* --------------------------------------------------------------------------
   Counters
   -------------------------------------------------------------------------- */
.counters { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.counters--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.counter { padding: 28px 28px 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); position: relative; overflow: hidden; }
.counter::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--cyan); }
.counter strong { display: block; font-size: clamp(36px, 4vw, 52px); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 8px; }
.counter strong span.suffix { color: var(--cyan-deep); }
.counter p { color: var(--muted); font-size: 15px; font-weight: 500; }
.counters--dark .counter { background: rgba(255, 255, 255, 0.04); border-color: var(--line-dark); }
.counters--dark .counter strong { color: var(--white); }
.counters--dark .counter p { color: rgba(255, 255, 255, 0.65); }
@media (max-width: 767px) { .counters, .counters--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } .counter { padding: 22px 20px; } }

/* --------------------------------------------------------------------------
   Service tiles
   -------------------------------------------------------------------------- */
.tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--line); gap: 1px; }
.tile { background: var(--white); padding: 30px 28px 32px; display: flex; flex-direction: column; gap: 14px; min-height: 200px; position: relative; transition: background 0.25s; }
.tile:hover { background: var(--cyan-tint); }
.tile__top { display: flex; justify-content: space-between; align-items: flex-start; }
.tile__icon { width: 56px; height: 56px; object-fit: contain; }
.tile__n { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--faint); }
.tile h3 { font-size: 20px; margin-top: auto; }
.tile p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 991px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) { .tiles { grid-template-columns: 1fr; } .tile { min-height: 0; } }

/* --------------------------------------------------------------------------
   Why choose us (cyan block + image)
   -------------------------------------------------------------------------- */
.choose { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); border-radius: var(--radius-lg); overflow: hidden; }
.choose__body { background: var(--cyan); color: var(--white); padding: clamp(36px, 5vw, 64px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.choose__body .eyebrow { color: var(--white); }
.choose__body .eyebrow::before { background: var(--white); }
.choose__body h2 { color: var(--white); font-size: clamp(26px, 2.8vw, 34px); margin-bottom: 16px; }
.choose__body p { color: rgba(255, 255, 255, 0.9); margin-bottom: 26px; }
.choose__img { background-size: cover; background-position: center; min-height: 320px; }
@media (max-width: 991px) { .choose { grid-template-columns: 1fr; } .choose__body { grid-template-columns: 1fr; } .choose__img { min-height: 260px; order: -1; } }

/* --------------------------------------------------------------------------
   Checklist
   -------------------------------------------------------------------------- */
.checks { display: grid; gap: 14px; }
.checks li { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; font-size: 16px; }
.checks li strong { color: var(--navy); font-weight: 600; }
.checks li svg { width: 24px; height: 24px; color: var(--cyan-deep); margin-top: 1px; }
.checks--white li { color: var(--white); font-weight: 500; }
.checks--white li svg { color: var(--white); }
.checks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 32px; }
@media (max-width: 767px) { .checks--2 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Feature list (about page "why choose")
   -------------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.feature { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: box-shadow 0.3s var(--ease), border-color 0.25s; }
.feature:hover { box-shadow: var(--shadow-md); border-color: #cfd4e2; }
.feature__icon { width: 56px; height: 56px; border-radius: var(--radius); background: var(--cyan-tint); color: var(--cyan-deep); display: flex; align-items: center; justify-content: center; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }
@media (max-width: 767px) { .features { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 48px 80px; align-items: start; }
.team__intro { position: sticky; top: calc(var(--header-h) + 24px); }
.team__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
.member__thumb { border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); aspect-ratio: 4 / 4.6; margin-bottom: 14px; }
.member__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter 0.4s; }
.member:hover .member__thumb img { filter: none; }
.member h3 { font-size: 19px; }
.member span { color: var(--muted); font-size: 14px; }
@media (max-width: 991px) { .team { grid-template-columns: 1fr; } .team__intro { position: static; } }
@media (max-width: 479px) { .team__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 32px 28px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.quote::before { content: "\201C"; font-size: 84px; font-weight: 700; line-height: 0.6; color: var(--cyan); position: absolute; top: 40px; right: 30px; opacity: 0.5; }
.quote h4 { font-size: 18px; padding-right: 48px; }
.quote p { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.quote__who { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 6px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.quote__who strong { display: block; font-size: 15px; color: var(--navy); }
.quote__who small { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.quote__stars { display: flex; gap: 3px; color: #f5b400; }
.quote__stars svg { width: 14px; height: 14px; }
@media (max-width: 767px) { .quotes { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.posts { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 24px; }
.post-feature { display: flex; flex-direction: column; }
.post-feature .card__media { aspect-ratio: 16 / 10; }
.post-feature h3 { font-size: clamp(22px, 2.4vw, 26px); }
.post-side { display: grid; gap: 24px; align-content: start; }
.post-row { position: relative; display: grid; grid-template-columns: 140px 1fr; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px; background: var(--white); transition: border-color 0.25s, box-shadow 0.3s var(--ease); }
.post-row:hover { border-color: #cfd4e2; box-shadow: var(--shadow-md); }
.post-row__img { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.post-row__img img { width: 100%; height: 100%; object-fit: cover; }
.post-row h3 { font-size: 17px; line-height: 1.35; }
.post-row h3 a::after { content: ""; position: absolute; inset: 0; }
.post-row .card__meta { margin-bottom: 6px; display: block; }
.post-row .link-arrow { font-size: 14px; margin-top: 8px; position: relative; z-index: 1; }
@media (max-width: 991px) { .posts { grid-template-columns: 1fr; } }
@media (max-width: 479px) { .post-row { grid-template-columns: 96px 1fr; } }

.post-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 991px) { .post-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) { .post-list { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 48px 80px; align-items: start; }
.faq__intro { position: sticky; top: calc(var(--header-h) + 24px); }
.faq__intro h2 { margin-bottom: 14px; }
.faq__intro .lead { margin-bottom: 24px; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; cursor: pointer; list-style: none; font-weight: 600; font-size: 17.5px; color: var(--navy); transition: color 0.2s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cyan-deep); }
.faq__item summary .plus { flex: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; position: relative; transition: background 0.2s, border-color 0.2s; }
.faq__item summary .plus::before, .faq__item summary .plus::after { content: ""; position: absolute; background: var(--navy); width: 12px; height: 1.5px; transition: transform 0.3s var(--ease); }
.faq__item summary .plus::after { transform: rotate(90deg); }
.faq__item[open] summary .plus { background: var(--navy); border-color: var(--navy); }
.faq__item[open] summary .plus::before, .faq__item[open] summary .plus::after { background: var(--white); }
.faq__item[open] summary .plus::after { transform: rotate(0); }
.faq__body { padding: 0 60px 22px 0; color: var(--muted); font-size: 15.5px; }
@media (max-width: 991px) { .faq { grid-template-columns: 1fr; } .faq__intro { position: static; } .faq__body { padding-right: 0; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 40px; padding: 64px 0 56px; }
.footer__brand img { height: 44px; width: auto; margin-bottom: 22px; }
.footer__brand p { font-size: 14.5px; max-width: 38ch; margin-bottom: 24px; }
.footer h4 { color: var(--white); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links li + li { margin-top: 10px; }
.footer__links a { font-size: 14.5px; transition: color 0.15s; }
.footer__links a:hover { color: var(--cyan); }
.footer__contact { display: grid; gap: 14px; font-size: 14.5px; }
.footer__contact a { color: var(--white); }
.footer__contact a:hover { color: var(--cyan); }
.footer__contact .mono { color: rgba(255, 255, 255, 0.45); display: block; margin-bottom: 4px; font-size: 11px; }
.social { display: flex; gap: 10px; }
.social a { width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid var(--line-dark); display: inline-flex; align-items: center; justify-content: center; color: var(--white); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.social a:hover { background: var(--cyan); border-color: var(--cyan); color: var(--white); }
.social svg { width: 16px; height: 16px; }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.footer__bottom .mono { font-size: 11px; }
@media (max-width: 991px) { .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) { .footer__top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; } .footer__bottom { flex-direction: column; text-align: center; } }

/* Floating quick contact */
.quick { position: fixed; right: 20px; bottom: 20px; z-index: 50; display: flex; flex-direction: column; gap: 10px; }
.quick a { width: 50px; height: 50px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 10px 24px -8px rgba(10, 20, 64, 0.5); transition: transform 0.25s var(--ease); }
.quick a:hover { transform: translateY(-3px); }
.quick a svg { width: 20px; height: 20px; }
.quick .wa { background: #25d366; }
.quick .call { background: var(--navy); }
.quick .mail { background: var(--cyan-deep); }
.quick .top { background: var(--white); color: var(--navy); border: 1px solid var(--line); opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s, transform 0.25s; }
.quick .top.is-visible { opacity: 1; visibility: visible; }
@media (max-width: 599px) { .quick { right: 12px; bottom: 12px; } .quick a { width: 46px; height: 46px; } }

/* --------------------------------------------------------------------------
   Inner page header
   -------------------------------------------------------------------------- */
.page-head { position: relative; background: var(--ink); color: var(--white); overflow: hidden; isolation: isolate; padding: clamp(44px, 6vw, 72px) 0; background-size: cover; background-position: center; }
.page-head::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10, 20, 64, 0.95) 0%, rgba(10, 20, 64, 0.85) 50%, rgba(34, 49, 140, 0.7) 100%); }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-bottom: 18px; }
.crumbs a:hover { color: var(--cyan); }
.crumbs .sep { color: rgba(255, 255, 255, 0.3); }
.crumbs span[aria-current] { color: var(--white); }
.page-head h1 { color: var(--white); font-size: clamp(32px, 4.4vw, 52px); max-width: 22ch; }
.page-head .lead { color: rgba(255, 255, 255, 0.72); margin-top: 16px; }
.page-head__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: end; }
.page-head__aside { text-align: right; }
.page-head__aside .mono { color: rgba(255, 255, 255, 0.5); display: block; margin-bottom: 6px; }
.page-head__aside strong { font-size: 40px; font-weight: 700; color: var(--cyan); line-height: 1; }
@media (max-width: 767px) { .page-head__grid { grid-template-columns: 1fr; } .page-head__aside { text-align: left; } }

/* --------------------------------------------------------------------------
   Product detail
   -------------------------------------------------------------------------- */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; }
.detail__aside { position: sticky; top: calc(var(--header-h) + 24px); }
.detail__intro { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 32px; align-items: start; margin-bottom: 40px; }
.detail__img { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); padding: 24px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.detail__img img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.detail__intro .prose > :first-child { margin-top: 0; }

/* Stand-in mark for a product row whose artwork has not been uploaded yet. */
.img-ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #c3cad9; }
.img-ph svg { width: 44%; max-width: 92px; height: auto; }
.detail__img .img-ph svg { width: 38%; }
@media (max-width: 1099px) { .detail { grid-template-columns: 1fr; } .detail__aside { position: static; } }
@media (max-width: 699px) { .detail__intro { grid-template-columns: 1fr; } .detail__img { max-width: 320px; } }

/* Panels */
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.panel--navy { background: var(--navy); border-color: var(--navy); color: var(--white); }
.panel__head { margin-bottom: 20px; }
.panel__head h3 { font-size: 22px; margin-bottom: 6px; }
.panel--navy .panel__head h3 { color: var(--white); }
.panel__head p { font-size: 14px; color: var(--muted); }
.panel--navy .panel__head p { color: rgba(255, 255, 255, 0.7); }
.panel__foot { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.panel--navy .panel__foot { color: rgba(255, 255, 255, 0.6); }
.panel__foot svg { width: 14px; height: 14px; color: var(--cyan); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 500; color: var(--muted); }
.panel--navy .field label { color: rgba(255, 255, 255, 0.7); }
.input { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; }
.input::placeholder { color: var(--faint); }
.input:focus { outline: 0; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(63, 182, 218, 0.25); }
textarea.input { min-height: 120px; resize: vertical; }
.panel--navy .input { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.18); color: var(--white); }
.panel--navy .input::placeholder { color: rgba(255, 255, 255, 0.45); }
.panel--navy .input:focus { border-color: var(--cyan); background: rgba(255, 255, 255, 0.1); }
.alert { padding: 12px 14px; border-radius: var(--radius); font-size: 14px; border: 1px solid; }
.alert-success { background: #e8f8ee; border-color: #bfe9cf; color: #146c3a; }
.alert-danger { background: #fdecec; border-color: #f5c2c2; color: #9b1c1c; }
.alert div + div { margin-top: 4px; }
@media (max-width: 479px) { .form__row { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Prose (CMS HTML from the admin panel)
   -------------------------------------------------------------------------- */
.prose { font-size: 16.5px; line-height: 1.75; color: var(--text); }
.prose > * + * { margin-top: 1.1em; }
.prose h1, .prose h2, .prose h3, .prose h4 { margin-top: 1.8em; margin-bottom: 0.5em; line-height: 1.25; }
.prose h1 { font-size: 32px; }
.prose h2 { font-size: 26px; }
.prose h3 { font-size: 21px; }
.prose h4 { font-size: 18px; }
.prose p { margin-top: 1em; }
.prose a { color: var(--cyan-ink); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { font-weight: 600; color: var(--navy); }
.prose ul, .prose ol { padding-left: 1.4em; margin-top: 1em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li + li, .prose ol li + li { margin-top: 8px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 12px; height: 2px; background: var(--cyan); }
.prose ol { list-style: decimal; }
.prose ol li { padding-left: 6px; }
.prose img { border-radius: var(--radius-lg); margin: 1.6em 0; }
.prose blockquote { margin: 1.6em 0; padding: 20px 28px; border-left: 3px solid var(--cyan); background: var(--cyan-tint); border-radius: 0 var(--radius) var(--radius) 0; font-size: 19px; font-weight: 500; line-height: 1.45; color: var(--navy); }
.prose table { width: 100%; margin: 1.6em 0; font-size: 15px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.prose th, .prose td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--paper); font-weight: 600; color: var(--navy); font-size: 14px; }
.prose tr:last-child td { border-bottom: 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.prose iframe { max-width: 100%; }
.prose .row { display: flex; flex-wrap: wrap; gap: 24px; }
.prose .row > [class*="col-"] { flex: 1 1 260px; }
.prose .img-fluid { max-width: 100%; height: auto; }
.prose .text-center { text-align: center; }
.prose .btn { text-decoration: none; }

/* --------------------------------------------------------------------------
   Directory (brands / categories)
   -------------------------------------------------------------------------- */
.dir { width: 100%; border-top: 1px solid var(--line); }
.dir tr { border-bottom: 1px solid var(--line); transition: background 0.15s; }
.dir tr:hover { background: var(--cyan-tint); }
.dir th { width: 26%; text-align: left; padding: 18px 24px 18px 0; font-weight: 600; font-size: 17px; color: var(--navy); vertical-align: top; letter-spacing: -0.01em; }
.dir td { padding: 18px 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.dir__n { display: inline-block; width: 40px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; color: var(--faint); }
@media (max-width: 767px) {
  .dir th, .dir td { display: block; width: 100%; }
  .dir th { padding-bottom: 6px; }
  .dir td { padding-top: 0; }
}
.dir-box { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.dir-box .dir { border-top: 0; }
.dir-box .dir th { padding-left: 24px; }
.dir-box .dir td { padding-right: 24px; }
@media (max-width: 767px) { .dir-box .dir td { padding-left: 24px; } }

/* --------------------------------------------------------------------------
   Network (locations)
   -------------------------------------------------------------------------- */
.region { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 32px; padding: 36px 0; border-top: 1px solid var(--line); }
.region:last-child { border-bottom: 1px solid var(--line); }
.region__name { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.region__name h2 { font-size: 24px; margin-bottom: 6px; }
.region__name h2 a:hover { color: var(--cyan-deep); }
.region__name .mono { color: var(--faint); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; color: var(--text); background: var(--white); transition: background 0.15s, border-color 0.15s, color 0.15s; }
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.chip:hover { border-color: var(--navy); color: var(--navy); background: var(--cyan-tint); }
@media (max-width: 767px) { .region { grid-template-columns: 1fr; gap: 16px; } .region__name { position: static; } }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 48px; align-items: start; }
.contact__info { display: grid; gap: 28px; }
.info-block { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.info-block__icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--cyan-tint); color: var(--cyan-deep); display: flex; align-items: center; justify-content: center; }
.info-block__icon svg { width: 20px; height: 20px; }
.info-block .mono { color: var(--faint); display: block; margin-bottom: 6px; }
.info-block p, .info-block a { font-size: 16.5px; color: var(--navy); font-weight: 500; }
.info-block a:hover { color: var(--cyan-deep); }
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 400px; display: block; border: 0; }
@media (max-width: 991px) { .contact { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Article
   -------------------------------------------------------------------------- */
.article { max-width: 1040px; margin: 0 auto; }
.article .prose { font-size: 17.5px; }
.article__hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; aspect-ratio: 16 / 9; background: var(--paper); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.article__meta span { font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.article__meta strong { color: var(--navy); font-weight: 600; }
.article__foot { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.notfound { text-align: center; padding: clamp(80px, 12vw, 160px) 0; }
.notfound .display { font-size: clamp(80px, 16vw, 160px); font-weight: 800; line-height: 0.9; letter-spacing: -0.05em; color: var(--navy-soft); margin-bottom: 12px; }
.notfound h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.notfound .lead { margin: 0 auto 28px; }
.notfound .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Reveal on scroll (only when JS is present)
   -------------------------------------------------------------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal-stagger] > * { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.7s var(--ease); }
.js [data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
.js [data-reveal-stagger].is-in > :nth-child(2) { transition-delay: 0.07s; }
.js [data-reveal-stagger].is-in > :nth-child(3) { transition-delay: 0.14s; }
.js [data-reveal-stagger].is-in > :nth-child(4) { transition-delay: 0.21s; }
.js [data-reveal-stagger].is-in > :nth-child(5) { transition-delay: 0.28s; }
.js [data-reveal-stagger].is-in > :nth-child(6) { transition-delay: 0.35s; }
.js [data-reveal-stagger].is-in > :nth-child(n+7) { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .js [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .card, .btn { transition: none; }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   Graphics, motion and hover polish
   ========================================================================== */

/* Decorative elements: place inside a section with position: relative */
.has-deco { position: relative; overflow: hidden; }
.has-deco > .container { position: relative; z-index: 1; }
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-glow { width: 520px; height: 520px; border-radius: 50%; filter: blur(10px); background: radial-gradient(circle, rgba(63, 182, 218, 0.28), rgba(63, 182, 218, 0) 65%); animation: drift 14s ease-in-out infinite; }
.deco-glow--blue { background: radial-gradient(circle, rgba(34, 49, 140, 0.18), rgba(34, 49, 140, 0) 65%); }
.deco-glow--strong { background: radial-gradient(circle, rgba(63, 182, 218, 0.45), rgba(63, 182, 218, 0) 65%); }
.deco-ring { width: 260px; height: 260px; color: var(--cyan); opacity: 0.55; animation: spin 40s linear infinite; }
.deco-ring svg { width: 100%; height: 100%; }
.deco-ring--dark { color: rgba(255, 255, 255, 0.5); }
.deco-wave { width: 220px; height: 220px; background: url("../img/about/line-shape.png") no-repeat center / contain; opacity: 0.7; animation: floaty 9s ease-in-out infinite; }
.deco-arc { width: 140px; height: 150px; background: url("../img/choose-us/chaka.png") no-repeat center / contain; animation: floaty 8s ease-in-out infinite; }
.deco-mesh { left: 0; right: 0; bottom: 0; height: 330px; width: auto; background: url("../img/images/choose_shape.png") no-repeat right bottom / cover; opacity: 0.9; }
.deco-dots { width: 180px; height: 180px; background-image: radial-gradient(rgba(34, 49, 140, 0.22) 1.5px, transparent 1.6px); background-size: 14px 14px; -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 72%); mask-image: radial-gradient(circle, #000 40%, transparent 72%); }
.deco-dots--light { background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1.5px, transparent 1.6px); }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(24px, -18px) scale(1.06); } }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 767px) { .deco-ring, .deco-wave, .deco-arc, .deco-dots { display: none; } .deco-glow { width: 320px; height: 320px; } }

/* Hero entrance. Runs on load rather than on scroll - the hero is already in
   view, so it is not a [data-reveal] target. */
.hero__content > * { animation: riseIn 0.85s var(--ease) both; }
.hero__content > :nth-child(2) { animation-delay: 0.1s; }
.hero__content > :nth-child(3) { animation-delay: 0.2s; }
.hero__content > :nth-child(4) { animation-delay: 0.3s; }
.hero__panel { animation: heroRise 1s var(--ease) both; animation-delay: 0.12s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(20px) scale(0.975); } to { opacity: 1; transform: none; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: none; } }

/* Reveal variants */
.js [data-reveal="left"] { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="zoom"] { transform: scale(0.94); }
.js [data-reveal="left"].is-in, .js [data-reveal="right"].is-in, .js [data-reveal="zoom"].is-in { transform: none; }
.js .eyebrow::before { transform-origin: left; animation: lineGrow 1s var(--ease) both; }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Buttons: shine sweep */
.btn--primary, .btn--navy, .btn--white { position: relative; overflow: hidden; }
.btn--primary::after, .btn--navy::after, .btn--white::after { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent); transform: skewX(-20deg); transition: left 0.6s var(--ease); }
.btn--primary:hover::after, .btn--navy:hover::after, .btn--white:hover::after { left: 130%; }
.btn--primary:hover, .btn--navy:hover { transform: translateY(-2px); }

/* Nav underline */
.nav > li > a { position: relative; }
.nav > li > a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav > li > a:hover::after, .nav > li > a.is-current::after { transform: scaleX(1); }

/* Tiles, features, counters, cards */
.tile::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--cyan), var(--navy)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.tile:hover::after { transform: scaleX(1); }
.tile__icon { transition: transform 0.45s var(--ease); }
.tile:hover .tile__icon { transform: translateY(-4px) scale(1.08); }
.tile h3 { transition: color 0.2s; }
.tile:hover h3 { color: var(--cyan-deep); }
.feature__icon, .pillar__icon, .info-block__icon { transition: transform 0.4s var(--ease), background 0.3s, color 0.3s; }
.feature:hover .feature__icon, .pillar:hover .pillar__icon, .info-block:hover .info-block__icon { transform: rotate(-6deg) scale(1.08); background: var(--cyan); color: var(--white); }
.counter { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.counter:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.counter::before { content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle, rgba(63, 182, 218, 0.18), rgba(63, 182, 218, 0) 70%); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34, 49, 140, 0) 60%, rgba(34, 49, 140, 0.18)); opacity: 0; transition: opacity 0.35s; }
.card:hover .card__media::after { opacity: 1; }
.card__media--cover img { transition: transform 0.6s var(--ease); }
.card:hover .card__media--cover img { transform: scale(1.06); }
.quote { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote::after { content: ""; position: absolute; right: 0; bottom: 0; width: 88px; height: 61px; background: url("../img/images/testi_item_shape.svg") no-repeat center / contain; opacity: 0.12; }
.chip { transition: transform 0.2s var(--ease), background 0.15s, border-color 0.15s, color 0.15s; }
.chip:hover { transform: translateY(-2px); }
.split__media img { transition: transform 0.7s var(--ease); }
.split__media:hover img { transform: scale(1.02); }
.split__media .deco-ring { right: -60px; top: -60px; width: 200px; height: 200px; z-index: 1; }
.marquee__item { transition: transform 0.3s var(--ease), border-color 0.3s; }
.marquee__item:hover { transform: translateY(-3px); border-color: var(--cyan); }
.choose__body { position: relative; overflow: hidden; }
.choose__body > * { position: relative; z-index: 1; }
.choose__body .deco-arc { right: -20px; top: -30px; opacity: 0.6; }
.choose__body .deco-dots--light { left: 40%; bottom: -60px; }
.choose__img { position: relative; }
.choose__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 20, 64, 0) 40%, rgba(10, 20, 64, 0.35)); }
.page-head .deco-ring { right: 4%; top: -80px; opacity: 0.3; width: 320px; height: 320px; }
.page-head .deco-wave { right: 22%; bottom: -60px; opacity: 0.25; filter: brightness(2); }
.footer { position: relative; overflow: hidden; }
.footer > .container { position: relative; z-index: 1; }
.footer .deco-glow { right: -200px; top: -200px; opacity: 0.6; }

/* Team hover: social icons rise over the photo */
.member { position: relative; }
.member__thumb { position: relative; }
.member__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34, 49, 140, 0) 45%, rgba(34, 49, 140, 0.75)); opacity: 0; transition: opacity 0.35s; }
.member:hover .member__thumb::after { opacity: 1; }
.member__social { position: absolute; left: 0; right: 0; bottom: 18px; display: flex; justify-content: center; gap: 8px; z-index: 2; }
.member__social li a { width: 40px; height: 40px; border-radius: 50%; background: var(--white); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(18px) scale(0.8); transition: transform 0.4s var(--ease), opacity 0.3s, background 0.2s, color 0.2s; }
.member__social li a svg { width: 16px; height: 16px; }
.member:hover .member__social li a { opacity: 1; transform: none; }
.member:hover .member__social li:nth-child(2) a { transition-delay: 0.06s; }
.member:hover .member__social li:nth-child(3) a { transition-delay: 0.12s; }
.member:hover .member__social li:nth-child(4) a { transition-delay: 0.18s; }
.member__social li a:hover { background: var(--cyan); color: var(--white); }
.member__thumb img { transition: filter 0.4s, transform 0.7s var(--ease); }
.member:hover .member__thumb img { transform: scale(1.05); }
@media (hover: none) { .member__social li a { opacity: 1; transform: none; } .member__thumb::after { opacity: 1; } }

/* Category tabs on Our Network */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tabs a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-weight: 600; font-size: 14.5px; color: var(--navy); transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease); }
.tabs a svg { width: 14px; height: 14px; }
.tabs a:hover, .tabs a.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-2px); }

/* Large and extra-large screens */
@media (min-width: 1600px) {
  :root { --container: 1360px; --section: 128px; }
  body { font-size: 17px; }
  .mega .container { grid-template-columns: 340px 1fr; }
}
@media (min-width: 2000px) {
  :root { --container: 1520px; }
}

/* Small phones */
@media (max-width: 400px) {
  h1 { font-size: 32px; }
  .brand img { height: 36px; }
  .tabs a { width: 100%; justify-content: center; }
  .counters, .counters--4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .deco-glow, .deco-ring, .deco-wave, .deco-arc, .hero__content > *, .hero__panel, .js .eyebrow::before { animation: none; }
}


