/* ==========================================================================
   City Integrated Services — design system & components
   Style: "Trust & Authority" corporate · navy + amber accent
   All colours / spacing are tokens — change once, updates everywhere.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand palette */
  --navy-950: #081426;
  --navy-900: #0A1A2F;
  --navy-800: #0F2A4A;
  --navy-700: #143A66;
  --navy-600: #1B4A82;
  --blue-600: #1257A6;
  --blue-500: #1A6BC7;
  --blue-400: #3B86D9;
  --blue-100: #DCEAF9;
  --blue-50:  #EEF5FC;
  --amber-500: #F2A516;
  --amber-600: #D98C0C;
  --amber-100: #FDF0D5;
  --teal-600: #0F8B6E;
  --teal-100: #D9F2EA;
  --red-600: #C8332B;
  --red-100: #FBE3E1;
  --wa: #25D366;
  /* rgb triplets for translucent overlays (keep in sync with the hex values above) */
  --navy-950-rgb: 8, 20, 38;
  --navy-900-rgb: 10, 26, 47;
  --navy-800-rgb: 15, 42, 74;
  --navy-700-rgb: 20, 58, 102;
  --navy-600-rgb: 27, 74, 130;
  --blue-500-rgb: 26, 107, 199;
  --amber-500-rgb: 242, 165, 22;
  --teal-600-rgb: 15, 139, 110;
  --teal-light-rgb: 61, 219, 176;
  /* derived tints / dark text on tinted backgrounds */
  --accent-light: #FBD58A;      /* accent text/icons on dark backgrounds */
  --accent-light-2: #F6D89A;    /* callout border */
  --accent-text-dark: #8A5A05;  /* text on amber-100 */
  --accent-text-darker: #5C3D04;
  --accent-text-mid: #B8730A;
  --teal-light: #7BE0C4;
  --teal-light-2: #3DDBB0;
  --teal-text-dark: #0B6B55;
  --teal-text-darker: #0B5F4B;
  --red-text-dark: #8F1F19;
  /* logo mark (inline SVG in header/footer) */
  --logo-mark: var(--navy-800);
  --logo-accent: var(--amber-500);

  /* neutrals */
  --ink-900: #0B1526;
  --ink-800: #1B2637;
  --ink-700: #2A3648;
  --ink-600: #46536A;
  --ink-500: #5F6B80;
  --ink-400: #8792A6;
  --line: #E3E8F0;
  --line-strong: #CBD4E1;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FC;
  --bg-muted: #EDF2F8;
  --white: #FFFFFF;

  /* semantic */
  --color-primary: var(--navy-800);
  --color-primary-hover: var(--navy-700);
  --color-accent: var(--amber-500);
  --color-accent-hover: var(--amber-600);
  --color-link: var(--blue-600);
  --color-text: var(--ink-700);
  --color-heading: var(--ink-900);

  /* shape & elevation */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(var(--navy-900-rgb), .06), 0 1px 3px rgba(var(--navy-900-rgb), .05);
  --shadow: 0 10px 28px -10px rgba(var(--navy-900-rgb), .18), 0 2px 6px rgba(var(--navy-900-rgb), .05);
  --shadow-lg: 0 28px 56px -18px rgba(var(--navy-900-rgb), .32);
  --ring: 0 0 0 3px rgba(var(--blue-500-rgb), .28);

  /* type */
  --font-head: 'Lexend', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* layout */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --header-h: 76px;
  --topbar-h: 38px;

  /* motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: .22s;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--blue-500); }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; color: var(--ink-800); }
small { font-size: .875em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--color-heading);
  line-height: 1.15;
  margin: 0 0 .75rem;
  letter-spacing: -.012em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.3rem + 2.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.005em; }
h4 { font-size: 1.05rem; font-weight: 600; }
.lead { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); color: var(--ink-600); line-height: 1.6; }
.muted { color: var(--ink-500); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0 !important; }
.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; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 2 * var(--gutter)); margin-inline: auto; }

.ico { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--navy-900); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; transition: top .15s;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- 3. Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600);
  margin: 0 0 .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--amber-500); }
.eyebrow--light { color: var(--accent-light); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; padding: .3rem .7rem; border-radius: var(--radius-pill);
  background: var(--blue-50); color: var(--blue-600); line-height: 1.2;
}
.pill--live { background: rgba(var(--teal-600-rgb), .14); color: var(--teal-light); }
.pill--live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-light-2); box-shadow: 0 0 0 4px rgba(var(--teal-light-rgb), .2); }
.pill--amber { background: var(--amber-100); color: var(--accent-text-dark); }
.pill--teal { background: var(--teal-100); color: var(--teal-text-dark); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.4rem; border-radius: 10px; border: 1.5px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  min-height: 44px;
}
.btn .ico { width: 1.1em; height: 1.1em; transition: transform var(--dur) var(--ease); }
.btn:hover .ico:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; box-shadow: var(--shadow); }
.btn--accent { background: var(--color-accent); color: var(--navy-900); }
.btn--accent:hover { background: var(--color-accent-hover); color: var(--navy-900); box-shadow: 0 10px 24px -10px rgba(var(--amber-500-rgb), .6); }
.btn--outline { background: transparent; color: var(--ink-800); border-color: var(--line-strong); }
.btn--outline:hover { background: var(--bg-soft); color: var(--navy-800); border-color: var(--navy-800); }
.btn--ghost { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { background: var(--blue-50); color: var(--navy-800); }
.btn--sm { padding: .6rem 1.05rem; font-size: .92rem; min-height: 40px; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }

/* ---------- 5. Top bar ---------- */
.topbar { background: var(--navy-950); color: rgba(255, 255, 255, .78); font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--topbar-h); }
.topbar__group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; color: inherit; white-space: nowrap; }
.topbar__item .ico { width: 1em; height: 1em; color: var(--amber-500); }
a.topbar__item:hover { color: #fff; }
.topbar__item--wa .ico { color: var(--wa); }
@media (max-width: 900px) {
  .topbar__item--hours { display: none; }
}
@media (max-width: 640px) {
  .topbar__group:first-child { display: none; }
  .topbar__inner { justify-content: center; }
}

/* ---------- 6. Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 20px -12px rgba(var(--navy-900-rgb), .25); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: inherit; }
.brand__mark { height: 46px; width: auto; flex: 0 0 auto; object-fit: contain; }
.brand--light .brand__mark { background: #fff; border-radius: 9px; padding: 3px 5px; height: 48px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--navy-800); letter-spacing: -.01em; }
.brand__sub { font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-500); margin-top: .18rem; }
.brand:hover .brand__name { color: var(--blue-600); }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub { color: rgba(255, 255, 255, .6); }
.brand--light:hover .brand__name { color: var(--accent-light); }

.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .85rem; border-radius: 8px;
  font-weight: 600; font-size: .98rem; color: var(--ink-700);
  position: relative;
}
.nav__link:hover { color: var(--blue-600); background: var(--blue-50); }
.nav__link.is-active { color: var(--blue-600); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .2rem; height: 2px; border-radius: 2px; background: var(--amber-500);
}
.nav__item--dd > .nav__link { padding-right: 1.6rem; }
.nav__item--dd > .nav__link::before {
  content: ""; position: absolute; right: .7rem; top: 50%; width: 6px; height: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg); transition: transform var(--dur) var(--ease);
}
.nav__item--dd:hover > .nav__link::before, .nav__item--dd:focus-within > .nav__link::before { transform: translateY(-30%) rotate(225deg); }
.nav__caret { display: none; }

.nav__dd {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 50;
  min-width: 300px; padding: .75rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
}
.nav__dd::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 12px; }
.nav__item--dd:hover > .nav__dd, .nav__item--dd:focus-within > .nav__dd, .nav__item--dd.is-open > .nav__dd {
  opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s;
}
.nav__dd-list { list-style: none; display: grid; gap: .15rem; }
.nav__dd-list--2col { grid-template-columns: 1fr 1fr; min-width: 600px; }
.nav__dd-link {
  display: flex; align-items: center; gap: .75rem; padding: .6rem .7rem; border-radius: 10px;
  color: var(--ink-800); font-weight: 600; font-size: .95rem; line-height: 1.25;
}
.nav__dd-link:hover { background: var(--blue-50); color: var(--blue-600); }
.nav__dd-ico {
  width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--bg-soft); color: var(--blue-600); border: 1px solid var(--line);
}
.nav__dd-ico .ico { width: 20px; height: 20px; }
.nav__dd-link:hover .nav__dd-ico { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.nav__dd-all {
  display: inline-flex; align-items: center; gap: .4rem; margin: .5rem .7rem .2rem; font-weight: 700; font-size: .92rem; color: var(--blue-600);
}
.nav__dd--wide { min-width: 660px; }
.nav__dd-cols { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem 1rem; }
.nav__dd-grphead { font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-400); margin: .35rem .7rem .3rem; }
.nav__mobile-extras { display: none; }

.site-header__actions { display: flex; align-items: center; gap: .9rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--navy-800); white-space: nowrap; }
.header-phone .ico { color: var(--blue-600); }
.header-phone:hover { color: var(--blue-600); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle__bar { width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop { position: fixed; inset: 0; z-index: 890; background: rgba(var(--navy-950-rgb), .5); backdrop-filter: blur(2px); }
.nav-backdrop[hidden] { display: none; }

@media (max-width: 1180px) { .header-phone { display: none; } }
@media (max-width: 1024px) {
  /* backdrop-filter would make the header the containing block for the fixed off-canvas nav — disable it on mobile */
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: #fff; }
  .brand, .site-header__actions { position: relative; z-index: 970; }  /* stay above the open panel */
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; height: 100dvh; z-index: 950;
    width: min(88vw, 380px); background: #fff; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: calc(var(--topbar-h) + var(--header-h) + .75rem) 1.25rem 2rem;
    transform: translateX(100%); transition: transform .3s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav__item { display: flex; flex-wrap: wrap; align-items: center; }
  .nav__link { flex: 1; padding: .85rem .75rem; font-size: 1.05rem; border-radius: 10px; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: var(--blue-50); }
  .nav__item--dd > .nav__link { padding-right: .75rem; }
  .nav__item--dd > .nav__link::before { display: none; }
  .nav__caret {
    display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
    background: #fff; color: var(--ink-700); margin-left: .35rem;
  }
  .nav__caret .ico { transition: transform var(--dur) var(--ease); }
  .nav__caret[aria-expanded="true"] .ico { transform: rotate(180deg); }
  .nav__dd {
    position: static; flex-basis: 100%; min-width: 0; padding: .25rem 0 .5rem .5rem; box-shadow: none; border: 0;
    opacity: 1; visibility: visible; transform: none; display: none;
  }
  .nav__item--dd.is-open > .nav__dd { display: block; }
  .nav__item--dd:hover > .nav__dd:not(.is-open) { display: none; }
  .nav__item--dd.is-open:hover > .nav__dd { display: block; }
  .nav__dd-list--2col { grid-template-columns: 1fr; min-width: 0; }
  .nav__dd--wide { min-width: 0; }
  .nav__dd-cols { grid-template-columns: 1fr; }
  .nav__mobile-extras { display: grid; gap: .6rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
  .site-header__actions .btn { display: none; }
}
@media (max-width: 1024px) {
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { z-index: 960; }
}

/* ---------- 7. Sections ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--muted { background: var(--bg-muted); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--navy-900); color: rgba(255, 255, 255, .82); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead, .section--dark .section-head p { color: rgba(255, 255, 255, .78); }
.section--grid-bg { background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 42px 42px; }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-600); font-size: 1.1rem; }
.section-head--center p { margin-inline: auto; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; max-width: none; }
.section-head--row > div { max-width: 720px; }
@media (max-width: 760px) { .section-head--row { flex-direction: column; align-items: flex-start; } }

/* ---------- 8. Grids / cards / tiles ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.grid--sectors { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
@media (min-width: 1000px) { .grid--3.grid--3-strict { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative; display: flex; flex-direction: column; gap: .7rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem;
  color: inherit; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-100); color: inherit; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600); border: 1px solid var(--blue-100); margin-bottom: .35rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.card__icon .ico { width: 26px; height: 26px; }
a.card:hover .card__icon { background: var(--blue-600); color: #fff; }
.card__title { margin: 0; font-size: 1.18rem; }
.card__text { color: var(--ink-600); margin: 0; font-size: .98rem; }
.card__link { margin-top: auto; padding-top: .5rem; display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--blue-600); font-size: .95rem; }
.card__link .ico { transition: transform var(--dur) var(--ease); }
a.card:hover .card__link .ico { transform: translateX(4px); }
.card--plain { box-shadow: none; }
.card--soft { background: var(--bg-soft); border-color: transparent; }
.card--dark { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .8); }
.card--dark .card__title { color: #fff; }
.card--dark .card__text { color: rgba(255, 255, 255, .72); }
.card--dark .card__icon { background: rgba(255, 255, 255, .08); color: var(--accent-light); border-color: rgba(255, 255, 255, .12); }

.tile {
  display: flex; align-items: center; gap: 1.1rem; padding: 1.25rem 1.35rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); color: inherit; }
.tile__icon { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; background: var(--navy-800); color: var(--accent-light); }
.tile__icon .ico { width: 28px; height: 28px; }
.tile__body { display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.tile__title { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink-900); }
.tile__text { color: var(--ink-600); font-size: .95rem; line-height: 1.45; }
.tile__arrow { color: var(--blue-600); transition: transform var(--dur) var(--ease); }
.tile:hover .tile__arrow { transform: translateX(4px); }


/* services grid: flex so the last row centres (7 cards → 4 + 3) */
.grid--services { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.grid--services > .card { flex: 1 1 280px; max-width: 100%; }
@media (min-width: 1100px) { .grid--services > .card { flex: 0 1 calc(25% - 1.125rem); } }
/* sectors: 5 vertical tiles in one row on wide screens */
@media (min-width: 1100px) {
  .grid--sectors { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
  .grid--sectors .tile { flex-direction: column; align-items: flex-start; gap: .9rem; padding: 1.4rem 1.3rem; }
  .grid--sectors .tile__arrow { margin-top: auto; }
}


/* "What we handle for you" tiles inside the content column: 2 columns, horizontal tiles, full width */
.grid--handle { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 1rem; margin: 1.25rem 0 1.75rem; }
.grid--handle .tile { flex-direction: row; align-items: flex-start; padding: 1.1rem 1.15rem; }
.grid--handle .tile__icon { width: 48px; height: 48px; border-radius: 12px; }
.grid--handle .tile__icon .ico { width: 24px; height: 24px; }
.grid--handle .tile__title { font-size: 1.02rem; }
.grid--handle .tile__text { font-size: .92rem; }
.grid--handle .tile__arrow { align-self: center; }

/* feature rows (icon + text) */
.features { display: grid; gap: 1.75rem 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: var(--amber-100); color: var(--accent-text-dark); }
.feature__icon .ico { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.feature p { color: var(--ink-600); font-size: .98rem; }
.section--dark .feature__icon { background: rgba(var(--amber-500-rgb), .16); color: var(--accent-light); }
.section--dark .feature p { color: rgba(255, 255, 255, .72); }

/* checklist */
.checklist { list-style: none; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; line-height: 1.5; }
.checklist .ico { width: 22px; height: 22px; color: var(--teal-600); flex: 0 0 auto; margin-top: .12rem; }
.checklist--2col { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.checklist--cards li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8rem 1rem; }
.checklist--cards .ico { background: var(--teal-100); border-radius: 50%; padding: 3px; }
.section--dark .checklist .ico { color: var(--teal-light); }

/* stat / trust strip */
.trust-strip { background: #fff; border-block: 1px solid var(--line); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.trust-item { display: flex; align-items: center; gap: .85rem; padding: 1.2rem 1rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item .ico { width: 30px; height: 30px; color: var(--blue-600); flex: 0 0 auto; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--ink-900); line-height: 1.2; }
.trust-item span { font-size: .88rem; color: var(--ink-500); }
@media (max-width: 900px) { .trust-item { border-right: 0; border-bottom: 1px solid var(--line); } .trust-item:last-child { border-bottom: 0; } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 1.25rem; }
.stat { padding: 1.5rem; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.stat__num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--accent-light); line-height: 1; }
.stat__label { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: .4rem; }
.stat--light { background: #fff; border-color: var(--line); }
.stat--light .stat__num { color: var(--navy-800); }
.stat--light .stat__label { color: var(--ink-600); }

/* steps / process */
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); counter-reset: step; }
.step { position: relative; padding: 1.75rem 1.5rem 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step__num {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-800); color: var(--accent-light); font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-600); font-size: .97rem; }
.section--dark .step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.section--dark .step p { color: rgba(255,255,255,.72); }
.section--dark .step__num { background: var(--amber-500); color: var(--navy-900); }

/* split layouts */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-left { grid-template-columns: 1.15fr 1fr; } .split--wide-right { grid-template-columns: 1fr 1.15fr; } }
.split__visual { position: relative; }

/* illustrated panel (photo-free visual) */
.panel {
  position: relative; border-radius: var(--radius-lg); padding: 2rem; overflow: hidden;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); color: #fff; min-height: 340px;
  box-shadow: var(--shadow-lg);
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(145deg, var(--navy-800), var(--navy-950));
  background-size: 34px 34px, 34px 34px, auto;
}
.panel__glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--amber-500-rgb),.32), transparent 62%); right: -120px; top: -140px; pointer-events: none; }
.panel__list { list-style: none; display: grid; gap: .8rem; position: relative; }
.panel__list li { display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; font-weight: 600; }
.panel__list .ico { width: 22px; height: 22px; color: var(--accent-light); }
.panel__title { font-family: var(--font-head); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 1rem; position: relative; }

