/* =============================================================
   FLUIDOMAT LIMITED — Design System
   Minimal high-contrast industrial aesthetic (inspired by
   q-industrial.com): near-black + white, industrial red accent,
   oversized light-weight grotesque type, numbered sections,
   full-bleed dark heroes, sharp edges, scroll-driven motion.
   ============================================================= */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Brand palette — Fluidomat steel-blue (logo #246c90) */
  --ink:        #0e1f2a;   /* dark slate-blue headings/text */
  --ink-soft:   #2b3c46;
  --navy:       #0d3247;   /* deep brand petrol-blue — dark sections / footer / hero */
  --navy-deep:  #082534;
  --blue:       #1c7099;   /* PRIMARY ACCENT — Fluidomat brand blue */
  --blue-dark:  #14506f;
  --blue-soft:  #e7f1f6;   /* tinted brand-blue surface */
  --cyan:       #34a0c4;   /* lighter brand blue (fluid accent) */
  --amber:      #e8a200;   /* energy-saving highlight */
  --muted:      #5f6f78;   /* secondary text */
  --muted-2:    #93a1a9;
  --line:       #e2e8ec;   /* hairline borders */
  --line-2:     #eef2f5;
  --bg:         #ffffff;
  --bg-alt:     #f2f6f8;   /* cool off-white section */
  --bg-alt-2:   #e6edf1;
  --white:      #ffffff;

  /* Gradients */
  --grad-fluid:  linear-gradient(120deg, #3aa6cb 0%, #1c7099 55%, #114f6e 100%);
  --grad-navy:   linear-gradient(160deg, #134a66 0%, #0d3247 60%, #082534 100%);
  --grad-navy-2: linear-gradient(155deg, #15506e, #0a2c3e);
  --grad-soft:   linear-gradient(180deg, #ffffff 0%, #f2f6f8 100%);

  /* Typography */
  --font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body:    "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Radii — sharper, more industrial */
  --r-xs: 4px;
  --r-sm: 7px;
  --r:    10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --pill: 999px;

  /* Shadows (neutral, tighter) */
  --sh-xs: 0 1px 2px rgba(0, 0, 0, .05);
  --sh-sm: 0 2px 10px rgba(10, 10, 12, .07);
  --sh:    0 14px 34px -16px rgba(10, 10, 12, .22);
  --sh-md: 0 24px 50px -24px rgba(10, 10, 12, .28);
  --sh-lg: 0 44px 84px -30px rgba(0, 0, 0, .42);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 124px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .18s var(--ease);
  --t: .32s var(--ease);
}

/* ----------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { padding: 0; list-style: none; }
input, textarea, select, button { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid rgba(31, 99, 232, .5); outline-offset: 2px; border-radius: 4px; }

/* --------------------------- Typography --------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.85rem); letter-spacing: -.025em; font-weight: 500; }
h4 { font-size: 1.2rem; letter-spacing: -.02em; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p { color: var(--muted); }
strong { color: var(--ink-soft); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-fluid);
  border-radius: 2px;
}
.eyebrow.is-center::before { display: none; }
.eyebrow--light { color: #8fc0ff; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); line-height: 1.7; }
.text-grad {
  background: var(--grad-fluid);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ----------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section--navy { background: var(--grad-navy); color: #cdd9ec; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section-head { max-width: 740px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

/* ----------------------------- Buttons ---------------------------- */
.btn {
  --bg: var(--blue); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .92em 1.6em;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
  border-radius: var(--pill);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform var(--t-fast); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg: var(--blue); --fg: #fff; }
.btn--primary:hover { background: var(--blue-dark); }
.btn--dark { --bg: var(--ink); --fg: #fff; }
.btn--dark:hover { background: #000; }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue); background: var(--blue-soft); }
.btn--ghost-light {
  --bg: transparent; --fg: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); }
.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: .45em;
  color: var(--blue); font-weight: 700; font-family: var(--font-display);
  transition: gap var(--t-fast), color var(--t-fast);
}
.textlink svg { width: 1.05em; height: 1.05em; transition: transform var(--t-fast); }
.textlink:hover { color: var(--blue-dark); }
.textlink:hover svg { transform: translateX(4px); }

/* ----------------------------- Header ----------------------------- */
html { scroll-padding-top: 84px; }  /* clear the fixed header when jumping to #anchors */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 40, 57, .72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.is-stuck { background: rgba(255, 255, 255, .96); border-bottom-color: var(--line); box-shadow: var(--sh); -webkit-backdrop-filter: saturate(140%) blur(14px); backdrop-filter: saturate(140%) blur(14px); }
/* On scroll the header becomes a solid WHITE bar: white→colored logo, light→dark nav */
.site-header.is-stuck .brand__logo--light { opacity: 0; }
.site-header.is-stuck .brand__logo--dark { opacity: 1; }
.site-header.is-stuck .nav__link { color: rgba(14, 31, 42, .82); }
.site-header.is-stuck .nav__link:hover, .site-header.is-stuck .nav__item:hover .nav__link, .site-header.is-stuck .nav__link[aria-current="page"] { color: var(--blue); }
.site-header.is-stuck .nav__burger { background: rgba(14, 31, 42, .07); }
.site-header.is-stuck .nav__burger span { background: var(--ink); }

/* ----- Language switcher (Google Translate add-in) ----- */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 11px; border-radius: var(--r-xs); background: rgba(255,255,255,.1); color: #fff; font-weight: 600; font-size: .9rem; line-height: 1; cursor: pointer; border: 0; transition: background var(--t-fast), color var(--t-fast); }
.lang__globe { width: 16px; height: 16px; flex: none; }
.lang__btn .chev { width: 12px; height: 12px; opacity: .65; }
.lang__menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 156px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-md); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 130; }
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__flag { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.12); flex: none; display: block; }
.lang__opt { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; padding: 9px 12px; border-radius: var(--r-xs); background: none; border: 0; cursor: pointer; font-weight: 600; font-size: .92rem; color: var(--ink); }
.lang__opt:hover { background: var(--bg-alt); }
.lang__opt.is-active { color: var(--blue); background: var(--blue-soft); }
.site-header.is-stuck .lang__btn { background: rgba(14,31,42,.06); color: var(--ink); }
@media (max-width: 900px) { .nav__cta .lang { display: none; } }
.m-lang { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 4px; }
.m-lang__opt { display: inline-flex; align-items: center; gap: 8px; width: auto; flex: 0 0 auto; padding: 8px 13px; border-radius: var(--pill); border: 1px solid var(--line); background: #fff; }
.m-lang__opt.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
/* hide Google Translate's injected chrome (top banner / tooltip / highlight) */
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate, iframe.skiptranslate, .goog-te-balloon-frame, #goog-gt-tt, .goog-te-gadget-icon, .goog-te-spinner-pop { display: none !important; }
#google_translate_element { display: none !important; }
body { top: 0 !important; position: static !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
/* Fully transparent over a dark hero at the top; solid (.is-stuck) on scroll.
   Subtle shadows (not a background) keep the logo/nav legible over the footage. */
.site-header.over-hero:not(.is-stuck) { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent; box-shadow: none; }
.site-header.over-hero:not(.is-stuck) .nav { text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.site-header.over-hero:not(.is-stuck) .brand__logo { filter: drop-shadow(0 1px 6px rgba(0,0,0,.6)); }
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; position: relative; }
/* the colored (dark) header logo overlays the white one and cross-fades in when the header is stuck */
.brand__logo--light, .brand__logo--dark { transition: opacity .3s var(--ease); }
.brand__logo--dark { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0; pointer-events: none; }
.brand:hover .brand__logo--dark { transform: translateY(-50%) scale(1.03); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.brand__name span { color: var(--blue); }
.brand__tag { display:block; font-family: var(--font-body); font-weight:600; font-size:.6rem; letter-spacing:.22em; text-transform:uppercase; color: var(--muted-2); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: var(--r-xs);
  font-weight: 500; font-size: .95rem; color: rgba(255, 255, 255, .82);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover, .nav__item:hover .nav__link { color: #fff; }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"]::after { content: ""; }
.nav__link .chev { width: 14px; height: 14px; transition: transform var(--t-fast); opacity: .6; }
.nav__item:hover .nav__link .chev { transform: rotate(180deg); }

/* Dropdown */
.nav__drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  min-width: 280px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--sh-md); padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
/* invisible bridge over the gap so the dropdown stays open while the cursor travels to it */
.nav__drop::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 18px; }
.nav__item:hover .nav__drop, .nav__item:focus-within .nav__drop {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav__drop.is-wide { min-width: 360px; }
.nav__drop--grid { display: grid; grid-template-columns: 1fr 1fr; min-width: 440px; gap: 2px; }
.nav__drop--grid .drop-link { padding: 9px 12px; }
.drop-foot { grid-column: 1 / -1; margin-top: 6px; padding: 12px 13px 6px; border-top: 1px solid var(--line); }
.drop-foot .textlink { font-size: .9rem; }
.drop-link--plain { align-items: center; }
.drop-link--plain .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex: none; }
.drop-link { display: flex; gap: 12px; align-items: flex-start; padding: 11px 13px; border-radius: var(--r-xs); transition: background var(--t-fast); }
.drop-link:hover { background: var(--bg-alt); }
.drop-link__ic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--blue-soft); color: var(--blue); }
.drop-link__ic svg { width: 18px; height: 18px; }
.drop-link__t { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); line-height: 1.25; }
.drop-link__d { font-size: .82rem; color: var(--muted); line-height: 1.4; margin-top: 1px; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none; width: 44px; height: 44px; border-radius: var(--r-xs);
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .1);
}
.nav__burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--t), opacity var(--t-fast); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.mobile-nav {
  position: fixed; inset: 76px 0 0; z-index: 99;
  background: #fff; padding: 22px var(--gutter) 60px;
  overflow-y: auto; transform: translateX(100%);
  transition: transform var(--t); visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.m-group { border-bottom: 1px solid var(--line); }
.m-group__head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink);
}
.m-group__head .chev { width: 18px; height: 18px; transition: transform var(--t); color: var(--muted); }
.m-group.is-open .m-group__head .chev { transform: rotate(180deg); }
.m-group__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t); }
.m-group.is-open .m-group__body { grid-template-rows: 1fr; }
.m-group__inner { overflow: hidden; }
.m-group__body a { display: block; padding: 11px 4px 11px 16px; color: var(--muted); font-weight: 600; }
.m-group__body a:hover { color: var(--blue); }
.mobile-nav .btn { margin-top: 26px; }

