/* ==========================================================================
   Deepdev Business Advisors — site stylesheet
   Layout language modelled on large professional-services sites: dark header,
   accent pill CTAs, tinted bands, outlined-type service tiles, dark footer.
   Palette: DDB navy + Himalayan sky (from the firm's profile deck).
   ========================================================================== */

@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-semi-condensed-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/barlow-semi-condensed-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Carlito"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/carlito-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Carlito"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/carlito-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/ibm-plex-sans-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/ibm-plex-sans-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/ibm-plex-sans-latin-600-normal.woff2") format("woff2"); }

:root {
  color-scheme: light;
  /* brand */
  --ink: #1F3864;          /* letterhead top band */
  --ink-2: #27477C;
  --ink-3: #315894;
  --on-ink: #E9EFF8;
  --on-ink-muted: #A9B8CD;
  --line-ink: rgba(255, 255, 255, .13);
  --sky: #58C4F6;
  --sky-soft: #BFE9FF;
  --royal: #1F5ED8;
  --royal-dark: #1747A6;
  --crimson: #D62839;
  /* neutrals (blue-biased) */
  --paper: #FFFFFF;
  --mist: #F2F5F9;
  --ice: #E4F3FC;
  --text: #1B2B41;
  --muted: #56667D;
  --line: #DCE3EC;
  --field: #C3CEDC;
  /* status */
  --ok: #17804F;
  --ok-bg: #E5F5EC;
  --bad: #B42318;
  --bad-bg: #FDECEA;
  /* type */
  --font-brand: "Carlito", Calibri, "Segoe UI", Candara, system-ui, sans-serif;  /* letterhead wordmark */
  --font-display: "Barlow Semi Condensed", "Arial Narrow", "Roboto Condensed", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  /* layout */
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 76px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(31, 56, 100, .07), 0 2px 6px rgba(31, 56, 100, .05);
  --shadow-md: 0 18px 40px -18px rgba(31, 56, 100, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body { margin: 0; font-family: var(--font-body); font-size: 1rem; line-height: 1.62; color: var(--text); background: var(--paper); text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
@media (min-width: 900px) { body { font-size: 1.0625rem; } }
img, svg, video { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--royal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--royal-dark); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 3px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; color: var(--ink); margin: 0 0 .5em; text-wrap: balance; letter-spacing: -.004em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 1.9vw, 1.6rem); line-height: 1.1; }
h4 { font-size: 1.2rem; line-height: 1.15; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; }
strong { font-weight: 600; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--sky); color: var(--ink); padding: 10px 16px; border-radius: 0 0 8px 8px; font-weight: 600; }
.skip-link:focus { top: 0; }

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

/* ---------- layout primitives ---------- */
.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(820px + 2 * var(--gutter)); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--mist { background: var(--mist); }
.section--ice { background: var(--ice); }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section-head { max-width: 780px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head p { font-size: 1.14rem; color: var(--muted); margin-bottom: 0; }
.section--ink .section-head p { color: var(--on-ink-muted); }
.section-head--left { margin-left: 0; text-align: left; }
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; text-align: left; }
.section-head--row > div { max-width: 720px; }
.section-head .btn { margin-top: 22px; }
.eyebrow { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .13em; font-size: .86rem; color: var(--royal); margin: 0 0 .7rem; display: inline-flex; align-items: center; gap: .5rem; }
.eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; }
.section--ink .eyebrow, .page-hero .eyebrow { color: var(--sky); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.55; color: var(--muted); }
.prose p, .prose li { max-width: 68ch; }
.muted { color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); align-items: center; }
.stack-sm > * + * { margin-top: 10px; }

/* ---------- buttons & links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 44px; padding: .62rem 1.35rem; border-radius: 999px; font: 600 .97rem/1.1 var(--font-body); text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); white-space: nowrap; }
.btn .icon { width: 18px; height: 18px; }
.btn--sky { background: var(--sky); color: var(--ink); }
.btn--sky:hover { background: #86D5FA; color: var(--ink); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-3); color: #fff; }
.btn--royal { background: var(--royal); color: #fff; }
.btn--royal:hover { background: var(--royal-dark); color: #fff; }
.btn--outline-light { border-color: rgba(255, 255, 255, .85); color: #fff; background: rgba(8, 18, 36, .12); }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--sm { min-height: 36px; padding: .42rem 1rem; font-size: .9rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.link-arrow { font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; color: var(--royal); }
.link-arrow .icon { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.link-arrow:hover .icon, a:hover .link-arrow .icon { transform: translateX(4px); }
.section--ink .link-arrow { color: var(--sky); }

.chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; font-size: .88rem; background: #fff; color: var(--text); line-height: 1.3; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.chip-ai { display: inline-flex; align-items: center; gap: 5px; font: 700 .72rem/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: linear-gradient(90deg, var(--sky-soft), var(--sky)); padding: 5px 10px 5px 8px; border-radius: 999px; white-space: nowrap; }
.chip-ai .icon { width: 13px; height: 13px; }
.chip-prod { background: linear-gradient(90deg, #FBE6C2, #F2C572); }
.svc-card__band .chip-prod { background: var(--ink); color: #fff; }
.tag-ai { font: 700 .62rem/1 var(--font-body); letter-spacing: .06em; padding: 3px 5px; border-radius: 4px; background: var(--sky); color: var(--ink); }

/* ---------- announcement bar ---------- */
.announce { background: var(--sky); color: var(--ink); }
.announce__inner { display: flex; align-items: center; justify-content: center; gap: 6px 14px; flex-wrap: wrap; min-height: 52px; padding-block: 10px; text-align: center; font-weight: 600; font-size: 1rem; }
.announce a { color: var(--ink); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.announce .icon { width: 16px; height: 16px; }

/* ---------- header ---------- */
.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: var(--ink); color: #fff; transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 8px 24px -12px rgba(0, 0, 0, .5); }
.site-header__inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; flex: none; }
.brand:hover { color: #fff; }
.brand img { width: 42px; height: 42px; }
.brand__name { font-family: var(--font-brand); font-weight: 700; font-size: 1.52rem; line-height: .95; display: block; letter-spacing: -.004em; }
.brand__sub { font-family: var(--font-brand); font-weight: 700; font-size: .72rem; letter-spacing: .17em; text-transform: uppercase; color: #C4D2E6; display: block; margin-top: 6px; white-space: nowrap; }
.nav { margin-left: auto; height: 100%; }
.nav__list { display: flex; align-items: stretch; height: 100%; list-style: none; margin: 0; padding: 0; }
.nav__item { display: flex; }
.nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 0 13px; color: #fff; text-decoration: none; font: 600 .95rem/1 var(--font-body); background: none; border: 0; cursor: pointer; position: relative; white-space: nowrap; }
.nav__link:hover { color: #fff; }
.nav__link::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 20px; height: 2px; background: var(--sky); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease); }
.nav__link:hover::after, .nav__link[aria-expanded="true"]::after, .nav__link[aria-current="page"]::after, .nav__link.is-current::after { transform: scaleX(1); }
.nav__link .chev { width: 15px; height: 15px; transition: transform .2s; opacity: .85; }
.nav__link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 4px; flex: none; }
.header-actions .btn { margin-left: 8px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center; background: transparent; border: 0; color: #fff; cursor: pointer; transition: background-color .2s; }
.icon-btn:hover { background: rgba(255, 255, 255, .1); }
.icon-btn .icon { width: 22px; height: 22px; }
.ai-btn { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px 0 6px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .04); color: #fff; font: 600 .9rem/1 var(--font-body); cursor: pointer; transition: background-color .2s, border-color .2s; }
.ai-btn:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .4); }
.orb { width: 28px; height: 28px; border-radius: 50%; display: inline-grid; place-items: center; background: conic-gradient(from 200deg, #58C4F6, #1F5ED8, #BFE9FF, #58C4F6); color: #fff; flex: none; position: relative; }
.orb .icon { width: 15px; height: 15px; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .25)); }
.menu-btn { display: none; }