/* image placeholder frame (swap for a real photo) */
.photo {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: var(--aspect, 4 / 3);
  background: linear-gradient(135deg, var(--bg-muted), var(--blue-50)); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.photo img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center); display: block; }
.photo--tall { aspect-ratio: var(--aspect, 3 / 4); }
.photo--wide { aspect-ratio: var(--aspect, 16 / 10); margin: 1.75rem 0 2.25rem; }
.photo--split { aspect-ratio: var(--aspect, 4 / 3); box-shadow: var(--shadow-lg); border-color: transparent; }
@media (max-width: 640px) { .photo--wide { border-radius: var(--radius); margin: 1.25rem 0 1.75rem; } .photo__badge { font-size: .85rem; padding: .6rem .8rem; left: .75rem; bottom: .75rem; } }
.photo__badge {
  position: absolute; left: 1rem; bottom: 1rem; background: #fff; border-radius: 12px; padding: .8rem 1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--ink-900); font-size: .95rem;
}
.photo__badge .ico { width: 24px; height: 24px; color: var(--blue-600); }

/* ---------- 9. Home hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(var(--navy-600-rgb), .55), transparent 60%),
              radial-gradient(800px 500px at 10% 110%, rgba(var(--amber-500-rgb), .18), transparent 60%),
              linear-gradient(160deg, var(--navy-800) 0%, var(--navy-950) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.15));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.15));
}
.hero__inner { position: relative; display: grid; gap: 3rem; align-items: center; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(5rem, 9vw, 7.5rem); }
@media (min-width: 980px) { .hero__inner { grid-template-columns: 1.1fr .9fr; } }
.hero__title { color: #fff; font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3.35rem); margin-bottom: 1.2rem; max-width: 640px; }
.hero__title em { font-style: normal; color: var(--accent-light); }
.hero__lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); color: rgba(255,255,255,.82); max-width: 600px; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.hero__points { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; font-size: .95rem; color: rgba(255,255,255,.78); }
.hero__points li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__points .ico { width: 18px; height: 18px; color: var(--teal-light); }
.hero__skyline { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: auto; opacity: .55; pointer-events: none; }

.hero__visual { position: relative; min-height: 520px; }
.hero-card {
  position: absolute; background: #fff; color: var(--ink-800); border-radius: 16px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(var(--navy-900-rgb),.06);
}
.hero-card--main { left: 0; right: 7%; top: 0; padding: 1.4rem 1.5rem 1.25rem; }
.hero-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.hero-card__head strong { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink-900); }
.hero-card__head small { display: block; color: var(--ink-500); font-size: .8rem; }
.hero-card__list { list-style: none; display: grid; gap: .55rem; }
.hero-card__list li { display: flex; align-items: center; gap: .7rem; padding: .6rem .7rem; border-radius: 10px; background: var(--bg-soft); font-size: .93rem; font-weight: 500; }
.hero-card__list li .ico { width: 20px; height: 20px; color: var(--teal-600); }
.hero-card__list li.is-pending .ico { color: var(--ink-400); }
.hero-card__list li time { margin-left: auto; font-size: .78rem; color: var(--ink-500); font-variant-numeric: tabular-nums; }
.hero-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1rem; padding-top: .9rem; border-top: 1px dashed var(--line-strong); font-size: .85rem; color: var(--ink-500); }
.hero-card__foot .bar { flex: 1; height: 6px; background: var(--bg-muted); border-radius: 3px; overflow: hidden; }
.hero-card__foot .bar i { display: block; width: 78%; height: 100%; background: linear-gradient(90deg, var(--blue-500), var(--teal-600)); border-radius: 3px; }
.hero-card--a { right: -2%; bottom: -6px; padding: 1rem 1.15rem; display: flex; align-items: center; gap: .8rem; }
.hero-card--b { left: 0; bottom: 24px; padding: 1rem 1.15rem; display: flex; align-items: center; gap: .8rem; }
.hero-card--a > span:last-child, .hero-card--b > span:last-child { display: flex; flex-direction: column; }
.hero-card__ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--amber-100); color: var(--accent-text-dark); flex: 0 0 auto; }
.hero-card__ico--blue { background: var(--blue-50); color: var(--blue-600); }
.hero-card__ico .ico { width: 22px; height: 22px; }
.hero-card__label { display: block; font-size: .78rem; color: var(--ink-500); line-height: 1.2; }
.hero-card__value { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink-900); line-height: 1.2; }
@media (max-width: 979px) { .hero__visual { min-height: 520px; max-width: 520px; margin-inline: auto; width: 100%; } .hero-card--a { right: 0; } .hero-card--b { left: 0; } }
@media (max-width: 480px) { .hero__visual { min-height: 650px; } .hero-card--main { left: 0; right: 0; padding: 1.1rem 1.05rem; } .hero-card--a { bottom: 6px; right: 0; } .hero-card--b { bottom: 92px; left: 0; } }
@media (prefers-reduced-motion: no-preference) {
  .hero-card--a { animation: floaty 6s ease-in-out infinite; }
  .hero-card--b { animation: floaty 7s ease-in-out infinite 1s; }
  @keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
}


/* photo hero (home) */
.hero__visual--photo { min-height: 0; padding: 14px 14px 14px 0; }
.hero-photo {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 5 / 6; max-height: 600px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14); background: var(--navy-800);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(var(--navy-950-rgb),0) 55%, rgba(var(--navy-950-rgb),.45) 100%); }
.hero__visual--photo::before {           /* amber offset frame behind the photo */
  content: ""; position: absolute; left: 22px; top: 0; right: -8px; bottom: -8px;
  border: 2px solid rgba(var(--amber-500-rgb),.55); border-radius: var(--radius-lg); pointer-events: none;
}
.hero__visual--photo .hero-card--a { top: 24px; right: -22px; bottom: auto; }
.hero__visual--photo .hero-card--b { bottom: 30px; left: -26px; top: auto; }
@media (max-width: 979px) {
  .hero__visual--photo { min-height: 0; max-width: 560px; padding: 0 0 12px; }
  .hero__visual--photo::before { left: 12px; top: 12px; right: -12px; bottom: 0; }
  .hero-photo { aspect-ratio: 4 / 3; max-height: none; }
  .hero__visual--photo .hero-card--a { top: 14px; right: 14px; }
  .hero__visual--photo .hero-card--b { bottom: 26px; left: 14px; }
}
@media (max-width: 480px) {
  .hero__visual--photo { min-height: 0; }
  .hero-photo { aspect-ratio: 4 / 4; }
  .hero__visual--photo .hero-card--a { display: none; }
  .hero__visual--photo .hero-card--b { bottom: 24px; left: 12px; right: auto; }
}