/* --------------------------- Page hero ---------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--grad-navy); color: #c6d4ea;
  padding-top: clamp(116px, 11vw, 150px);   /* clears the fixed header on all sizes */
  padding-bottom: clamp(56px, 8vw, 96px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(60% 120% at 85% 0%, rgba(31,99,232,.45), transparent 60%),
    radial-gradient(50% 90% at 0% 100%, rgba(22,184,201,.28), transparent 60%);
  pointer-events: none;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: .32; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,60,.4), rgba(7,23,46,.75)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: #aebfda; max-width: 60ch; margin-top: 18px; font-size: 1.12rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .85rem; color: #8fa3c4; margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.breadcrumb [aria-current] { color: #cdd9ec; }

/* ------------------------------ Hero ------------------------------ */
.hero { position: relative; overflow: hidden; background: var(--grad-soft); }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(31,99,232,.14), transparent 62%); pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 92px); }
.hero__copy { max-width: 880px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--pill);
  font-size: .82rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--sh-xs); margin-bottom: 24px;
}
.hero__badge b { background: var(--blue-soft); color: var(--blue); padding: 3px 9px; border-radius: var(--pill); font-size: .74rem; font-weight: 800; letter-spacing: .02em; }
.hero h1 { margin-bottom: 22px; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 52ch; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 44px); margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero__stat .n { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.hero__stat .l { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.hero__art { position: relative; }

/* Hero illustration card */
.hero-visual {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--grad-navy); box-shadow: var(--sh-lg); aspect-ratio: 1 / 1.02;
  display: grid; place-items: center; padding: 8%;
}
.hero-visual__chip {
  position: absolute; background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  border-radius: var(--r-sm); box-shadow: var(--sh-md); padding: 13px 16px;
  display: flex; align-items: center; gap: 11px;
}
.hero-visual__chip .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--grad-fluid); color: #fff; flex: none; }
.hero-visual__chip .ic svg { width: 20px; height: 20px; }
.hero-visual__chip .t { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--ink); line-height: 1; }
.hero-visual__chip .s { font-size: .74rem; color: var(--muted); margin-top: 3px; }
.chip--tl { top: 8%; left: -6%; animation: float 6s var(--ease) infinite; }
.chip--br { bottom: 9%; right: -5%; animation: float 6s var(--ease) infinite .8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* --------------------------- Logo strip --------------------------- */
.trust { padding-block: clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--line); }
.trust__label { text-align: center; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 26px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: #9aa9be; white-space: nowrap; transition: color var(--t-fast); }
.marquee__item:hover { color: var(--ink); }
.marquee__item img { height: 42px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter var(--t), opacity var(--t); }
.marquee__item:hover img { filter: grayscale(0); opacity: 1; }
.marquee__wm { display: inline-flex; align-items: center; height: 44px; padding: 0 18px; border: 1.5px solid var(--line); border-radius: var(--r-xs); font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; letter-spacing: .02em; text-transform: uppercase; color: var(--muted); transition: color var(--t), border-color var(--t); }
.marquee__wm:hover { color: var(--blue); border-color: var(--blue); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------- Cards ------------------------------ */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 32px);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.card__ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 20px;
  transition: background var(--t), color var(--t);
}
.card__ic svg { width: 26px; height: 26px; }
.card:hover .card__ic { background: var(--grad-fluid); color: #fff; }
/* image-icon variant (filled PNG icons) — keep a light bg so the blue icon stays visible */
.card__ic--img { padding: 8px; }
.card__ic--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.card:hover .card__ic--img { background: #fff; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card__link { margin-top: 18px; }

/* numbered/feature variants */
.card--num { position: relative; }
.card--num .num { font-family: var(--font-display); font-weight: 800; font-size: .9rem; color: var(--blue); background: var(--blue-soft); width: 34px; height: 34px; border-radius: var(--pill); display: grid; place-items: center; margin-bottom: 18px; }

/* link card (product/resource lists) */
.link-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 20px; transition: transform var(--t-fast), box-shadow var(--t), border-color var(--t);
}
.link-card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: transparent; }
.link-card__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.link-card__ic svg { width: 22px; height: 22px; }
.link-card__b { flex: 1; min-width: 0; }
.link-card__t { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.04rem; line-height: 1.25; }
.link-card__d { font-size: .85rem; color: var(--muted); margin-top: 2px; }
.link-card__arr { color: var(--muted-2); transition: transform var(--t-fast), color var(--t-fast); flex: none; }
.link-card:hover .link-card__arr { color: var(--blue); transform: translateX(4px); }