/* dropdowns */
.dropdown { position: absolute; left: 0; right: 0; top: 100%; background: #fff; color: var(--text); border-top: 3px solid var(--sky); box-shadow: 0 28px 50px -28px rgba(8, 18, 36, .5); }
.dropdown[hidden] { display: none; }
.dropdown__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.1fr) minmax(0, 1.15fr); gap: 36px; padding-block: 34px 38px; }
.dropdown__intro h2 { font-size: 2rem; margin-bottom: .3em; }
.dropdown__intro p { color: var(--muted); font-size: .96rem; }
.dropdown__links { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px 18px; align-content: start; }
.dropdown__links--single { grid-template-columns: 1fr; max-width: 320px; }
.dropdown__links a { display: flex; align-items: center; gap: 10px; padding: 10px 10px; border-radius: 8px; color: var(--text); text-decoration: none; font-weight: 600; font-size: .95rem; line-height: 1.25; }
.dropdown__links a:hover { background: var(--mist); color: var(--royal); }
.dropdown__links .ico { width: 36px; height: 36px; border-radius: 9px; background: var(--ice); color: var(--royal); display: grid; place-items: center; flex: none; }
.dropdown__links .ico .icon { width: 19px; height: 19px; }
.dropdown__feature { background: var(--ink); color: var(--on-ink); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; }
.dropdown__feature:hover { color: var(--on-ink); }
.dropdown__feature img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.dropdown__feature div { padding: 16px 18px 20px; }
.dropdown__feature strong { display: block; font-family: var(--font-display); font-size: 1.35rem; color: #fff; line-height: 1.1; margin: 6px 0; }
.dropdown__feature p { font-size: .9rem; color: var(--on-ink-muted); margin: 0 0 10px; }

/* mobile drawer */
.drawer { position: fixed; left: 0; right: 0; bottom: 0; top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); background: var(--ink); z-index: 49; overflow: hidden; visibility: hidden; transform: translateX(100%); transition: transform .3s var(--ease), visibility 0s linear .3s; }
.drawer.is-open { visibility: visible; transform: none; transition: transform .3s var(--ease), visibility 0s; }
.drawer__panel { position: absolute; inset: 0; overflow-y: auto; padding: 12px var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px)); background: var(--ink); transition: transform .3s var(--ease); }
.drawer__panel--sub { transform: translateX(100%); }
.drawer__panel--sub.is-active { transform: none; }
.drawer__panel--main.is-away { transform: translateX(-25%); }
.drawer ul { list-style: none; margin: 0; padding: 0; }
.drawer__link { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 16px 2px; border: 0; border-bottom: 1px solid var(--line-ink); background: none; color: #fff; font: 600 1.15rem/1.2 var(--font-body); text-decoration: none; text-align: left; cursor: pointer; }
.drawer__link:hover { color: var(--sky); }
.drawer__link .icon { width: 20px; height: 20px; opacity: .8; }
.drawer__back { display: inline-flex; align-items: center; gap: 8px; padding: 12px 0; background: none; border: 0; color: var(--sky); font: 600 1rem/1 var(--font-body); cursor: pointer; }
.drawer__title { font-family: var(--font-display); font-size: 2rem; color: #fff; margin: 6px 0 8px; }
.drawer__cta { display: grid; gap: 10px; margin-top: 28px; }
.drawer__contact { margin-top: 26px; color: var(--on-ink-muted); font-size: .95rem; }
.drawer__contact a { color: #fff; }
body.no-scroll { overflow: hidden; }

/* ---------- hero (home) ---------- */
.hero { position: relative; isolation: isolate; color: #fff; min-height: clamp(470px, 66vh, 660px); display: grid; place-items: center; text-align: center; overflow: hidden; background: var(--ink); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.07); transition: transform 10s ease-out; }
.hero__slide.is-active img { transform: scale(1); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6, 15, 31, .62) 0%, rgba(6, 15, 31, .38) 42%, rgba(6, 15, 31, .78) 100%); }
.hero__content { max-width: 940px; padding-block: 76px 92px; }
.hero h1 { color: #fff; margin-bottom: .32em; text-shadow: 0 2px 28px rgba(0, 0, 0, .3); }
.hero__sub { font-size: clamp(1.08rem, 1.6vw, 1.32rem); color: #E1EAF5; max-width: 660px; margin: 0 auto 2rem; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__foot { position: absolute; left: 0; right: 0; bottom: 18px; }
.hero__foot .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hero__dots { display: flex; gap: 8px; }
.hero__dots button { width: 34px; height: 20px; border: 0; padding: 8px 0; background: none; cursor: pointer; }
.hero__dots button span { display: block; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .42); transition: background-color .3s; }
.hero__dots button[aria-current="true"] span { background: var(--sky); }
.hero__caption { font-size: .8rem; color: rgba(255, 255, 255, .78); display: inline-flex; align-items: center; gap: 6px; }
.hero__caption .icon { width: 14px; height: 14px; }

/* ---------- stats band ---------- */
.stats { background: var(--ice); }
.stats__inner { display: grid; grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr)); gap: 20px 28px; align-items: start; padding-block: 34px; }
.stats__title { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--ink); line-height: 1.05; margin: 0; }
.stats__title small { display: block; font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--muted); margin-top: 8px; letter-spacing: 0; }
.stat { margin: 0; }
.stat__value { font-family: var(--font-body); font-weight: 600; font-size: clamp(2.1rem, 3.3vw, 2.7rem); color: var(--royal); line-height: 1; letter-spacing: -.02em; }
.stat__label { color: var(--text); margin-top: 8px; font-size: .98rem; line-height: 1.3; }