/* corporate full-bleed home hero */
.hero--corp { position: relative; overflow: hidden; background: var(--navy-900); }
.hero--corp .hero__photo { position: absolute; inset: 0; z-index: 0; }
.hero--corp .hero__photo picture, .hero--corp .hero__photo img { width: 100%; height: 100%; display: block; }
.hero--corp .hero__photo img { object-fit: cover; object-position: center 40%; }
.hero--corp .hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(var(--navy-950-rgb),.94) 0%, rgba(var(--navy-950-rgb),.85) 34%, rgba(var(--navy-950-rgb),.52) 64%, rgba(var(--navy-950-rgb),.16) 100%); }
.hero--corp::before { display: none; }                       /* no grid texture — cleaner */
.hero--corp::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--amber-500), var(--amber-500) 55%, rgba(var(--amber-500-rgb),.25)); }  /* gold baseline, echoes the logo */
.hero__inner--corp { position: relative; z-index: 2; display: block; padding: clamp(4rem, 8.5vw, 7rem) 0; }
.hero--corp .hero__copy { max-width: 720px; }
.hero--corp .hero__title { max-width: 700px; text-shadow: 0 2px 16px rgba(var(--navy-950-rgb),.6), 0 1px 3px rgba(0,0,0,.35); }
.hero--corp .hero__lead { text-shadow: 0 1px 10px rgba(var(--navy-950-rgb),.6); }
.hero--corp .hero__points { max-width: 700px; }
.hero--corp .hero__points li { text-shadow: 0 1px 8px rgba(var(--navy-950-rgb),.7); }
@media (max-width: 760px) {
  .hero--corp .hero__scrim { background: linear-gradient(180deg, rgba(var(--navy-950-rgb),.92) 0%, rgba(var(--navy-950-rgb),.84) 100%); }
  .hero__inner--corp { padding: 3.25rem 0 3.5rem; }
}