/* --------------------------- Showcase ----------------------------- */
.showcase__media {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--grad-navy); box-shadow: var(--sh-md);
  aspect-ratio: 4 / 3.2; display: grid; place-items: center; padding: 7%;
}
.showcase__media.is-light { background: var(--bg-alt); border: 1px solid var(--line); }
.checklist { display: grid; gap: 14px; margin-top: 26px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); font-size: 1rem; }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--blue); margin-top: 2px; }
.checklist.is-light li { color: #cfe; }
.checklist.is-light li svg { color: var(--cyan); }

/* gauge / dashboard mock for media blocks */
.metric-card { background: #fff; border-radius: var(--r); box-shadow: var(--sh-md); padding: 22px; width: 100%; }
.metric-card__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.metric-card__row h5 { color: var(--ink); }
.metric-pill { font-size: .72rem; font-weight: 700; color: #0a8f5b; background: #e4f7ee; padding: 4px 10px; border-radius: var(--pill); }
.bar { height: 10px; border-radius: var(--pill); background: var(--bg-alt-2); overflow: hidden; margin-bottom: 6px; }
.bar span { display: block; height: 100%; border-radius: var(--pill); background: var(--grad-fluid); }
.metric-card__lbls { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-bottom: 16px; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric-mini { background: var(--bg-alt); border-radius: var(--r-xs); padding: 14px; }
.metric-mini .n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.metric-mini .l { font-size: .74rem; color: var(--muted); margin-top: 2px; }

/* ----------------------------- Stats ------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat { text-align: center; padding: 8px; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.4rem); letter-spacing: -.03em; line-height: 1; background: var(--grad-fluid); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section--navy .stat .n { background: linear-gradient(120deg, #7fe3ed, #76a8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .l { margin-top: 12px; color: var(--muted); font-weight: 500; font-size: .95rem; }
.section--navy .stat .l { color: #a9bcd9; }

/* --------------------------- Industries --------------------------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 22px); }
.ind-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg); min-height: 268px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; color: #fff; isolation: isolate;
  background-color: #0a1f3c; background-image: var(--grad-navy);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  box-shadow: var(--sh);
  transition: transform var(--t), box-shadow var(--t);
}
.ind-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,21,40,.10) 14%, rgba(6,21,40,.58) 60%, rgba(5,17,33,.95) 100%); }
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.ind-card__ic { position: absolute; top: 22px; left: 22px; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); display: grid; place-items: center; color: #fff; }
.ind-card__ic svg { width: 24px; height: 24px; }
.ind-card h3 { color: #fff; font-size: 1.28rem; }
.ind-card p { color: rgba(255,255,255,.78); font-size: .88rem; margin-top: 6px; }
.ind-card__more { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-family: var(--font-display); font-size: .9rem; color: #bfe0ff; }
.ind-card__more svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.ind-card:hover .ind-card__more svg { transform: translateX(4px); }

/* ---------------------------- Process ----------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 30px); counter-reset: step; }
.step { position: relative; }
.step__n { width: 56px; height: 56px; border-radius: var(--pill); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; background: var(--grad-fluid); box-shadow: var(--sh); margin-bottom: 20px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .94rem; }
.process .step:not(:last-child)::after {
  content: ""; position: absolute; top: 28px; left: 70px; right: -14px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}

/* -------------------------- Testimonials -------------------------- */
.tcarousel { position: relative; }
.tcarousel__viewport { overflow: hidden; }
.tcarousel__track { display: flex; transition: transform .5s var(--ease); }
.tslide { flex: 0 0 100%; padding: 4px; }
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--sh-sm); max-width: 880px; margin-inline: auto; text-align: center;
}
.tcard__quote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: 1.45; color: var(--ink); letter-spacing: -.01em; }
.tcard__stars { display: inline-flex; gap: 3px; color: var(--amber); margin-bottom: 22px; }
.tcard__stars svg { width: 20px; height: 20px; }
.tcard__by { margin-top: 26px; }
.tcard__by .nm { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.tcard__by .rl { font-size: .88rem; color: var(--muted); margin-top: 2px; }
.tcarousel__nav { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 30px; }
.tcarousel__btn { width: 46px; height: 46px; border-radius: var(--pill); background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast); }
.tcarousel__btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.tcarousel__dots { display: flex; gap: 8px; }
.tcarousel__dots button { width: 9px; height: 9px; border-radius: var(--pill); background: var(--line); transition: width var(--t), background var(--t); }
.tcarousel__dots button.is-active { width: 26px; background: var(--blue); }

/* ----------------------------- CTA band --------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--grad-navy); color: #cdd9ec; padding: clamp(40px, 6vw, 76px); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 140% at 50% -20%, rgba(31,99,232,.5), transparent 60%), radial-gradient(40% 100% at 100% 120%, rgba(22,184,201,.32), transparent 60%); pointer-events: none; }
.cta-band__in { position: relative; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #b6c6e0; font-size: 1.1rem; margin-bottom: 32px; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ------------------------------ FAQ ------------------------------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.faq__item.is-open { box-shadow: var(--sh); border-color: transparent; }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.faq__ic { width: 30px; height: 30px; flex: none; border-radius: var(--pill); background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; transition: transform var(--t), background var(--t), color var(--t); }
.faq__ic svg { width: 16px; height: 16px; }
.faq__item.is-open .faq__ic { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t); }
.faq__item.is-open .faq__body { grid-template-rows: 1fr; }
.faq__inner { overflow: hidden; }
.faq__inner p { padding: 0 26px 24px; color: var(--muted); }

/* --------------------------- Resource cards ----------------------- */
.res-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; height: 100%; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.res-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.res-card__top { aspect-ratio: 16 / 9; background: var(--grad-navy); position: relative; display: grid; place-items: center; color: #fff; overflow: hidden; }
.res-card__tag { position: absolute; top: 14px; left: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.92); color: var(--blue); padding: 5px 11px; border-radius: var(--pill); }
.res-card__b { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.res-card__date { font-size: .8rem; color: var(--muted-2); font-weight: 600; }
.res-card h3 { font-size: 1.18rem; margin: 8px 0 10px; }
.res-card p { font-size: .92rem; flex: 1; }
.res-card .textlink { margin-top: 16px; }

/* ------------------------------ Prose ----------------------------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.75; }
.prose ul, .prose ol { display: grid; gap: 12px; padding-left: 0; }
.prose ul li { display: flex; gap: 12px; }
.prose ul li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 11px; flex: none; }
.prose ol { counter-reset: li; }
.prose ol li { display: flex; gap: 14px; counter-increment: li; }
.prose ol li::before { content: counter(li); font-family: var(--font-display); font-weight: 800; font-size: .85rem; color: var(--blue); background: var(--blue-soft); width: 28px; height: 28px; border-radius: var(--pill); display: grid; place-items: center; flex: none; }
.prose strong { color: var(--ink); }
.callout { background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: var(--r-sm); padding: 20px 24px; }
.callout p { color: var(--ink-soft); margin: 0; }
.callout--amber { background: #fff6e7; border-left-color: var(--amber); }

/* ---------------------------- Spec tables ------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-sm); -webkit-overflow-scrolling: touch; }
.spec-table { font-size: .92rem; min-width: 540px; }
.spec-table caption { caption-side: top; text-align: left; padding: 16px 20px; font-family: var(--font-display); font-weight: 700; color: var(--ink); background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.spec-table th, .spec-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line-2); }
.spec-table thead th { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .02em; white-space: nowrap; }
.spec-table thead th:first-child { border-top-left-radius: 0; }
.spec-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.spec-table tbody tr:hover { background: var(--blue-soft); }
.spec-table td:first-child, .spec-table th:first-child { font-weight: 700; color: var(--ink); }
.table-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }

/* ---------------------------- Timeline ---------------------------- */
.timeline { position: relative; max-width: 900px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--blue), var(--cyan)); }
@media (min-width: 760px) { .timeline::before { left: 50%; transform: translateX(-50%); } }
.tl-item { position: relative; padding-left: 70px; padding-bottom: 36px; }
.tl-item__dot { position: absolute; left: 16px; top: 2px; width: 24px; height: 24px; border-radius: var(--pill); background: #fff; border: 4px solid var(--blue); box-shadow: 0 0 0 5px var(--blue-soft); }
.tl-item__yr { font-family: var(--font-display); font-weight: 800; color: var(--blue); font-size: 1.05rem; }
.tl-item__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 22px; margin-top: 8px; box-shadow: var(--sh-sm); }
.tl-item__card h4 { color: var(--ink); margin-bottom: 4px; }
.tl-item__card p { font-size: .94rem; }
@media (min-width: 760px) {
  .tl-item { padding-left: 0; width: 50%; }
  .tl-item__dot { left: auto; right: -12px; }
  .tl-item:nth-child(odd) { text-align: right; padding-right: 50px; }
  .tl-item:nth-child(even) { margin-left: 50%; padding-left: 50px; }
  .tl-item:nth-child(even) .tl-item__dot { right: auto; left: -12px; }
}