/* ---------- focus carousel (dark) ---------- */
.carousel { position: relative; }
.carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 28px) / 3.3); gap: 28px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 8px; margin: -4px -2px 0; list-style: none; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__controls { display: flex; gap: 10px; flex: none; }
.round-btn { width: 50px; height: 50px; border-radius: 50%; border: 0; display: grid; place-items: center; background: var(--sky); color: var(--ink); cursor: pointer; transition: background-color .2s, opacity .2s; }
.round-btn:hover { background: #86D5FA; }
.round-btn[disabled] { opacity: .35; cursor: default; }
.round-btn .icon { width: 22px; height: 22px; }
.focus-card { scroll-snap-align: start; }
.focus-card a { color: var(--on-ink); text-decoration: none; display: block; }
.focus-card__media { aspect-ratio: 16 / 9.5; overflow: hidden; border-radius: 4px; background: var(--ink-2); }
.focus-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.focus-card a:hover img { transform: scale(1.045); }
.focus-card__tag { color: var(--sky); font-size: .84rem; margin: 18px 0 6px; font-weight: 500; }
.focus-card h3 { color: #fff; font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-bottom: .35em; }
.focus-card a:hover h3 { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; text-decoration-color: var(--sky); }
.focus-card p { color: var(--on-ink-muted); font-size: .98rem; margin: 0; }

/* ---------- service tiles (outlined type bands) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.svc-card { height: 100%; }
.svc-card a { background: #fff; border-radius: 4px; box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.svc-card a:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); color: inherit; }
.svc-card__band { height: 74px; background: var(--sky); overflow: hidden; position: relative; }
.svc-card__band span { position: absolute; left: 8px; top: -8px; font-family: var(--font-display); font-weight: 700; font-size: 108px; line-height: 1; color: transparent; -webkit-text-stroke: 1.6px rgba(31, 56, 100, .34); white-space: nowrap; letter-spacing: -.01em; transition: transform 1.2s var(--ease); pointer-events: none; }
.svc-card a:hover .svc-card__band span { transform: translateX(-18px); }
.svc-card__band .chip-ai { position: absolute; right: 12px; bottom: 10px; background: var(--ink); color: #fff; }
.svc-card__body { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card h3 { font-size: 1.6rem; margin: 0; }
.svc-card p { color: var(--muted); font-size: .96rem; margin: 0; }
.svc-card .link-arrow { margin-top: auto; padding-top: 6px; }
@supports not (-webkit-text-stroke: 1px black) { .svc-card__band span { color: rgba(31, 56, 100, .12); } }

/* ---------- contained dark CTA bar ---------- */
.cta-bar { background: var(--ink); color: #fff; border-radius: 4px; padding: 22px 30px; display: flex; align-items: center; justify-content: center; gap: 14px 28px; flex-wrap: wrap; text-align: center; }
.cta-bar h2 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); color: #fff; margin: 0; }
.cta-bar p { margin: 0; color: var(--on-ink-muted); }

/* ---------- image cards (industries / people) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; list-style: none; padding: 0; margin: 0; }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.img-card { background: #fff; border-radius: 4px; box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.img-card > a { color: inherit; text-decoration: none; display: flex; flex-direction: column; height: 100%; }
.img-card__media { aspect-ratio: 16 / 9.5; overflow: hidden; background: var(--mist); }
.img-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.img-card a:hover .img-card__media img { transform: scale(1.04); }
.img-card__body { padding: 18px 20px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.img-card h3 { margin: 0; font-size: 1.45rem; }
.img-card p { margin: 0; color: var(--text); font-size: .96rem; }
.img-card .link-arrow { margin-top: auto; padding-top: 8px; }
.img-card__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--ice); color: var(--royal); display: grid; place-items: center; margin-top: -40px; position: relative; box-shadow: 0 0 0 4px #fff; }
.img-card__icon .icon { width: 20px; height: 20px; }

/* ---------- AI band ---------- */
.ai-band { position: relative; overflow: hidden; background: radial-gradient(900px 520px at 85% 15%, #2A5490 0%, rgba(31, 56, 100, 0) 70%), var(--ink); color: var(--on-ink); }
.ai-band canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; pointer-events: none; }
.ai-band .container { position: relative; }
.ai-band__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.ai-band h2 { color: #fff; }
.ai-band .lead { color: #C9D6E8; }
.ai-points { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 16px; }
.ai-points li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.ai-points .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(88, 196, 246, .14); color: var(--sky); display: grid; place-items: center; }
.ai-points .ico .icon { width: 21px; height: 21px; }
.ai-points strong { color: #fff; display: block; }
.ai-points span { color: var(--on-ink-muted); font-size: .96rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.chat-preview { background: #fff; color: var(--text); border-radius: 16px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); overflow: hidden; }
.chat-preview__head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--ink-2); color: #fff; }
.chat-preview__head strong { font-family: var(--font-display); font-size: 1.25rem; }
.chat-preview__head .pill { margin-left: auto; }
.chat-preview__body { padding: 18px; background: var(--mist); display: grid; gap: 10px; }
.chat-preview__foot { padding: 14px 18px; display: flex; gap: 10px; align-items: center; justify-content: space-between; flex-wrap: wrap; border-top: 1px solid var(--line); }
.chat-preview__foot small { color: var(--muted); }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; letter-spacing: .03em; padding: 4px 9px; border-radius: 999px; background: rgba(255, 255, 255, .12); color: #fff; white-space: nowrap; }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }
.pill--live::before { background: #3DDC97; }
.pill--example { background: var(--ice); color: var(--ink); }
.pill--example::before { background: var(--royal); }

/* ---------- chat bubbles (shared by preview + widget) ---------- */
.msg { max-width: 90%; padding: 10px 14px; border-radius: 14px; font-size: .94rem; line-height: 1.5; overflow-wrap: anywhere; }
.msg p { margin: 0 0 .5em; }
.msg p:last-child { margin-bottom: 0; }
.msg ul { margin: .35em 0 .5em; padding-left: 1.15em; }
.msg li { margin: .15em 0; }
.msg--bot { background: #fff; border: 1px solid var(--line); border-top-left-radius: 4px; justify-self: start; align-self: flex-start; }
.msg--user { background: var(--royal); color: #fff; border-top-right-radius: 4px; justify-self: end; align-self: flex-end; }
.msg--user a { color: #fff; }
.msg__links { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.msg__links a { font-size: .8rem; font-weight: 600; text-decoration: none; padding: 4px 10px; border-radius: 999px; background: var(--ice); color: var(--royal); display: inline-flex; align-items: center; gap: 4px; }
.msg__links a:hover { background: #d2ebfb; }
.msg__meta { margin-top: 6px; font-size: .72rem; color: var(--muted); }

/* ---------- profile / reach bands ---------- */
.reach { background: var(--ink); color: var(--on-ink); }
.reach__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.reach h2 { color: #fff; }
.reach__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.reach__list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; }
.reach__list .icon { color: var(--sky); margin-top: 3px; width: 20px; height: 20px; }
.reach__list strong { color: #fff; }
.presence-map { width: 100%; height: auto; overflow: visible; }
.presence-map .ridge { fill: none; stroke: rgba(191, 233, 255, .32); stroke-width: 2; stroke-linejoin: round; }
.presence-map .route { fill: none; stroke: rgba(88, 196, 246, .7); stroke-width: 3; stroke-linejoin: round; }
.presence-map .route--intl { stroke-dasharray: 8 9; stroke: rgba(191, 233, 255, .55); }
.presence-map .node { fill: var(--sky); stroke: var(--ink); stroke-width: 4; }
.presence-map .node--hq { fill: #fff; }
.presence-map .halo { fill: rgba(88, 196, 246, .18); }
.presence-map text { fill: #fff; font: 600 23px var(--font-body); }
.presence-map .sub { fill: var(--on-ink-muted); font-weight: 400; font-size: 18px; }

.big-cta { background: var(--ink); color: var(--on-ink); text-align: center; border-top: 1px solid var(--line-ink); }
.big-cta h2 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.8rem); margin-bottom: .2em; }
.big-cta p { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); color: #D7E2F0; margin-bottom: 1.4em; font-weight: 600; }
.big-cta .btn-row { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--on-ink); border-top: 1px solid var(--line-ink); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.35fr); gap: 36px; padding-block: 52px 40px; }
.footer__col h2 { font-family: var(--font-body); color: #fff; font-size: .95rem; font-weight: 700; letter-spacing: 0; margin-bottom: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a { color: var(--on-ink); text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--sky); text-decoration: underline; }
.footer__brand p { font-size: .92rem; color: var(--on-ink-muted); margin-top: 16px; max-width: 34ch; }
.footer__tagline { font-family: var(--font-brand); font-size: 1.6rem; color: #fff; font-weight: 700; line-height: 1.05; margin: 18px 0 0; }
.footer__contact li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: .92rem; color: var(--on-ink); }
.footer__contact .icon { width: 17px; height: 17px; color: var(--sky); margin-top: 3px; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); }
.social a:hover { background: var(--sky); color: var(--ink); text-decoration: none; }
.social .icon { width: 18px; height: 18px; }
.footer__assoc { border-top: 1px solid var(--line-ink); padding-block: 16px; font-size: .85rem; color: var(--on-ink-muted); }
.footer__bottom { border-top: 1px solid var(--line-ink); padding-block: 18px calc(18px + env(safe-area-inset-bottom, 0px)); font-size: .82rem; color: var(--on-ink-muted); display: flex; justify-content: space-between; gap: 10px 20px; flex-wrap: wrap; }
.footer__bottom ul { list-style: none; display: flex; gap: 18px; padding: 0; margin: 0; flex-wrap: wrap; }
.footer__bottom a { font-size: .82rem; color: var(--on-ink-muted); }

/* ---------- featured service tile (DDB AI & Automation) ---------- */
.feature-tile { margin-bottom: 20px; }
.feature-tile a { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); background: var(--ink); color: var(--on-ink); border-radius: 4px; overflow: hidden; text-decoration: none; box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.feature-tile a:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); color: var(--on-ink); }
.feature-tile__body { padding: clamp(24px, 3.4vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.feature-tile h3 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 0; }
.feature-tile p { color: #C9D6E8; margin: 0; max-width: 52ch; }
.feature-tile ul { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.feature-tile li { display: inline-flex; align-items: center; gap: 7px; font-size: .92rem; color: #fff; }
.feature-tile li .icon { width: 17px; height: 17px; color: var(--sky); }
.feature-tile .link-arrow { color: var(--sky); margin-top: 8px; }
.feature-tile__media { position: relative; min-height: 240px; }
.feature-tile__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-tile__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(31, 56, 100, 0) 38%); }

/* ---------- inner page hero ---------- */
.page-hero { position: relative; isolation: isolate; color: #fff; background: var(--ink); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; margin: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6, 15, 31, .9) 0%, rgba(6, 15, 31, .72) 48%, rgba(6, 15, 31, .28) 100%); }
.page-hero__inner { padding-block: clamp(56px, 8.5vw, 112px); max-width: 780px; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 4.8vw, 3.9rem); margin-bottom: .3em; }
.page-hero p { color: #DCE6F2; font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 640px; }
.page-hero .btn-row { margin-top: 26px; }
.breadcrumb { margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: .86rem; color: #C4D2E6; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: rgba(255, 255, 255, .4); }
.breadcrumb a { color: #C4D2E6; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.page-hero--plain { background: var(--ink); }
.page-hero--plain::after { display: none; }

/* ---------- service detail ---------- */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.detail__main > section + section { margin-top: clamp(40px, 5vw, 56px); }
.detail__main h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.aside-card { position: sticky; top: calc(var(--header-h) + 24px); background: var(--mist); border-radius: 10px; padding: 26px; display: grid; gap: 14px; }
.aside-card h2 { font-size: 1.6rem; margin: 0; }
.aside-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.aside-card .btn { width: 100%; }
.aside-card hr { border: 0; border-top: 1px solid var(--line); margin: 6px 0; width: 100%; }
.aside-card .contact-lines { display: grid; gap: 8px; font-size: .93rem; }
.aside-card .contact-lines a { display: inline-flex; gap: 8px; align-items: center; text-decoration: none; color: var(--text); }
.aside-card .contact-lines .icon { width: 17px; height: 17px; color: var(--royal); }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 12px; align-items: start; }
.tick { width: 30px; height: 30px; border-radius: 50%; background: var(--ice); color: var(--royal); display: grid; place-items: center; }
.tick .icon { width: 16px; height: 16px; }
.callout { border-left: 3px solid var(--sky); background: var(--mist); padding: 16px 20px; border-radius: 0 8px 8px 0; }
.callout p { margin: 0; }
.note { font-size: .88rem; color: var(--muted); }
.ai-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; list-style: none; padding: 0; margin: 0; }
.ai-step { background: var(--ink); color: var(--on-ink); border-radius: 10px; padding: 20px 22px; }
.ai-step h3, .ai-step h4 { color: var(--sky); font-size: 1.3rem; margin-bottom: .35em; }
.ai-step p { margin: 0; font-size: .95rem; color: #C9D6E8; }
.related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 44px 18px 0; font-weight: 600; font-size: 1.04rem; position: relative; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; border-right: 2px solid var(--royal); border-bottom: 2px solid var(--royal); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { margin: 0; padding: 0 0 20px; color: var(--muted); max-width: 70ch; }
.section--ink .faq, .section--ink .faq details { border-color: var(--line-ink); }
.section--ink .faq summary { color: #fff; }
.section--ink .faq details p { color: var(--on-ink-muted); }

/* ---------- features / principles ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; list-style: none; padding: 0; margin: 0; }
.feature-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px; height: 100%; }
.section--mist .feature, .section--ice .feature { border-color: transparent; box-shadow: var(--shadow-sm); }
.feature__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--ice); color: var(--royal); display: grid; place-items: center; margin-bottom: 16px; }
.feature__icon .icon { width: 24px; height: 24px; }
.feature h3, .feature h4 { font-size: 1.45rem; margin-bottom: .35em; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }
.feature__ai { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: .88rem; color: var(--text); display: grid; grid-template-columns: 18px 1fr; gap: 8px; }
.feature__ai .icon { width: 16px; height: 16px; color: var(--royal); margin-top: 3px; }
.section--ink .feature { background: var(--ink-2); border-color: var(--line-ink); }
.section--ink .feature p { color: var(--on-ink-muted); }
.section--ink .feature__icon { background: rgba(88, 196, 246, .14); color: var(--sky); }

/* numbered process (a true sequence) */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; counter-reset: step; position: relative; }
.steps li { counter-increment: step; position: relative; padding: 0 22px 0 0; }
.steps li::before { content: counter(step, decimal-leading-zero); display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--sky); color: var(--ink); font: 700 1.2rem/1 var(--font-display); position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--ink); }
.steps li::after { content: ""; position: absolute; top: 27px; left: 54px; right: 0; height: 2px; background: linear-gradient(90deg, var(--sky), rgba(88, 196, 246, .15)); }
.steps li:last-child::after { display: none; }
.steps h3 { color: #fff; font-size: 1.35rem; margin: 18px 0 .4em; }
.steps p { color: var(--on-ink-muted); font-size: .95rem; margin: 0; }
.steps .icon { position: absolute; left: 70px; top: 15px; width: 24px; height: 24px; color: var(--sky); opacity: .9; }

/* AI vs people table */
.split-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.split-table th { text-align: left; font: 700 1.25rem/1.1 var(--font-display); padding: 18px 22px; }
.split-table thead th:first-child { background: var(--ink); color: #fff; }
.split-table thead th:last-child { background: var(--sky); color: var(--ink); }
.split-table th .icon { width: 20px; height: 20px; vertical-align: -3px; margin-right: 8px; }
.split-table td { padding: 15px 22px; border-top: 1px solid var(--line); vertical-align: top; font-size: .97rem; width: 50%; }
.split-table td:first-child { border-right: 1px solid var(--line); }
.table-wrap { overflow-x: auto; }

/* ---------- WhatsApp / Viber links beside a number ---------- */
.chat-links { display: inline-flex; gap: 6px; margin-left: 8px; vertical-align: middle; }
.chat-links a { font: 600 .72rem/1 var(--font-body); letter-spacing: .02em; padding: 4px 8px; border-radius: 999px; text-decoration: none; white-space: nowrap; }
.chat-links a:first-child { background: #E6F6EC; color: #11704A; }
.chat-links a:last-child { background: #EFE8FA; color: #5B3BA6; }
.chat-links a:hover { filter: brightness(.96); }
.site-footer .chat-links a:first-child { background: rgba(37, 211, 102, .18); color: #9BE7BE; }
.site-footer .chat-links a:last-child { background: rgba(127, 83, 197, .22); color: #CDBBF2; }
.footer__contact li { align-items: flex-start; }

/* ---------- tabs ---------- */
.tabs { margin: 0 0 8px; }
.tabs__list { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; border-bottom: 2px solid var(--line); margin-bottom: 26px; }
.tabs__list::-webkit-scrollbar { display: none; }
.tabs__tab { flex: none; appearance: none; background: none; border: 0; border-bottom: 3px solid transparent; margin-bottom: -2px; padding: 12px 16px; font: 600 1rem/1.2 var(--font-body); color: var(--muted); cursor: pointer; white-space: nowrap; transition: color .18s var(--ease), border-color .18s var(--ease); }
.tabs__tab:hover { color: var(--ink); }
.tabs__tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--royal); }
.tabs__tab:focus-visible { outline: 2px solid var(--royal); outline-offset: -3px; border-radius: 4px 4px 0 0; }
.tabs__panel { animation: tab-in .22s var(--ease); }
.tabs__panel:focus { outline: none; }
.tabs__panel:focus-visible { outline: 2px solid var(--royal); outline-offset: 6px; border-radius: 6px; }
.tabs__panel > :first-child { margin-top: 0; }
.tabs.is-ready .tabs__heading { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.tabs:not(.is-ready) .tabs__panel + .tabs__panel { margin-top: 32px; }
.tabs__heading { font-size: 1.55rem; margin: 0 0 14px; }
@keyframes tab-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .tabs__panel { animation: none; } }
@media (max-width: 600px) { .tabs__tab { padding: 11px 13px; font-size: .94rem; } }

/* ---------- country desks (AI page) ---------- */
.desk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; list-style: none; margin: 0; padding: 0; }
.desk { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--royal); border-radius: 12px; padding: 24px 26px; box-shadow: var(--shadow-sm); }
.desk__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.desk__head h3 { margin: 0; font-size: 1.5rem; }
.desk__flag { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--ice); color: var(--royal); flex: none; }
.desk__flag .icon { width: 18px; height: 18px; }
.desk__clock { margin-left: auto; font: 600 .82rem/1 var(--font-body); color: var(--muted); background: var(--mist); border-radius: 999px; padding: 7px 12px; white-space: nowrap; }
.desk p { margin: 0 0 10px; }
.desk__tools { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); margin: 14px 0 0 !important; }
.desk__tools .icon { width: 16px; height: 16px; color: var(--royal); flex: none; }
.desk__note { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0 0; font-size: .95rem; color: var(--muted); }
.desk__note .icon { width: 18px; height: 18px; color: var(--ok); flex: none; margin-top: 3px; }

/* ---------- leadership & bench ---------- */
.leaders { display: grid; gap: 24px; }
.leader { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 32px; align-items: start; background: #fff; border-radius: 12px; padding: 30px; box-shadow: var(--shadow-sm); }
.leader__photo { width: 210px; aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--ice); box-shadow: 0 0 0 6px var(--ice); margin: 6px; }
.leader__photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.leader h3 { margin: 0; font-size: 2rem; }
.leader__role { color: var(--royal); font-weight: 600; margin: 4px 0 12px; }
.leader__extra { color: var(--muted); font-size: .96rem; margin: 10px 0 0; }
.leader__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; margin: 12px 0 14px; }
.leader__li { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 600; color: var(--royal); text-decoration: none; }
.leader__li:hover { text-decoration: underline; }
.leader__li .icon { width: 16px; height: 16px; }
.leader__prev { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); margin: 0; }
.leader__prev .icon { width: 16px; height: 16px; color: var(--royal); }
.leader-mini { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.leader-mini a { display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: center; background: #fff; border-radius: 10px; padding: 16px; box-shadow: var(--shadow-sm); text-decoration: none; color: var(--text); }
.leader-mini img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; }
.leader-mini strong { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); line-height: 1.1; }
.leader-mini span { color: var(--muted); font-size: .9rem; }

.kpi-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0; }
.kpi { background: #fff; border-radius: 10px; padding: 18px; box-shadow: var(--shadow-sm); }
.kpi__value { font-family: var(--font-body); font-weight: 600; font-size: 2.2rem; line-height: 1; color: var(--ink); }
.kpi__label { font-size: .9rem; color: var(--muted); margin-top: 8px; line-height: 1.3; }

.viz { background: #fff; border-radius: 12px; padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-sm); position: relative; }
.viz__title { font: 700 1.35rem/1.15 var(--font-display); color: var(--ink); margin: 0 0 4px; }
.viz__sub { font-size: .9rem; color: var(--muted); margin: 0 0 22px; }
.bars { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.bar { display: grid; grid-template-columns: minmax(150px, 290px) minmax(0, 1fr); gap: 16px; align-items: center; }
.bar__label { font-size: .95rem; color: var(--text); line-height: 1.25; }
.bar__plot { position: relative; height: 32px; display: flex; align-items: center; border-left: 1px solid #C9D3E0; cursor: default; }
.bar__plot:focus-visible { outline-offset: 4px; }
.bar__fill { height: 18px; width: var(--w); background: var(--royal); border-radius: 0 4px 4px 0; transition: filter .15s; }
.bar__plot:hover .bar__fill, .bar__plot:focus-visible .bar__fill { filter: brightness(1.15); }
.bar__value { margin-left: 10px; font-weight: 600; font-size: .95rem; color: var(--text); }
.viz__tip { position: absolute; pointer-events: none; background: var(--ink); color: #fff; border-radius: 8px; padding: 8px 12px; font-size: .85rem; box-shadow: var(--shadow-md); transform: translate(-50%, calc(-100% - 10px)); white-space: nowrap; z-index: 2; }
.viz__tip strong { display: block; font-size: 1.05rem; }
.viz__tip span { color: var(--on-ink-muted); }
.viz details { margin-top: 18px; font-size: .9rem; }
.viz summary { cursor: pointer; color: var(--royal); font-weight: 600; }
.data-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: .92rem; }
.data-table th, .data-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.data-table td:last-child, .data-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.specialisms { columns: 2; column-gap: 28px; padding-left: 1.1em; margin: 0; }
.specialisms li { break-inside: avoid; margin: 0 0 8px; }

/* ---------- contact & forms ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field label, .field .label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.field .req { color: var(--crimson); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1px solid var(--field); border-radius: 8px; background: #fff; color: var(--text); transition: border-color .15s, box-shadow .15s; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(31, 94, 216, .18); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--bad); }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 5px; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.check { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: .9rem; color: var(--muted); }
.check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--royal); }
.form-status { padding: 14px 16px; border-radius: 8px; font-size: .95rem; }
.form-status--ok { background: var(--ok-bg); color: var(--ok); }
.form-status--err { background: var(--bad-bg); color: var(--bad); }
.office { background: var(--mist); border-radius: 12px; padding: 24px; }
.office + .office { margin-top: 16px; }
.office h3 { font-size: 1.4rem; margin-bottom: .4em; }
.office address { font-style: normal; }
.office ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.office li a, .office li span { display: inline-flex; gap: 9px; align-items: center; color: var(--text); text-decoration: none; }
.office li a:hover { color: var(--royal); }
.office .icon { width: 18px; height: 18px; color: var(--royal); }
.map-embed { margin-top: 16px; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); display: grid; place-items: center; text-align: center; color: #fff; position: relative; }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-embed p { color: var(--on-ink-muted); font-size: .88rem; margin: 10px 18px 14px; }
.branch-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

/* ---------- brief builder ---------- */
.brief { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
.brief__form { background: #fff; border-radius: 12px; padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.brief__form fieldset { border: 0; padding: 0; margin: 0 0 22px; min-width: 0; }
.brief__form legend { font-weight: 700; color: var(--ink); margin-bottom: 10px; padding: 0; font-size: 1rem; }
.brief__form .field { margin-bottom: 18px; }
.opt-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.opt span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1.5px solid var(--field); border-radius: 999px; font-size: .9rem; background: #fff; color: var(--text); transition: background-color .15s, border-color .15s, color .15s; user-select: none; }
.opt input:hover + span { border-color: var(--royal); }
.opt input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.opt input:checked + span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }
.opt input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 2px; }
.brief__out { position: sticky; top: calc(var(--header-h) + 20px); background: var(--ink); color: var(--on-ink); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.brief__out-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 22px; background: var(--ink-2); border-bottom: 1px solid var(--line-ink); }
.brief__out-head strong { font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
.brief__doc { padding: 20px 22px; max-height: min(64vh, 620px); overflow-y: auto; font-size: .93rem; }
.brief__doc h3 { color: #fff; font-size: 1.45rem; margin-bottom: .2em; }
.brief__doc h4 { color: var(--sky); font: 700 .78rem/1.2 var(--font-body); letter-spacing: .1em; text-transform: uppercase; margin: 18px 0 6px; }
.brief__doc ul { margin: 0; padding-left: 1.1em; color: #D5E0EE; }
.brief__doc li { margin: 3px 0; }
.brief__doc p { color: #D5E0EE; margin: 0 0 6px; }
.brief__doc .ai-text { white-space: pre-wrap; }
.brief__actions { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 22px 20px; border-top: 1px solid var(--line-ink); }
.brief__actions .btn { min-height: 38px; padding: .45rem 1rem; font-size: .9rem; }
.brief__status { padding: 0 22px 16px; font-size: .85rem; color: var(--sky); min-height: 1em; }

/* ---------- time-zone overlap ---------- */
.tz { background: #fff; border-radius: 12px; padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow-sm); }
.tz__controls { display: flex; flex-wrap: wrap; align-items: end; gap: 14px 20px; margin-bottom: 20px; }
.tz__controls .field { min-width: 240px; margin: 0; }
.tz__summary { font-size: 1rem; color: var(--text); margin: 0; }
.tz__summary strong { color: var(--royal); }
.tz__rows { display: grid; gap: 14px; }
.tz__row { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 14px; align-items: center; }
.tz__name { font-weight: 600; font-size: .92rem; }
.tz__name small { display: block; font-weight: 400; color: var(--muted); }
.tz__track { position: relative; height: 30px; background: var(--mist); border-radius: 6px; overflow: hidden; }
.tz__block { position: absolute; top: 5px; bottom: 5px; border-radius: 4px; }
.tz__block--ktm { background: var(--ink); }
.tz__block--client { background: var(--sky); }
.tz__block--overlap { background: repeating-linear-gradient(45deg, rgba(31, 94, 216, .55) 0 5px, rgba(31, 94, 216, .25) 5px 10px); top: 0; bottom: 0; border-radius: 0; }
.tz__axis { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 14px; }
.tz__ticks { position: relative; height: 18px; font-size: .75rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.tz__ticks span { position: absolute; transform: translateX(-50%); }
.tz__legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; font-size: .85rem; color: var(--muted); }
.tz__legend span { display: inline-flex; align-items: center; gap: 6px; }
.tz__legend i { width: 16px; height: 10px; border-radius: 2px; display: inline-block; }

/* ---------- AI assistant widget ---------- */
.assist-launch { position: fixed; right: max(16px, env(safe-area-inset-right, 0px)); bottom: max(16px, env(safe-area-inset-bottom, 0px)); z-index: 60; display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px 8px 8px; border-radius: 999px; background: var(--ink); color: #fff; border: 1px solid rgba(255, 255, 255, .16); box-shadow: 0 16px 36px -12px rgba(8, 18, 36, .6); cursor: pointer; font: 600 .95rem/1 var(--font-body); transition: transform .2s var(--ease), box-shadow .2s; }
.assist-launch:hover { transform: translateY(-2px); }
.assist-launch .orb { width: 38px; height: 38px; }
.assist-launch .orb::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(88, 196, 246, .5); animation: orb-pulse 2.8s ease-out infinite; }
.assist-launch .orb .icon { width: 19px; height: 19px; }
@keyframes orb-pulse { 0% { transform: scale(.9); opacity: .9; } 80%, 100% { transform: scale(1.35); opacity: 0; } }
.assist-launch[hidden] { display: none; }
.assist { position: fixed; right: max(16px, env(safe-area-inset-right, 0px)); bottom: max(16px, env(safe-area-inset-bottom, 0px)); z-index: 61; width: min(410px, calc(100vw - 32px)); height: min(660px, calc(100dvh - 32px)); background: #fff; border-radius: 18px; box-shadow: 0 34px 90px -24px rgba(8, 18, 36, .6); display: flex; flex-direction: column; overflow: hidden; animation: assist-in .22s var(--ease); }
@keyframes assist-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.assist[hidden] { display: none; }
.assist__head { display: flex; align-items: center; gap: 11px; padding: 14px 12px 14px 16px; background: var(--ink); color: #fff; }
.assist__head .orb { width: 36px; height: 36px; }
.assist__title { line-height: 1.15; }
.assist__title strong { display: block; font: 700 1.3rem/1 var(--font-display); }
.assist__title span { font-size: .75rem; color: var(--on-ink-muted); }
.assist__head .pill { margin-left: auto; }
.assist__head .icon-btn { width: 38px; height: 38px; }
.assist__log { flex: 1; overflow-y: auto; padding: 16px; background: var(--mist); display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth; }
.assist__suggest { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 14px 4px; background: #fff; border-top: 1px solid var(--line); }
.assist__suggest button { border: 1px solid var(--field); background: #fff; color: var(--text); border-radius: 999px; padding: 6px 11px; font: 500 .8rem/1.2 var(--font-body); cursor: pointer; text-align: left; }
.assist__suggest button:hover { border-color: var(--royal); color: var(--royal); }
.assist__form { display: flex; gap: 8px; align-items: flex-end; padding: 10px 12px 8px; background: #fff; }
.assist__form textarea { flex: 1; resize: none; max-height: 120px; min-height: 44px; font: inherit; font-size: .95rem; padding: 11px 14px; border: 1px solid var(--field); border-radius: 22px; line-height: 1.4; color: var(--text); }
.assist__form textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(31, 94, 216, .15); }
.assist__send { width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--royal); color: #fff; display: grid; place-items: center; cursor: pointer; flex: none; }
.assist__send:hover { background: var(--royal-dark); }
.assist__send[disabled] { opacity: .5; cursor: default; }
.assist__send .icon { width: 19px; height: 19px; }
.assist__foot { padding: 2px 16px 12px; background: #fff; font-size: .7rem; color: var(--muted); line-height: 1.35; }
.assist__foot a { color: var(--muted); }
.typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: typing 1.2s infinite ease-in-out; }
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 80%, 100% { opacity: .25; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
.lead-form { display: grid; gap: 8px; margin-top: 8px; }
.lead-form input, .lead-form textarea { font: inherit; font-size: .88rem; padding: 8px 10px; border: 1px solid var(--field); border-radius: 8px; width: 100%; }
.lead-form textarea { min-height: 70px; resize: vertical; }
.lead-form .btn { justify-self: start; }

/* ---------- search overlay ---------- */
.search { position: fixed; inset: 0; z-index: 70; background: rgba(6, 15, 31, .74); backdrop-filter: blur(3px); padding: max(10vh, 24px) 16px 24px; overflow-y: auto; }
.search[hidden] { display: none; }
.search__box { width: min(760px, 100%); margin: 0 auto; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6); }
.search__bar { display: flex; align-items: center; gap: 10px; padding: 8px 10px 8px 20px; border-bottom: 1px solid var(--line); }
.search__bar .icon { width: 22px; height: 22px; color: var(--muted); }
.search__bar input { flex: 1; border: 0; font: inherit; font-size: 1.2rem; padding: 14px 4px; color: var(--text); min-width: 0; }
.search__bar input:focus { outline: none; }
.search__bar .icon-btn { color: var(--text); }
.search__bar .icon-btn:hover { background: var(--mist); }
.search__results { list-style: none; margin: 0; padding: 8px; max-height: 56vh; overflow-y: auto; }
.search__results a { display: block; padding: 12px 14px; border-radius: 10px; text-decoration: none; color: var(--text); }
.search__results a:hover, .search__results a:focus-visible { background: var(--mist); }
.search__results strong { display: block; color: var(--ink); font-size: 1rem; }
.search__results span { font-size: .88rem; color: var(--muted); display: block; margin-top: 2px; }
.search__results em { font-style: normal; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--royal); }
.search__empty { padding: 18px 20px; color: var(--muted); }
.search__ask { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; background: var(--mist); border-top: 1px solid var(--line); flex-wrap: wrap; }
.search__ask span { font-size: .9rem; color: var(--muted); }

/* ---------- misc ---------- */
.legal h2 { font-size: 1.7rem; margin-top: 1.6em; }
.legal li { margin-bottom: .4em; }
.credits { columns: 2; column-gap: 32px; padding-left: 1.1em; }
.credits li { break-inside: avoid; margin-bottom: 6px; font-size: .95rem; }
.not-found { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.assoc-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px; }
.assoc-card h3 { margin-bottom: .2em; }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .nav, .header-actions .btn--contact { display: none; }
  .menu-btn { display: inline-grid; }
  .header-actions { margin-left: auto; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .steps li:nth-child(2)::after { display: none; }
}
@media (max-width: 1000px) {
  .stats__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats__title { grid-column: 1 / -1; }
  .carousel__track { grid-auto-columns: calc((100% - 28px) / 2.2); }
  .svc-grid, .card-grid, .feature-grid, .related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid--4, .feature-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ai-band__grid, .reach__grid, .grid-2, .contact-grid, .brief { grid-template-columns: minmax(0, 1fr); }
  .detail { grid-template-columns: minmax(0, 1fr); }
  .aside-card, .brief__out { position: static; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kpi-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-tile a { grid-template-columns: minmax(0, 1fr); }
  .feature-tile__media { min-height: 200px; order: -1; }
  .feature-tile__media::after { background: linear-gradient(0deg, var(--ink) 0%, rgba(31, 56, 100, 0) 55%); }
  .leader-mini { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 700px) {
  :root { --header-h: 66px; }
  .brand img { width: 36px; height: 36px; }
  .brand__name { font-size: 1.5rem; }
  .brand__sub { font-size: .52rem; letter-spacing: .2em; }
  .ai-btn span.label { display: none; }
  .ai-btn { padding: 0 6px; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .carousel__track { grid-auto-columns: 84%; gap: 18px; }
  .svc-grid, .card-grid, .card-grid--4, .feature-grid, .feature-grid--4, .feature-grid--2, .related, .ai-steps, .form-row { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .steps li::after { display: none; }
  .leader { grid-template-columns: minmax(0, 1fr); padding: 22px; }
  .leader__photo { width: 160px; }
  .kpi-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bar { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .specialisms, .credits { columns: 1; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .tz__row, .tz__axis { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .tz__axis > span:first-child { display: none; }
  .split-table th, .split-table td { padding: 12px 14px; }
  .hero__caption { display: none; }
  .cta-bar { padding: 22px; }
  .assist-launch { padding: 7px; }
  .assist-launch .label { display: none; }
}
@media (max-width: 520px) {
  .assist { right: 0; bottom: 0; width: 100vw; height: 100dvh; border-radius: 0; padding-top: env(safe-area-inset-top, 0px); }
}
@media print {
  .site-header, .announce, .assist, .assist-launch, .search, .site-footer, .big-cta, .hero__foot { display: none !important; }
  .section--ink, .page-hero, .reach { background: #fff !important; color: #000 !important; }
  a { color: #000; }
}
.dropdown__links--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dropdown__links .ico--ink { background: var(--ink); color: var(--sky); }
.eyebrow--sky { color: var(--sky); }
.dropdown__feature .eyebrow { margin-bottom: 0; }
.feature-tile .chip-ai { align-self: flex-start; }
.stat__label { display: block; }
.tz__legend-overlap { background: repeating-linear-gradient(45deg, rgba(31, 94, 216, .55) 0 5px, rgba(31, 94, 216, .25) 5px 10px); }
.assist-nudge { position: fixed; right: max(16px, env(safe-area-inset-right, 0px)); bottom: calc(max(16px, env(safe-area-inset-bottom, 0px)) + 66px); z-index: 59; display: flex; align-items: flex-start; gap: 4px; max-width: 280px; background: #fff; color: var(--text); border-radius: 14px 14px 4px 14px; box-shadow: var(--shadow-md); padding: 4px 4px 4px 0; animation: assist-in .3s var(--ease); }
.assist-nudge__text { border: 0; background: none; text-align: left; font: 500 .9rem/1.4 var(--font-body); color: var(--text); padding: 10px 4px 10px 14px; cursor: pointer; }
.assist-nudge__close { border: 0; background: none; font-size: 1.2rem; line-height: 1; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; color: var(--muted); }
.assist-nudge__close:hover { background: var(--mist); }
.ai-band .eyebrow, .reach .eyebrow, .big-cta .eyebrow { color: var(--sky); }
.focus-card .focus-card__tag { color: var(--sky); }
.footer__brand .footer__tagline { font-family: var(--font-brand); font-size: 1.6rem; color: #fff; font-weight: 700; line-height: 1.05; margin: 18px 0 0; }
.map-embed > div > .icon { width: 34px; height: 34px; color: var(--sky); }
.office .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.office .chips .chip { background: #fff; }
.office .chips .icon { width: 15px; height: 15px; }
.section-head .eyebrow { color: var(--royal); margin-bottom: .7rem; }
.section--ink .section-head .eyebrow, .ai-band .section-head .eyebrow, .reach .section-head .eyebrow { color: var(--sky); }
.dropdown__feature .link-arrow { color: var(--sky); }
.search__bar input::-webkit-search-cancel-button, .search__bar input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
body.no-scroll .assist-launch, body.no-scroll .assist-nudge { display: none; }
@media (max-width: 420px) { .assist__title span { display: none; } }
.brief__out-head { flex-wrap: wrap; }
.brief__out-head strong { white-space: nowrap; }
@media (max-width: 700px) {
  .tz__ticks .minor { display: none; }
  .kpi-row .kpi:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