/* ---------- 10. Sub-page hero ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); }
.page-hero__bg { position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(900px 400px at 85% -20%, rgba(var(--navy-600-rgb),.6), transparent 60%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px; }
.page-hero__inner { position: relative; padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem); max-width: 860px; }
.page-hero__title { color: #fff; margin-bottom: 1rem; font-size: clamp(2rem, 1.3rem + 2.2vw, 3.2rem); }
.page-hero__lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.28rem); color: rgba(255,255,255,.82); max-width: 720px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* photo variant: image behind, navy gradient overlay + faint grid on top, text stays left */
.page-hero--photo { min-height: 440px; display: flex; align-items: center; }
.page-hero--photo .page-hero__photo { position: absolute; inset: 0; z-index: 0; }
.page-hero--photo .page-hero__photo picture, .page-hero--photo .page-hero__photo img { width: 100%; height: 100%; display: block; }
.page-hero--photo .page-hero__photo img { object-fit: cover; object-position: var(--pos, center 45%); }
.page-hero--photo .page-hero__bg { z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(var(--navy-900-rgb),.88) 0%, rgba(var(--navy-900-rgb),.74) 34%, rgba(var(--navy-900-rgb),.34) 64%, rgba(var(--navy-900-rgb),.05) 100%);
}
.page-hero--photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 80px; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(var(--navy-950-rgb),0), rgba(var(--navy-950-rgb),.42)); }
.page-hero--photo .page-hero__inner { position: relative; z-index: 2; max-width: none; width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.page-hero--photo .page-hero__title { max-width: 820px; }
.page-hero--photo .page-hero__lead { max-width: 680px; }
.page-hero--photo .page-hero__title, .page-hero--photo .page-hero__lead { text-shadow: 0 2px 14px rgba(var(--navy-950-rgb),.55), 0 1px 3px rgba(0,0,0,.35); }
.page-hero--photo .crumbs__list, .page-hero--photo .eyebrow--light { text-shadow: 0 1px 6px rgba(var(--navy-950-rgb),.6); }
@media (max-width: 760px) {
  .page-hero--photo { min-height: 0; }
  .page-hero--photo .page-hero__bg { background-image:
    linear-gradient(180deg, rgba(var(--navy-900-rgb),.90) 0%, rgba(var(--navy-900-rgb),.80) 100%); }
}

.crumbs { margin-bottom: 1.4rem; font-size: .88rem; }
.crumbs__list { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; color: rgba(255,255,255,.65); }
.crumbs__list li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.crumbs__list a { color: rgba(255,255,255,.8); }
.crumbs__list a:hover { color: var(--accent-light); }
.crumbs__list li[aria-current] { color: #fff; }

/* ---------- 11. Content layout (service / sector pages) ---------- */
.content-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .content-grid { grid-template-columns: minmax(0, 1fr) 340px; } }
.content { max-width: 760px; }
.content h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-top: 2.6rem; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin-top: 1.8rem; }
.content p, .content li { color: var(--ink-600); }
.content ul:not(.checklist), .content ol { padding-left: 1.3rem; display: grid; gap: .45rem; margin-bottom: 1rem; }
.content .checklist { margin-bottom: 1.25rem; }
.content .steps { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); margin-bottom: 1.25rem; }
.content .features { margin-bottom: 1.25rem; }
.content .lead { color: var(--ink-600); }
.aside { display: grid; gap: 1.25rem; align-content: start; }
@media (min-width: 1000px) {
  /* align-self:start is required — a stretched grid item has no room to stick */
  .aside { position: sticky; top: calc(var(--header-h) + 1.25rem); align-self: start;
           max-height: calc(100vh - var(--header-h) - 2rem); overflow-y: auto; scrollbar-width: none; }
  .aside::-webkit-scrollbar { display: none; }
}
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.aside-card--dark { background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); color: rgba(255,255,255,.85); border-color: transparent; }
.aside-card--dark h3 { color: #fff; }
.aside-card h3 { font-size: 1.05rem; margin-bottom: .9rem; }
.aside-card p { font-size: .95rem; }
.aside-list { list-style: none; display: grid; gap: .35rem; }
.aside-list a { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .55rem .6rem; border-radius: 8px; color: var(--ink-800); font-weight: 600; font-size: .94rem; }
.aside-list a:hover { background: var(--blue-50); color: var(--blue-600); }
.aside-list a .ico { width: 16px; height: 16px; color: var(--blue-600); }
.aside-list a.is-current { background: var(--blue-50); color: var(--blue-600); }
.aside-facts { list-style: none; display: grid; gap: .7rem; }
.aside-facts li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.aside-facts .ico { width: 20px; height: 20px; color: var(--accent-light); flex: 0 0 auto; margin-top: .15rem; }
.aside-facts strong { color: #fff; display: block; font-size: .92rem; }
.aside-facts span { color: rgba(255,255,255,.7); }

/* included-items grid */
.incl { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); margin: 1.25rem 0 1.5rem; }
.incl__item { display: flex; gap: .8rem; padding: 1rem 1.05rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.incl__item .ico { width: 22px; height: 22px; color: var(--blue-600); flex: 0 0 auto; margin-top: .1rem; }
.incl__item strong { display: block; color: var(--ink-900); font-size: .98rem; }
.incl__item span { color: var(--ink-600); font-size: .92rem; line-height: 1.45; }

/* callout */
.callout { display: flex; gap: 1rem; padding: 1.25rem 1.4rem; border-radius: var(--radius); background: var(--amber-100); border: 1px solid var(--accent-light-2); color: var(--accent-text-darker); margin: 1.5rem 0; }
.callout .ico { width: 24px; height: 24px; flex: 0 0 auto; color: var(--accent-text-mid); margin-top: .1rem; }
.callout p { color: inherit; margin: 0; }
.callout--blue { background: var(--blue-50); border-color: var(--blue-100); color: var(--navy-800); }
.callout--blue .ico { color: var(--blue-600); }

/* comparison / tiers table */
.tiers { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); align-items: stretch; }
.tier { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.75rem; position: relative; }
.tier--featured { border-color: var(--navy-800); box-shadow: var(--shadow-lg); }
.tier__flag { position: absolute; top: -13px; left: 1.75rem; background: var(--amber-500); color: var(--navy-900); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--radius-pill); }
.tier__name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--ink-900); margin-bottom: .25rem; }
.tier__for { color: var(--ink-500); font-size: .95rem; margin-bottom: 1.25rem; }
.tier .checklist { font-size: .97rem; margin-bottom: 1.5rem; }
.tier .btn { margin-top: auto; }