/* --------------------------- Contact ------------------------------ */
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; height: 100%; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.contact-card__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.contact-card__ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.contact-card address { font-style: normal; color: var(--muted); line-height: 1.7; font-size: .96rem; }
.contact-card a { color: var(--blue); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: #fff; transition: border-color var(--t-fast), box-shadow var(--t-fast); font-size: .98rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
/* make the native <select> match the text inputs (custom chevron + grey placeholder) */
.field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 42px; cursor: pointer; color: var(--muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 16px;
}
.field select:has(option:not([value=""]):checked) { color: var(--ink); } /* real choice -> dark text like a filled input */
.field select option { color: var(--ink); }
.field select option[value=""] { color: var(--muted); }
.field select::-ms-expand { display: none; }
/* custom dropdown (replaces the native <select> popup so it matches the site) */
.cselect { position: relative; }
.cselect__btn {
  width: 100%; padding: 13px 42px 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: #fff; font-size: .98rem; font-family: inherit; color: var(--ink); text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.cselect.is-open .cselect__btn, .cselect__btn:focus-visible { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.cselect__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cselect__value.is-placeholder { color: var(--muted); }
.cselect__chev { width: 18px; height: 18px; color: var(--muted); flex: none; transition: transform var(--t-fast); }
.cselect.is-open .cselect__chev { transform: rotate(180deg); }
.cselect__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 50;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); box-shadow: var(--sh-md);
  padding: 6px; max-height: 280px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.cselect.is-open .cselect__list { opacity: 1; visibility: visible; transform: translateY(0); }
.cselect__opt { padding: 10px 12px; border-radius: var(--r-xs); cursor: pointer; font-size: .96rem; color: var(--ink); line-height: 1.3; }
.cselect__opt:hover { background: var(--bg-alt); }
.cselect__opt.is-sel { background: var(--blue-soft); color: var(--blue); font-weight: 600; }
.cselect__opt.is-placeholder { color: var(--muted); }
/* compact inline variant — e.g. the IR year filter in the toolbar */
.cselect--inline { display: inline-block; vertical-align: middle; }
.cselect--inline .cselect__btn { width: auto; min-width: 132px; padding: 11px 16px; border-radius: var(--pill); font-size: .9rem; font-weight: 600; }
.cselect--inline .cselect__list { min-width: 132px; }
.form__note { font-size: .85rem; color: var(--muted); }
.form-success { display: none; padding: 16px 20px; background: #e4f7ee; color: #0a7a4f; border-radius: var(--r-xs); font-weight: 600; }
.form-success.is-shown { display: block; }

/* --------------------------- Download grid ------------------------ */
.dl-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; transition: transform var(--t-fast), box-shadow var(--t), border-color var(--t); }
.dl-card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: transparent; }
.dl-card__ic { width: 46px; height: 56px; flex: none; border-radius: 8px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; position: relative; }
.dl-card__ic svg { width: 24px; height: 24px; }
.dl-card__b { flex: 1; min-width: 0; }
.dl-card__t { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1.3; }
.dl-card__s { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.dl-card__dl { width: 40px; height: 40px; flex: none; border-radius: var(--pill); background: var(--bg-alt); color: var(--ink); display: grid; place-items: center; transition: background var(--t-fast), color var(--t-fast); }
.dl-card:hover .dl-card__dl { background: var(--blue); color: #fff; }

/* tabs (IR / docs) */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.tab { padding: 10px 18px; border-radius: var(--pill); border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: .92rem; color: var(--muted); transition: all var(--t-fast); }
.tab:hover { color: var(--ink); border-color: var(--muted-2); }
.tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* tag pills / client chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: var(--pill); padding: 8px 16px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); transition: all var(--t-fast); }
.chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.client-grid li { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xs); padding: 14px 16px; font-size: .92rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: center; }
.client-grid li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex: none; }
.client-grid li b { color: var(--ink); font-weight: 700; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--navy-deep); color: #93a6c4; padding-top: clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(31,99,232,.6), transparent); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 56px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin: 18px 0 22px; max-width: 34ch; color: #8194b3; font-size: .95rem; }
.footer__certs { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__certs span { font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: #aebfda; border: 1px solid rgba(255,255,255,.14); border-radius: var(--pill); padding: 5px 12px; }
.footer__col h5 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { color: #93a6c4; font-size: .95rem; transition: color var(--t-fast), padding var(--t-fast); }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__contact li { display: flex; gap: 11px; font-size: .95rem; line-height: 1.55; margin-bottom: 14px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 3px; }
.footer__contact a { color: #93a6c4; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom p { font-size: .88rem; color: #6f83a3; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: var(--pill); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #aebfda; transition: all var(--t-fast); }
.footer__social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; }

/* skip link */
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--blue); color: #fff; padding: 10px 18px; border-radius: var(--r-xs); font-weight: 700; }
.skip-link:focus { left: 12px; }

/* --------------------------- Reveal anim (clean fade-up) -------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { transform: none; transition: opacity .35s linear; }
}

/* ---------------------------- Utilities --------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mt-4 { margin-top: 48px; }
.mb-2 { margin-bottom: 24px; }
.muted { color: var(--muted); }
.hide { display: none !important; }
.flex-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(40px, 6vw, 72px); }
.pill-tag { display: inline-block; background: var(--blue-soft); color: var(--blue); font-weight: 700; font-size: .8rem; padding: 5px 13px; border-radius: var(--pill); }
.anchor { scroll-margin-top: 100px; }

/* ---------------------------- Responsive -------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process .step::after { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__menu, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .showcase.is-reverse .showcase__media { order: -1; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .hero__stats { gap: 22px; }
  .chip--tl, .chip--br { display: none; }
  .cta-band__btns, .hero__cta { flex-direction: column; align-items: stretch; }
  .cta-band__btns .btn, .hero__cta .btn { width: 100%; }
}

/* =============================================================
   V2 ENHANCEMENTS — real logo, photography, video, motion
   ============================================================= */

/* ----- Real logo ----- */
.brand__logo { height: 38px; width: auto; display: block; transition: transform var(--t); }
.brand__fallback { display: none; color: #fff; }  /* shown by JS only if logo-white.png fails to load */
.brand:hover .brand__logo { transform: scale(1.03); }
.footer__brand .brand__logo { height: 50px; }
@media (max-width: 420px) { .brand__logo { height: 32px; } }

/* ----- Scroll progress bar ----- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-fluid); box-shadow: 0 0 12px rgba(31,99,232,.6); transition: width .08s linear; }

/* ----- Video / media hero ----- */
.hero--media { position: relative; color: #fff; background: var(--navy-deep); overflow: hidden; }
.hero--media::before { display: none; }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg video, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(105deg, rgba(5,16,32,.94) 0%, rgba(6,20,40,.86) 38%, rgba(8,26,52,.55) 70%, rgba(10,33,66,.35) 100%),
  radial-gradient(70% 90% at 80% 10%, rgba(31,99,232,.30), transparent 60%); }
.hero--media .hero__grid { position: relative; z-index: 1; }

/* ===== Hero video treatment OPTIONS (add class to .hero--media) ===== */
/* Option A — "Vivid": footage stays visible, brighter & more saturated, lighter cool overlay + brand-cyan glow */
.hero--vivid .hero__bg video, .hero--vivid .hero__bg img { filter: saturate(1.24) contrast(1.07) brightness(1.06); }
.hero--vivid .hero__bg::after { background:
  linear-gradient(100deg, rgba(6,18,36,.82) 0%, rgba(8,24,46,.58) 42%, rgba(12,42,72,.3) 74%, rgba(16,58,96,.14) 100%),
  radial-gradient(62% 82% at 84% 6%, rgba(52,160,196,.40), transparent 62%); }

/* Option B — "Teal grade": cohesive cinematic brand-blue/teal color grade over the footage (editorial, premium) */
.hero--teal .hero__bg video, .hero--teal .hero__bg img { filter: saturate(1.14) contrast(1.05); }
.hero--teal .hero__bg::after { background:
  linear-gradient(120deg, rgba(7,26,46,.9) 0%, rgba(10,52,84,.62) 46%, rgba(18,96,134,.5) 100%),
  radial-gradient(85% 105% at 78% -4%, rgba(52,160,196,.5), transparent 58%); }
.hero--media h1 { color: #fff; }
.hero--media .hero__sub { color: #c9d6ea; }
.hero--media .hero__stats { border-top-color: rgba(255,255,255,.16); }
.hero--media .hero__stat .n { color: #fff; }
.hero--media .hero__stat .l { color: #a9bcd9; }
.hero--media .hero__badge { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); color: #fff; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.hero--media .hero__badge b { background: var(--blue); color: #fff; }
.hero--media .btn--ghost { --fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
.hero--media .btn--ghost:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1.5px #fff; color: #fff; }

/* Glass panel (right side of media hero) */
.hero__panel { position: relative; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-xl); padding: 26px; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: var(--sh-lg); }
.hero__panel-media { border-radius: var(--r-lg); overflow: hidden; background: #fff; padding: 18px; }
.hero__panel-media img { width: 100%; height: auto; display: block; }
.hero__panel-row { display: flex; gap: 12px; margin-top: 18px; }
.hero__panel-stat { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-sm); padding: 14px; }
.hero__panel-stat .n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: -.02em; line-height: 1; }
.hero__panel-stat .l { font-size: .74rem; color: #aebfda; margin-top: 5px; }

/* ----- Play button ----- */
.play-btn { display: inline-flex; align-items: center; gap: 14px; color: #fff; font-family: var(--font-display); font-weight: 700; }
.play-btn .ring { position: relative; width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.45); display: grid; place-items: center; transition: background var(--t), transform var(--t), border-color var(--t); }
.play-btn .ring svg { width: 22px; height: 22px; margin-left: 3px; }
.play-btn:hover .ring { background: var(--blue); border-color: var(--blue); transform: scale(1.06); }
.play-btn .ring::after { content: ""; position: absolute; inset: -2px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); animation: ping 2.6s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.55); opacity: 0; } }
.play-btn small { display: block; font-size: .78rem; font-weight: 500; color: #aebfda; }

/* ----- Image media frames ----- */
.media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); background: var(--bg-alt); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.media--ratio { aspect-ratio: 4 / 3; }
.media--wide { aspect-ratio: 16 / 10; }
.media--tall { aspect-ratio: 3 / 4; }
.media.zoom:hover img { transform: scale(1.07); }
.media--white { background: #fff; border: 1px solid var(--line); }
.media--white img { object-fit: contain; padding: clamp(14px, 3vw, 32px); }
.media__badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.94); color: var(--blue); font-weight: 800; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; padding: 6px 13px; border-radius: var(--pill); box-shadow: var(--sh-sm); }
.media__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 22px 18px; background: linear-gradient(transparent, rgba(5,17,33,.9)); color: #fff; }
.media__cap h4 { color: #fff; }
.media__cap p { color: rgba(255,255,255,.8); font-size: .88rem; margin-top: 2px; }
.media-frame { position: relative; }
.media-frame::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 120px; height: 120px; background: var(--grad-fluid); filter: blur(46px); opacity: .5; border-radius: 50%; z-index: -1; }

/* ----- Video background section ----- */
.section--video { position: relative; overflow: hidden; color: #fff; }
.section--video .sec-bg { position: absolute; inset: 0; z-index: 0; }
.section--video .sec-bg video, .section--video .sec-bg img { width: 100%; height: 100%; object-fit: cover; }
.section--video .sec-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,38,.66), rgba(5,15,30,.82)); }
.section--video .container { position: relative; z-index: 1; }
.section--video h2, .section--video h3 { color: #fff; }
.section--video .stat .l { color: #b6c6e0; }
.section--video .stat .n { background: linear-gradient(120deg, #7fe3ed, #76a8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ----- Logo wall ----- */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.logo-wall__item { display: grid; place-items: center; padding: 30px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 120px; }
.logo-wall__item img { max-height: 56px; max-width: 100%; width: auto; filter: grayscale(1); opacity: .68; transition: filter var(--t), opacity var(--t), transform var(--t); }
.logo-wall__item:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } .logo-wall__item { min-height: 96px; padding: 22px 14px; } }

/* ----- Certificate cards ----- */
.cert-card { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.cert-card__img { width: 64px; height: 84px; flex: none; border-radius: var(--r-xs); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.cert-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cert-card__t { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1.25; }
.cert-card__s { font-size: .85rem; color: var(--muted); margin-top: 3px; }

/* ----- Video modal / lightbox ----- */
.vmodal { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 24px; background: rgba(4,12,24,.84); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; transition: opacity var(--t); }
.vmodal.is-open { display: grid; opacity: 1; }
.vmodal__inner { position: relative; width: min(980px, 100%); aspect-ratio: 16 / 9; background: #000; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); transform: scale(.95); transition: transform var(--t); }
.vmodal.is-open .vmodal__inner { transform: scale(1); }
.vmodal__inner video, .vmodal__inner iframe { width: 100%; height: 100%; border: 0; display: block; }
.vmodal__close { position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; box-shadow: var(--sh); transition: transform var(--t), background var(--t), color var(--t); }
.vmodal__close:hover { transform: rotate(90deg); background: var(--blue); color: #fff; }
.vmodal__close svg { width: 22px; height: 22px; }
@media (max-width: 600px) { .vmodal__close { top: 8px; right: 8px; } }

/* ----- Tilt + extra motion ----- */
.tilt { transition: transform .25s var(--ease); transform-style: preserve-3d; will-change: transform; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: none; }
@media (hover: none) { .tilt { transform: none !important; } }

/* ----- Section intro on alt/dark refinements ----- */
.split--media { align-items: center; }
.eyebrow.eyebrow--light::before { background: linear-gradient(90deg, #16b8c9, #76a8ff); }

/* button shine */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-20deg); transition: left .6s var(--ease); }
.btn--primary:hover::after { left: 140%; }

/* ----- Live market data (TradingView widgets) ----- */
.market-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(18px, 2.4vw, 28px); align-items: start; }
@media (max-width: 860px) { .market-grid { grid-template-columns: 1fr; } }
.market-embed { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--sh-sm); min-height: 300px; }
.market-embed--chart { min-height: 480px; }
.market-embed .tradingview-widget-container,
.market-embed .tradingview-widget-container__widget { position: relative; z-index: 1; height: 100%; width: 100%; }
.market-embed--chart .tradingview-widget-container,
.market-embed--chart .tradingview-widget-container__widget { min-height: 480px; }
.market-embed__fallback { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; text-align: center; padding: 28px; }
.market-embed__fallback .mf-in { max-width: 320px; }
.market-embed__fallback .mf-ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.market-embed__fallback .mf-ic svg { width: 28px; height: 28px; }
.market-embed__fallback h4 { color: var(--ink); margin-bottom: 6px; }
.market-embed__fallback p { font-size: .9rem; }
.market-embed__fallback .pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #18b66b; margin-right: 7px; vertical-align: middle; animation: lpulse 1.6s ease-in-out infinite; }
@keyframes lpulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(24,182,107,.5); } 50% { opacity: .5; box-shadow: 0 0 0 6px rgba(24,182,107,0); } }
.market-note { font-size: .82rem; color: var(--muted); margin-top: 16px; display: flex; gap: 8px; align-items: flex-start; }
.market-note svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: var(--muted-2); }
.market-live-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #0a8f5b; background: #e4f7ee; padding: 6px 14px; border-radius: var(--pill); }
.market-live-tag .pulse-dot { background: #0a8f5b; margin: 0; }

/* responsive: hero panel hides illustration weight on small */
@media (max-width: 900px) {
  .hero--media .hero__art { order: 0; max-width: none; }
  .hero__panel { display: none; }
  .hero--media .hero__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   V3 — Q-INDUSTRIAL style: numbered sections, scroll cue,
   scroll-driven fluid-coupling gallery
   ============================================================= */

/* Numbered section eyebrow */
.eyebrow__num { font-family: var(--font-display); font-weight: 600; color: var(--blue); margin-right: .1em; }
.sec-num { display: block; font-family: var(--font-display); font-weight: 300; font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px var(--line); margin-bottom: 14px; }
.section--navy .sec-num, .coupling-scroll .sec-num { -webkit-text-stroke-color: rgba(255,255,255,.22); }

/* Hero scroll-down cue */
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: inline-flex; flex-direction: column; align-items: center; gap: 9px; color: rgba(255,255,255,.7); font-family: var(--font-display); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue__line { width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0)); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #fff; animation: cueDrop 1.9s var(--ease) infinite; }
@keyframes cueDrop { 0% { transform: translateY(0); } 100% { transform: translateY(300%); } }

/* Make hero a touch taller / full-bleed for q-industrial drama */
.hero--media .hero__grid { min-height: min(86vh, 820px); padding-block: clamp(90px, 12vh, 150px) 90px; }

/* Diagonal arrow utility (q-industrial ↗) */
.arrow-ne { display: inline-block; transition: transform var(--t-fast); }
.btn:hover .arrow-ne, .textlink:hover .arrow-ne { transform: translate(3px, -3px); }

/* ---- Fluid-coupling range — clean responsive grid (brand blue) ---- */
.coupling-scroll { position: relative; background: var(--navy); color: #fff; padding-block: var(--section-y); }
.coupling-scroll__sticky { position: static; display: block; height: auto; overflow: visible; }
.coupling-scroll__head { width: 100%; max-width: var(--container-wide); margin: 0 auto clamp(30px, 4vw, 54px); padding-inline: var(--gutter); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.coupling-scroll__head h2 { color: #fff; max-width: 18ch; }
.coupling-scroll__head p { color: rgba(255,255,255,.62); max-width: 42ch; }
.coupling-scroll__viewport { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding-inline: var(--gutter); overflow: visible; }
.coupling-scroll__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 26px); }
@media (max-width: 1080px) { .coupling-scroll__track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .coupling-scroll__track { grid-template-columns: 1fr; } }
.coupling-card { display: block; width: auto; }
.coupling-card__media { position: relative; aspect-ratio: 4 / 3.1; background: #fff; border-radius: var(--r-lg); overflow: hidden; display: grid; place-items: center; padding: 24px; }
.coupling-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .7s var(--ease); }
.coupling-card:hover .coupling-card__media img { transform: scale(1.06); }
.coupling-card__media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 120%, rgba(28,112,153,.14), transparent 60%); }
.coupling-card__n { font-family: var(--font-display); color: var(--cyan); font-weight: 600; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 18px; }
.coupling-card__t { font-family: var(--font-display); font-size: 1.28rem; color: #fff; margin-top: 7px; font-weight: 500; letter-spacing: -.02em; }
.coupling-card__d { color: rgba(255,255,255,.6); font-size: .92rem; margin-top: 6px; line-height: 1.5; }
.coupling-scroll__bar { display: none; }
.coupling-spin { animation: cspin 22s linear infinite; transform-origin: 50% 50%; }
@keyframes cspin { to { transform: rotate(360deg); } }

/* ---- Scroll-driven coupling widget (fixed, bottom-right) ---- */
.scroll-cog { position: fixed; right: 22px; bottom: 22px; width: 60px; height: 60px; z-index: 60; padding: 0; border: 0; background: none; cursor: pointer; display: grid; place-items: center; -webkit-tap-highlight-color: transparent; transition: transform .2s var(--ease); }
.scroll-cog:hover { transform: translateY(-2px); }
.scroll-cog::before { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #fff; box-shadow: var(--sh-lg); }
.scroll-cog__ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.scroll-cog__prog { transition: stroke-dashoffset .12s linear; }
.scroll-cog__art { position: relative; width: 30px; height: 30px; }
.scroll-cog__mark { width: 100%; height: 100%; display: block; transform-origin: 50% 50%; }
@media (max-width: 600px) { .scroll-cog { right: 16px; bottom: 16px; width: 52px; height: 52px; } .scroll-cog__art { width: 26px; height: 26px; } }
@media (prefers-reduced-motion: reduce) { .scroll-cog { transition: none; } }

@media (prefers-reduced-motion: reduce) {
  .coupling-scroll { height: auto !important; }
  .coupling-scroll__sticky { position: static; min-height: 0; }
  .coupling-scroll__viewport { overflow-x: auto; }
  .coupling-scroll__track { transform: none !important; }
  .coupling-spin { animation: none; }
  .scroll-cue__line::after { animation: none; }
}

/* =============================================================
   V4 — Yahoo live stock module + full IR document index
   ============================================================= */
.stockx { display: grid; grid-template-columns: 360px 1fr; gap: clamp(18px, 2.4vw, 28px); align-items: stretch; }
@media (max-width: 860px) { .stockx { grid-template-columns: 1fr; } }
.stockx__quote { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; box-shadow: var(--sh-md); }
.stockx__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.stockx__name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.stockx__sym { font-size: .76rem; color: rgba(255,255,255,.55); margin-top: 3px; letter-spacing: .04em; }
.stockx__live { display: inline-flex; align-items: center; gap: 7px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9bf5c4; background: rgba(24,182,107,.16); padding: 5px 11px; border-radius: var(--pill); white-space: nowrap; }
.stockx__live .pulse-dot { background: #18b66b; }
.stockx__live.is-stale { color: #ffd9a8; background: rgba(240,165,0,.16); }
.stockx__live.is-stale .pulse-dot { background: #f0a500; animation: none; }
.stockx__price { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 5vw, 3.2rem); letter-spacing: -.03em; line-height: 1; margin-top: 24px; }
.stockx__price .stockx__cur { font-size: .85rem; color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: 0; margin-left: 4px; }
.stockx__chg { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin-top: 10px; color: rgba(255,255,255,.7); }
.stockx__chg.up { color: #3ad187; }
.stockx__chg.down { color: #ff6b6b; }
.stockx__stats { margin-top: auto; padding-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 18px; border-top: 1px solid rgba(255,255,255,.12); }
.stockx__stats > div span { display: block; font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.stockx__stats > div b { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: #fff; }
.stockx__chartwrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; display: flex; flex-direction: column; min-height: 360px; box-shadow: var(--sh-sm); }
.stockx__ranges { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.stockx__ranges button { padding: 7px 15px; border-radius: var(--pill); border: 1px solid var(--line); background: #fff; font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: var(--muted); cursor: pointer; transition: all var(--t-fast); }
.stockx__ranges button:hover { border-color: var(--ink); color: var(--ink); }
.stockx__ranges button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.stockx__chart { flex: 1; min-height: 250px; position: relative; }
.stockx__chart svg { width: 100%; height: 100%; display: block; overflow: visible; }
.stockx__chart .gridline { stroke: var(--line-2); stroke-width: 1; }
.stockx__chart .axislbl { fill: var(--muted-2); font: 500 11px var(--font-body); }
.stockx__hint { font-size: .8rem; color: var(--muted); margin-top: 12px; display: flex; gap: 7px; align-items: center; }
.stockx__hint svg { width: 14px; height: 14px; color: var(--muted-2); flex: none; }

/* Full IR document index */
.ir-toolbar { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.ir-search { flex: 1; min-width: 240px; position: relative; }
.ir-search input { width: 100%; padding: 13px 16px 13px 44px; border: 1.5px solid var(--line); border-radius: var(--pill); font-size: .95rem; background: #fff; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.ir-search input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--bg-alt-2); }
.ir-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted-2); }
.ir-actions { display: flex; gap: 8px; }
.ir-actions button { padding: 11px 16px; border-radius: var(--pill); border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: .85rem; color: var(--ink); cursor: pointer; transition: all var(--t-fast); }
.ir-actions button:hover { border-color: var(--ink); }
.ir-filter { padding: 11px 38px 11px 16px; border-radius: var(--pill); border: 1.5px solid var(--line); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center; -webkit-appearance: none; -moz-appearance: none; appearance: none; font-size: .9rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.ir-filter:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--bg-alt-2); }
.ir-count { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.ir-acc { display: grid; gap: 12px; }
.ir-cat { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.ir-cat__head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; text-align: left; cursor: pointer; background: none; }
.ir-cat__head h3 { font-size: 1.04rem; font-weight: 600; letter-spacing: -.01em; }
.ir-cat__meta { display: flex; align-items: center; gap: 14px; color: var(--muted); flex: none; }
.ir-cat__badge { font-family: var(--font-display); font-weight: 600; font-size: .76rem; color: var(--blue); background: var(--blue-soft); padding: 4px 11px; border-radius: var(--pill); }
.ir-cat__chev { width: 22px; height: 22px; transition: transform var(--t); color: var(--muted-2); }
.ir-cat.is-open .ir-cat__chev { transform: rotate(180deg); }
.ir-cat__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t); }
.ir-cat.is-open .ir-cat__body { grid-template-rows: 1fr; }
.ir-cat__inner { overflow: hidden; }
.ir-docgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 8px; padding: 2px 18px 20px; }
.ir-doc { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: var(--r-xs); border: 1px solid var(--line-2); color: var(--ink-soft); font-size: .87rem; transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast), transform var(--t-fast); content-visibility: auto; contain-intrinsic-size: auto 44px; }
.ir-doc:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); transform: translateY(-1px); }
.ir-doc::before { content: ""; width: 16px; height: 16px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231c7099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E") center / contain no-repeat; }
.ir-doc span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ir-empty { padding: 30px; text-align: center; color: var(--muted); }

/* =============================================================
   V9 — Coupling-themed page transitions
   Enter: content fades in. Exit: a navy iris (coupling aperture)
   expands from centre with a spinning coupling, then navigates.
   ============================================================= */
main { animation: pageFade .4s var(--ease) both; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

.page-fx { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; overflow: hidden; background: var(--grad-navy); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .4s var(--ease), visibility 0s linear .4s; }
.page-fx::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(52,160,196,.22), transparent 70%); }
.page-fx.instant { transition: none !important; }
.page-fx.is-cover { opacity: 1; visibility: visible; pointer-events: all; transition: opacity .4s var(--ease), visibility 0s linear 0s; }
.page-fx__cog { position: absolute; top: 50%; left: 50%; width: clamp(140px, 20vw, 260px); height: clamp(140px, 20vw, 260px); transform: translate(-50%, -50%) scale(.68); transition: transform .45s var(--ease); }
.page-fx.is-cover .page-fx__cog { transform: translate(-50%, -50%) scale(1); }  /* smooth engage/disengage */
.page-fx__cog svg { width: 100%; height: 100%; display: block; transform-origin: 50% 50%; }
/* animations run ONLY while the transition is covering (not idle off-screen) */
.page-fx.is-cover .page-fx__cog svg { animation: pfxSpin 2.8s linear infinite; }
.page-fx.is-cover .pfx-wing { animation: wingFade 2.4s ease-in-out infinite; }
@keyframes wingFade { 0%, 100% { opacity: .14; } 45% { opacity: 1; } }
.page-fx__label { position: absolute; left: 50%; top: calc(50% + clamp(70px,11vw,108px)); transform: translateX(-50%); font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.55); white-space: nowrap; }
@keyframes pfxSpin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  main { animation: none; }
  .page-fx { display: none; }
}

/* ===== Print / PDF export ===== */
@media print {
  @page { margin: 0; }
  *, *::before, *::after { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  main { animation: none !important; }
  /* scroll-reveal content would otherwise stay invisible (opacity:0) when printed */
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; }
  /* drop interactive/overlay chrome */
  .scroll-cog, .scroll-progress, .page-fx, .scroll-cue, .nav__burger, .mobile-nav, .lang, .m-lang { display: none !important; }
  /* header → a solid white bar with the colored logo so it's legible & prints once at the top */
  .site-header { position: static !important; background: #fff !important; box-shadow: none !important; border-bottom: 1px solid var(--line) !important; }
  .site-header .nav { text-shadow: none !important; }
  .site-header .brand__logo--light { opacity: 0 !important; }
  .site-header .brand__logo--dark { opacity: 1 !important; }
  .site-header .nav__link { color: #16222c !important; }
  /* keep components from splitting across page breaks */
  .card, .coupling-card, .stat, .cert-card, .ind-card, .metric-card, .faq__item, .stockx { break-inside: avoid; }
}

/* ===================== RTL layout (Arabic) ===================== */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .is-center, [dir="rtl"] .section-head.is-center, [dir="rtl"] .center { text-align: center; }
/* header */
[dir="rtl"] .brand { margin-right: 0; margin-left: auto; }
[dir="rtl"] .lang__menu { right: auto; left: 0; }
[dir="rtl"] .eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .eyebrow::before { margin-right: 0; margin-left: .55em; }
/* inline icon rows flip so the icon sits on the right */
[dir="rtl"] .footer__contact li, [dir="rtl"] .drop-link, [dir="rtl"] .nav__link { flex-direction: row-reverse; }
[dir="rtl"] .nav__link { justify-content: flex-end; }
/* mirror directional arrows */
[dir="rtl"] .arrow-ne, [dir="rtl"] .breadcrumb svg, [dir="rtl"] .scroll-cue__line { transform: scaleX(-1); }
/* lists: drop default left padding so bullets/content align right */
[dir="rtl"] .footer__col ul, [dir="rtl"] .prose ul, [dir="rtl"] .prose ol { padding-left: 0; padding-right: 1.1em; }
/* the bottom-right scroll cog → bottom-left in RTL */
[dir="rtl"] .scroll-cog { right: auto; left: 22px; }