/* table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
table.tbl { width: 100%; border-collapse: collapse; font-size: .97rem; min-width: 560px; }
.tbl th, .tbl td { text-align: left; padding: .9rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl th { background: var(--bg-soft); font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-900); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl td .ico { width: 20px; height: 20px; color: var(--teal-600); }

/* ---------- 12. FAQ (details) ---------- */
.faq { display: grid; gap: .75rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.faq__item[open] { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.faq__q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.35rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink-900); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--blue-600); }
.faq__chev { width: 22px; height: 22px; color: var(--blue-600); flex: 0 0 auto; transition: transform var(--dur) var(--ease); }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 1.35rem 1.25rem; color: var(--ink-600); }
.faq__a p { margin-bottom: .6rem; }
.section--dark .faq__item { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.section--dark .faq__q { color: #fff; }
.section--dark .faq__a { color: rgba(255,255,255,.75); }

/* ---------- 13. CTA band ---------- */
.cta { position: relative; overflow: hidden; color: #fff; }
.cta--dark { background: linear-gradient(135deg, var(--navy-700), var(--navy-950)); }
.cta--dark::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at 80% 50%, #000, transparent 70%); mask-image: radial-gradient(circle at 80% 50%, #000, transparent 70%); }
.cta--dark::after { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--amber-500-rgb),.35), transparent 62%); pointer-events: none; }
.cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(3rem, 6vw, 4.5rem) 0; flex-wrap: wrap; }
.cta__text { max-width: 640px; }
.cta__title { color: #fff; font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); margin-bottom: .6rem; }
.cta__lead { color: rgba(255,255,255,.8); font-size: 1.08rem; margin: 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; }


/* ---------- image-topped cards & tiles ---------- */
.card--media { padding-top: 0; overflow: hidden; }
.card__media { display: block; margin: 0 -1.75rem 0; aspect-ratio: 16 / 9; background: var(--bg-muted); overflow: hidden; }
.card__media picture, .card__media img { display: block; width: 100%; height: 100%; }
.card__media img { object-fit: cover; transition: transform .6s var(--ease); }
a.card--media:hover .card__media img { transform: scale(1.05); }
.card--media .card__icon { position: relative; z-index: 1; margin-top: -26px; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.tile__media { display: none; }
@media (min-width: 1100px) {
  .grid--sectors .tile--media { padding-top: 0; overflow: hidden; }
  .grid--sectors .tile__media { display: block; width: calc(100% + 2.6rem); margin: 0 -1.3rem 0; aspect-ratio: 16 / 10; background: var(--bg-muted); overflow: hidden; }
  .grid--sectors .tile__media picture, .grid--sectors .tile__media img { display: block; width: 100%; height: 100%; }
  .grid--sectors .tile__media img { object-fit: cover; transition: transform .6s var(--ease); }
  .grid--sectors .tile--media:hover .tile__media img { transform: scale(1.05); }
  .grid--sectors .tile--media .tile__icon { position: relative; z-index: 1; margin-top: -24px; border: 3px solid #fff; }
}

/* ---------- photo-background sections & CTA ---------- */
.section--photo { overflow: hidden; }
.section--photo .section__photo { position: absolute; inset: 0; z-index: 0; }
.section--photo .section__photo picture, .section--photo .section__photo img { display: block; width: 100%; height: 100%; }
.section--photo .section__photo img { object-fit: cover; object-position: var(--pos, center); }
.section--photo .section__photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(var(--navy-900-rgb),.96) 0%, rgba(var(--navy-900-rgb),.90) 50%, rgba(var(--navy-900-rgb),.82) 100%); }
.section--photo > .container { position: relative; z-index: 1; }
.section--dark .value { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); backdrop-filter: blur(2px); }
.section--dark .value h3 { color: #fff; }
.section--dark .value p { color: rgba(255,255,255,.75); }
.section--dark .value .ico { color: var(--accent-light); }
.section--dark .tbl th { background: var(--bg-soft); }
.cta--photo .cta__photo { position: absolute; inset: 0; z-index: 0; }
.cta--photo .cta__photo picture, .cta--photo .cta__photo img { display: block; width: 100%; height: 100%; }
.cta--photo .cta__photo img { object-fit: cover; object-position: var(--pos, center); }
.cta--photo .cta__photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--navy-700-rgb),.94) 0%, rgba(var(--navy-900-rgb),.90) 55%, rgba(var(--navy-950-rgb),.86) 100%); }
.cta--photo .cta__inner { z-index: 2; }
.cta--photo::before, .cta--photo::after { z-index: 1; }

/* ---------- 14. Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .95rem; color: var(--ink-800); }
.field label .req { color: var(--red-600); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: .7rem .9rem; border: 1.5px solid var(--line-strong); border-radius: 10px; background: #fff;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: var(--ring); }
.field .hint { font-size: .85rem; color: var(--ink-500); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--red-600); }
.field .error { display: none; font-size: .86rem; color: var(--red-600); }
.field.is-invalid .error { display: block; }
.checks { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.check { display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; border: 1.5px solid var(--line); border-radius: 10px; font-size: .95rem; cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.check:hover { border-color: var(--blue-100); background: var(--blue-50); }
.check input { width: 18px; height: 18px; accent-color: var(--blue-600); margin: 0; }
.form__status { display: none; padding: 1rem 1.15rem; border-radius: 10px; font-weight: 600; }
.form__status.is-success { display: flex; gap: .6rem; align-items: center; background: var(--teal-100); color: var(--teal-text-darker); }
.form__status.is-error { display: flex; gap: .6rem; align-items: center; background: var(--red-100); color: var(--red-text-dark); }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.form__footnote { font-size: .86rem; color: var(--ink-500); }

/* contact page */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1.25fr .85fr; align-items: start; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm); }
.contact-info { display: grid; gap: 1.25rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); flex: 0 0 auto; }
.info-row__icon .ico { width: 22px; height: 22px; }
.info-row strong { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink-900); font-size: .98rem; margin-bottom: .1rem; }
.info-row a, .info-row span { color: var(--ink-600); }
.info-row a:hover { color: var(--blue-600); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- 15. Misc blocks ---------- */
.quote { position: relative; padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.quote .ico { width: 30px; height: 30px; color: var(--amber-500); margin-bottom: .75rem; }
.quote p { font-size: 1.05rem; color: var(--ink-700); }
.quote footer { margin-top: 1rem; font-size: .92rem; color: var(--ink-500); font-weight: 600; }

.values { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.value { padding: 1.5rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.value .ico { width: 28px; height: 28px; color: var(--blue-600); margin-bottom: .75rem; }
.value h3 { font-size: 1.08rem; }
.value p { color: var(--ink-600); font-size: .96rem; }

.badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .85rem; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .9rem; color: var(--ink-800); }
.badge .ico { width: 18px; height: 18px; color: var(--teal-600); }

.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.5rem; opacity: .75; }

.notfound { text-align: center; padding: clamp(4rem, 10vw, 8rem) 0; }
.notfound__code { font-family: var(--font-head); font-size: clamp(4rem, 12vw, 8rem); font-weight: 700; color: var(--blue-100); line-height: 1; }

.prose h2 { margin-top: 2.25rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .4rem; margin-bottom: 1rem; }
.prose p, .prose li { color: var(--ink-600); }

/* ---------- 16. Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.72); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; gap: 2.5rem 2rem; grid-template-columns: 1fr; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.15fr; } }
.footer__about { font-size: .97rem; margin: 1.25rem 0 1rem; max-width: 380px; }
.footer__meta { list-style: none; display: grid; gap: .45rem; font-size: .9rem; }
.footer__meta li { display: flex; align-items: center; gap: .5rem; }
.footer__meta .ico { width: 18px; height: 18px; color: var(--amber-500); }
.footer__heading { font-family: var(--font-head); font-size: .95rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin: 0 0 1rem; }
.footer__heading--gap { margin-top: 1.75rem; }
.footer__links { list-style: none; display: grid; gap: .5rem; }
.footer__links a { color: rgba(255,255,255,.72); font-size: .97rem; }
.footer__links a:hover { color: var(--accent-light); }
.footer__contact { list-style: none; display: grid; gap: .8rem; font-size: .97rem; }
.footer__contact li { display: flex; gap: .65rem; align-items: flex-start; }
.footer__contact .ico { width: 20px; height: 20px; color: var(--amber-500); flex: 0 0 auto; margin-top: .15rem; }
.footer__contact a { color: rgba(255,255,255,.85); }
.footer__contact a:hover { color: var(--accent-light); }
.footer__contact small { color: rgba(255,255,255,.55); }
.footer__cta { margin-top: 1.5rem; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 1.5rem; padding: 1.4rem 0; font-size: .88rem; color: rgba(255,255,255,.55); }
.footer__bottom p { margin: 0; }
.footer__legal { list-style: none; display: flex; gap: 1.25rem; }
.footer__legal a { color: rgba(255,255,255,.65); }
.footer__legal a:hover { color: var(--accent-light); }

/* Repair & Maintenance trade tiles */
.grid--trades { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: 1rem; }
@media (min-width: 1100px) { .grid--trades { grid-template-columns: repeat(4, 1fr); } }
.trade { display: flex; align-items: flex-start; gap: .85rem; padding: 1.05rem 1.1rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); color: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.trade:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); color: inherit; }
.trade__icon { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 11px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600); border: 1px solid var(--blue-100); }
.trade__icon .ico { width: 22px; height: 22px; }
.trade:hover .trade__icon { background: var(--blue-600); color: #fff; }
.trade__body { display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.trade__title { font-family: var(--font-head); font-weight: 600; font-size: .99rem; color: var(--ink-900); line-height: 1.25; }
.trade__text { color: var(--ink-600); font-size: .86rem; line-height: 1.4; }
.trade__arrow { color: var(--blue-600); align-self: center; transition: transform var(--dur) var(--ease); }
.trade:hover .trade__arrow { transform: translateX(4px); }
.aside-grouphead { font-family: var(--font-head); font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-400); margin: .2rem .6rem .3rem; }
.aside-grouphead--gap { margin-top: .9rem; }

/* Trusted By accreditation band (home) */
.trustedby { background: #fff; border-bottom: 1px solid var(--line); padding: 1.9rem 0 1.7rem; }
.trustedby__label { text-align: center; font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-400); margin: 0 0 1.2rem; }
.trustedby__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.4rem 3.2rem; }
.trustedby__item { display: flex; flex-direction: column; align-items: center; gap: .45rem; }
.trustedby__item img { height: 52px; width: auto; max-width: 220px; object-fit: contain; }
.trustedby__item img[alt="bizSAFE STAR"] { height: 62px; }
.trustedby__cap { font-size: .8rem; font-weight: 700; color: var(--ink-700); letter-spacing: .04em; }
.trustedby__item--text { flex-direction: row; gap: .5rem; padding: .55rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius-pill); background: var(--bg-soft); }
.trustedby__item--text .ico { width: 20px; height: 20px; color: var(--teal-600); }
.trustedby__item--text .trustedby__cap { font-size: .88rem; }
@media (max-width: 640px) { .trustedby__row { gap: 1.1rem 1.8rem; } .trustedby__item img { height: 42px; } .trustedby__item img[alt="bizSAFE STAR"] { height: 50px; } }
.trustedby__more { text-align: center; font-size: .92rem; margin: 1.35rem 0 0; }
.trustedby__more a { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--color-primary); }
.trustedby__more a .ico { width: 15px; height: 15px; }

/* certifications */
.certs { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); align-items: stretch; }
.cert { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .35rem;
        background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.1rem; box-shadow: var(--shadow-sm); }
.cert__img { display: flex; align-items: center; justify-content: center; height: 74px; margin-bottom: .5rem; }
.cert__img img { max-height: 74px; width: auto; max-width: 100%; }
.cert__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 16px; background: var(--teal-100); color: var(--teal-text-dark); margin-bottom: .6rem; }
.cert__icon .ico { width: 32px; height: 32px; }
.cert__label { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink-900); }
.cert__sub { font-size: .85rem; color: var(--ink-500); line-height: 1.4; }

/* certifications page — full detail cards */
.certdetails { display: grid; gap: 1.4rem; }
.certdetail { display: grid; grid-template-columns: 220px 1fr; gap: 1.4rem 2.4rem; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 2.2rem; box-shadow: var(--shadow-sm); }
.certdetail__badge { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; padding-top: .35rem; }
.certdetail__badge img { max-width: 175px; height: auto; }
.certdetail__accred img { max-height: 52px; width: auto; max-width: 200px; }
.certdetail__title { font-size: 1.4rem; margin: 0 0 .1rem; }
.certdetail__sys { font-weight: 600; color: var(--color-primary); margin: 0 0 .7rem; }
.certdetail__text { color: var(--ink-600); margin: 0 0 1.1rem; }
.certdetail__meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: .85rem 1.6rem;
  margin: 0 0 1.25rem; padding: 1.05rem 1.25rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.certdetail__meta div { min-width: 0; }
.certdetail__meta dt { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); margin: 0 0 .18rem; }
.certdetail__meta dd { margin: 0; font-size: .93rem; font-weight: 600; color: var(--ink-800); line-height: 1.45; overflow-wrap: anywhere; }
.certdetail__meta-wide { grid-column: 1 / -1; }
.certdetail__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.certdetail--note { grid-template-columns: 1fr; padding: 1.6rem 2.2rem; }
.certdetail--note .certdetail__text { margin-bottom: 0; max-width: 70ch; }
.certdetail__note-mark { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: var(--teal-100); color: var(--teal-text-dark); vertical-align: -12px; margin-right: .35rem; }
.certdetail__note-mark .ico { width: 22px; height: 22px; }
@media (max-width: 860px) {
  .certdetail { grid-template-columns: 1fr; padding: 1.5rem 1.35rem; }
  .certdetail--nea { padding: 1.5rem 1.35rem; }
  .certdetail__badge { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.2rem 2rem; padding-top: 0; }
  .certdetail__badge img { max-width: 140px; }
}
.footer__motto { color: var(--accent-light); font-weight: 600; letter-spacing: .12em; font-size: .82rem; text-transform: uppercase; }
.footer__certs { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; padding: 1.2rem 0 0; }
.footer__cert { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; color: rgba(255,255,255,.75); }
.footer__cert .ico { width: 17px; height: 17px; color: var(--accent-light); }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 800;
  display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.05rem; border-radius: var(--radius-pill);
  background: var(--wa); color: #fff; font-weight: 700; box-shadow: 0 10px 24px -8px rgba(37, 211, 102, .6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(37, 211, 102, .7); }
.wa-float .ico { width: 24px; height: 24px; }
@media (max-width: 640px) { .wa-float span { display: none; } .wa-float { padding: .8rem; } }

/* ---------- 17. Motion ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 60ms); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- 18. Print ---------- */
@media print {
  .topbar, .site-header, .wa-float, .cta, .site-footer .footer__cta { display: none !important; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
