/* ==========================================================================
   PrimaryTech — Core Stylesheet
   Built to brand guidelines v2.0 (June 2026)
   Palette, typography, and layout devices are derived directly from the
   brand system. Source Sans 3 is the brand typeface.
   ========================================================================== */

/* ---- Fonts ---- */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/source-sans-3-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/source-sans-3-latin-italic.woff2') format('woff2');
}

/* ==========================================================================
   1. Brand tokens
   ========================================================================== */
:root {
  /* Primary (teal) */
  --primary:        #118AB2;
  --primary-light:  #5ABAE4;
  --primary-dark:   #005D82;

  /* Secondary (yellow) */
  --secondary:       #FCC92E;
  --secondary-light: #FFFC65;
  --secondary-dark:  #C59900;

  /* Neutrals */
  --navy:      #0E3F54;
  --body-text: #414144;
  --off-white: #EAF3F7;
  --white:     #FFFFFF;

  /* Derived greys (for borders, muted text — kept minimal & on-brand) */
  --grey-100: #F5F8FA;
  --grey-200: #E2EAEF;
  --grey-400: #9AA8B0;
  --muted:    #6B7780;

  /* Typography */
  --font: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Type scale (from guidelines: Header Light 40pt, Sub Regular 24pt,
     Body Light 15pt, Highlight Bold 15pt — translated to a fluid web scale) */
  --fs-display: clamp(2.4rem, 1.6rem + 3.4vw, 4rem);   /* hero */
  --fs-h1:      clamp(2rem, 1.5rem + 2vw, 2.85rem);     /* ~40pt */
  --fs-h2:      clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem);
  --fs-h3:      clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); /* ~24pt sub-head */
  --fs-lead:    clamp(1.075rem, 1rem + 0.3vw, 1.25rem);
  --fs-body:    1.0625rem;                               /* ~15pt */
  --fs-small:   0.9rem;
  --fs-eyebrow: 0.78rem;

  /* Weights mapped to brand usage */
  --w-light: 300;   /* headlines & large display */
  --w-reg:   400;   /* sub-heads & body */
  --w-semi:  600;   /* emphasis, nav, TECH wordmark feel */
  --w-bold:  700;   /* strong emphasis */

  /* Spacing */
  --container: 1180px;
  --container-narrow: 820px;
  --gutter: clamp(1.25rem, 0.8rem + 2vw, 2.5rem);
  --section-y: clamp(2rem, 1.5rem + 2vw, 3.25rem);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(14, 63, 84, 0.06);
  --shadow:    0 10px 30px rgba(14, 63, 84, 0.09);
  --shadow-lg: 0 24px 60px rgba(14, 63, 84, 0.13);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: var(--w-reg);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--primary-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary); }

h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); font-weight: var(--w-light); }
h1 { font-size: var(--fs-h1); letter-spacing: -0.5px; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.4px; }
h3 { font-size: var(--fs-h3); font-weight: var(--w-reg); }
strong, b { font-weight: var(--w-semi); color: var(--navy); }

::selection { background: var(--secondary); color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ==========================================================================
   3. Layout helpers
   ========================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
/* When two plain (white) sections sit back to back, collapse the doubled gap
   to a single one. Coloured bands (--off / --navy) keep full padding so the
   colour change still reads as a distinct break. */
.section:not(.section--off):not(.section--navy):not(.section--tight)
  + .section:not(.section--off):not(.section--navy):not(.section--tight) {
  padding-top: 0;
}
.section--tight { padding-block: clamp(2rem, 1.5rem + 1.5vw, 3rem); }
/* Two adjacent tinted bands share a background; collapse the second section top
   padding so stacked padding does not read as one empty band. */
.section--off + .section--off { padding-top: 0; }
.section--off  { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.82); }

.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--muted); font-weight: var(--w-reg); }
.center { text-align: center; }
.measure { max-width: 65ch; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.center.measure { margin-inline: auto; }

/* ---- Eyebrow label (brand device: teal label + underline) ---- */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--w-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 7px;
  margin-bottom: 1.1rem;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--primary-light); }
.col-icon { color: var(--primary); margin-bottom: 0.9rem; display: block; }
.eyebrow--center { display: block; }
.eyebrow--center::after { left: 50%; transform: translateX(-50%); }

/* ---- Section heading block ---- */
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 0.9rem; }

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: var(--w-semi); font-size: 1rem;
  padding: 0.85em 1.6em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-align: center;
  line-height: 1.2;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--secondary { background: var(--secondary); color: var(--navy); }
.btn--secondary:hover { background: var(--secondary-dark); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--primary-dark); border-color: var(--grey-200); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--sm { font-size: 0.88rem; padding: 0.55em 1.05em; border-width: 1.5px; }
.btn--on-dark { background: #fff; color: var(--navy); }
.btn--on-dark:hover { background: var(--secondary); color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 1em 2em; font-size: 1.075rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
/* Hero email-capture (visual only — no backend submission yet) */
.hero-capture { display: flex; align-items: stretch; gap: 0.5rem; max-width: 520px; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-capture .field {
  flex: 1 1 200px; min-width: 0; display: flex; align-items: center; gap: 0.6rem;
  background: #fff; border: 1.5px solid var(--grey-200); border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 1.1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.hero-capture .field:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(17,138,178,0.12); }
.hero-capture input[type="email"] {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 1rem; color: var(--navy); min-width: 0; padding: 0.55rem 0;
}
.hero-capture input[type="email"]::placeholder { color: var(--muted); }
.hero-capture .field__icon { color: var(--primary); display: grid; place-items: center; flex-shrink: 0; }
.hero-capture .btn { flex: 0 0 auto; white-space: nowrap; }
.hero-capture__note { font-size: 0.8rem; color: var(--muted); margin-top: 0.55rem; flex-basis: 100%; }
.hero-capture--wide { max-width: 600px; }
.hero-capture--wide .field { flex: 1 1 200px; }
@media (max-width: 520px){ .hero-capture .field { flex-basis: 100%; } .hero-capture .btn { width: 100%; } }
.btn-row.center { justify-content: center; }

/* Text link with arrow (brand "Read more" pattern) */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: var(--w-semi); color: var(--primary);
}
.arrow-link svg { transition: transform .2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   5. Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; min-height: 74px; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; padding: 0; }
.brand-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand-logo .mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-logo .wordmark { font-size: 1.4rem; letter-spacing: 0.5px; color: var(--navy); font-weight: var(--w-reg); }
.brand-logo .wordmark b { font-weight: var(--w-bold); }

.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 0.6rem 0.55rem; border-radius: 8px;
  font-weight: var(--w-semi); font-size: 0.92rem; color: var(--navy);
}
.nav-links > li > a:hover { background: var(--off-white); color: var(--primary-dark); }
.nav-links .has-children > a::after { content: " ▾"; font-size: 0.7em; color: var(--grey-400); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 0.6rem; min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s var(--ease);
  list-style: none;
}
.dropdown.wide { min-width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem; }
.nav-links .has-children:hover .dropdown,
.nav-links .has-children:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 0.55rem 0.75rem; border-radius: 8px; color: var(--body-text); font-size: 0.93rem; font-weight: var(--w-reg); }
.dropdown a:hover { background: var(--off-white); color: var(--primary-dark); }
.dropdown a b { display: block; font-weight: var(--w-semi); color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 0.45rem; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--primary-dark); font-weight: var(--w-semi); font-size: 0.9rem; padding: 0.4rem 0.5rem; border-radius: 999px; white-space: nowrap; transition: color .2s var(--ease), background .2s var(--ease); }
.nav-phone:hover { color: var(--primary); background: var(--off-white); }
.nav-phone svg { color: var(--primary); flex-shrink: 0; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; min-width: 44px; min-height: 44px; box-sizing: border-box; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .3s; }

/* ==========================================================================
   6. Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--off-white); }
.hero__inner { padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem); position: relative; z-index: 2; }
.hero h1 { font-size: var(--fs-display); max-width: 16ch; }
.hero .lead { margin-top: 1.4rem; max-width: 52ch; }
.hero .btn-row { margin-top: 2rem; }
.hero__watermark {
  position: absolute; right: -6%; bottom: -22%;
  width: min(46vw, 560px); color: var(--primary-light);
  opacity: 0.22; z-index: 1; pointer-events: none;
}
.hero--navy { background: var(--navy); }
.hero--navy h1 { color: #fff; }
.hero--navy .lead { color: rgba(255,255,255,0.8); }
.hero--navy .hero__watermark { color: #fff; opacity: 0.07; }

/* Centred hero — used on event detail pages (no image panel) */
.hero--center .container { padding-block: clamp(3.5rem, 2.6rem + 4.5vw, 6rem); position: relative; z-index: 2; }
.hero--center .hero__copy--center h1 { max-width: none; }
.hero--center .hero__copy--center .lead { max-width: 60ch; margin-inline: auto; }
.hero--center .hero__copy--center .hero-capture { margin-inline: auto; justify-content: center; }
.hero--center .hero__copy--center .hero-capture__note { text-align: center; }

.hero__trust { margin-top: 2.4rem; display: flex; flex-wrap: nowrap; gap: 1.2rem; align-items: center; }
.hero__trust span { font-size: 0.82rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.hero__trust svg { color: var(--primary); flex-shrink: 0; }
.hero__copy { min-width: 0; }
@media (max-width: 880px){ .hero__trust { flex-wrap: wrap; row-gap: 0.6rem; } }

/* Accreditation logo strip — placeholder slots (swap <span> for <img> later) */
.hero__accred { margin-top: 1.8rem; display: flex; flex-wrap: nowrap; gap: 0.6rem; align-items: stretch; }
.accred-slot {
  flex: 1 1 0; min-width: 0; height: 74px; padding: 0 0.6rem;
  display: grid; place-items: center;
  background: transparent; border: none; border-radius: 10px;
}
.accred-slot span {
  font-size: 0.66rem; font-weight: var(--w-semi); color: var(--muted);
  text-align: center; line-height: 1.2; letter-spacing: 0.1px;
}
.accred-slot img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain; display: block; }
@media (max-width: 760px){ .hero__accred { flex-wrap: nowrap; } .accred-slot { flex: 1 1 0; height: 64px; padding: 0 0.28rem; } .accred-slot img { max-height: 58px; } }

/* ==========================================================================
   7. Cards & grids
   ========================================================================== */
.grid { display: grid; gap: clamp(1.1rem, 0.8rem + 1vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Two-up split cards (coloured header + body): keep headers equal height so
   the body text in both cards starts on the same line. */
.split-card { display: flex; flex-direction: column; }
.split-card__head { display: flex; flex-direction: column; align-items: center; text-align: center; }
.split-card__head .sc-icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,0.18); color: #fff; flex-shrink: 0;
}
.split-card__head .sc-icon svg { width: 28px; height: 28px; }
.split-card__head h3 {
  margin-top: 1.1rem;
  min-height: calc(2 * 1.3em);   /* reserve two lines so 1- and 2-line headings match */
  display: flex; align-items: center; justify-content: center;
}
.split-card__body { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (max-width: 760px){ .split-card__head h3 { min-height: 0; } }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: var(--radius); padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 1rem; }
.card-icon { width: 28px; height: 28px; max-width: 28px; max-height: 28px; flex: none; color: var(--primary); }
.card-head { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.5rem; }
.card-head h3 { margin: 0; line-height: 1.75rem; }
.card .arrow-link { margin-top: 1rem; }
/* Industries feature cards: equal-height coloured headers so bodies align */
.feature-split { align-items: stretch; }
.feature-card { display: flex; flex-direction: column; }
.feature-card__head { padding: 2.4rem; color: #fff; display: flex; flex-direction: column; min-height: 200px; }
.feature-card__head .pill { align-self: flex-start; }
.feature-card__head h3 { color: #fff; margin-top: auto; padding-top: 1rem; }
.feature-card__body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }
.feature-card__body .arrow-link { margin-top: auto; padding-top: 1rem; }
/* Step cards on off-white sections — soft tint so they lift off the background */
.grid--steps .card {
  background: linear-gradient(180deg, #fff, var(--off-white));
  border-color: rgba(17,138,178,0.16);
  border-top: 3px solid var(--primary);
}
.grid--steps .card:hover { border-color: transparent; border-top-color: var(--primary); }

/* Icon tile (brand device: coloured panel + white icon) */
.icon-tile {
  width: 54px; height: 54px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--primary); color: #fff;
}
.icon-tile svg { width: 27px; height: 27px; }
.icon-tile--light { background: var(--primary-light); }
.icon-tile--navy { background: var(--navy); }
.icon-tile--yellow { background: var(--secondary); color: var(--navy); }

/* Service card as link */
a.card { color: inherit; display: block; }
a.card:hover h3 { color: var(--primary-dark); }

/* Contact cards — flex column so buttons align across all three */
.contact-card { display: flex; flex-direction: column; }
/* Body grows to absorb differing text lengths so every card's button sits on a
   common bottom baseline, with a guaranteed gap above it (no button touching
   the text). */
.contact-card__body { flex: 1 1 auto; }
/* Email lines: fixed-width muted label ("General:" / "Support:") then the address
   filling the rest of the row. Flex keeps the address beside the label (it wraps
   under itself if ever too narrow, never below the label); margin-right on the
   min-width aligns the two addresses. The space after the colon comes from a
   non-breaking space in the markup, so it shows even under a stale cached CSS. */
.contact-card__value { font-weight: 600; margin: 0.3rem 0; display: flex; align-items: baseline; }
.contact-card__value a { color: var(--primary-dark); text-decoration: none; min-width: 0; overflow-wrap: anywhere; }
.contact-card__value a:hover { color: var(--primary); }
.contact-card__value .cc-lbl { flex: 0 0 auto; min-width: 4.2rem; color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.contact-card__btn { margin-top: 2rem; align-self: flex-start; }

/* ---- Full contact form ---- */
.contact-form-card {
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form .cf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form .cf-field--full { grid-column: 1 / -1; }
.contact-form label.cf-label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.contact-form label.cf-label .req { color: var(--primary); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--navy);
  background: var(--off-white); border: 1.5px solid var(--grey-200);
  border-radius: 10px; padding: 0.7rem 0.9rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(17,138,178,0.12); background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .cf-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 0.3rem; }
.contact-form .cf-note { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 620px){ .contact-form { grid-template-columns: 1fr; } }

/* ==========================================================================
   8. Methodology (Strategise / Architect / Protect / Empower)
   The numbered sequence is genuine, so numbered markers are earned.
   ========================================================================== */
.method { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.method__step {
  background: var(--grey-100); border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.8rem; position: relative; overflow: hidden;
}
.method__step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.method__step:nth-child(1)::before { background: var(--primary-light); }
.method__step:nth-child(2)::before { background: var(--primary); }
.method__step:nth-child(3)::before { background: var(--navy); }
.method__step:nth-child(4)::before { background: var(--secondary); }
.method__head { display: flex; align-items: center; justify-content: space-between; }
.method__icon { flex-shrink: 0; }
.method__step:nth-child(1) .method__icon { color: var(--primary-light); }
.method__step:nth-child(2) .method__icon { color: var(--primary); }
.method__step:nth-child(3) .method__icon { color: var(--navy); }
.method__step:nth-child(4) .method__icon { color: var(--secondary-dark); }
.method__num { font-size: 2rem; font-weight: var(--w-bold); line-height: 1; }
.method__step:nth-child(1) .method__num { color: var(--primary-light); }
.method__step:nth-child(2) .method__num { color: var(--primary); }
.method__step:nth-child(3) .method__num { color: var(--navy); }
.method__step:nth-child(4) .method__num { color: var(--secondary-dark); }
.method__step h3 { margin: 0.7rem 0 0.5rem; font-weight: var(--w-semi); color: var(--navy); }
.method__step p { font-size: 0.96rem; color: var(--muted); }

/* ==========================================================================
   9. Quote / testimonial (brand device: yellow panel)
   ========================================================================== */
.quote {
  background: var(--secondary); color: var(--navy);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 1.4rem + 1.5vw, 3rem);
}
.quote p { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); font-weight: var(--w-light); line-height: 1.4; color: var(--navy); }
.quote cite { display: block; margin-top: 1.1rem; font-style: normal; font-weight: var(--w-semi); font-size: 0.95rem; color: var(--primary-dark); }

.quote--soft { background: var(--off-white); }
.quote--soft p { color: var(--navy); }
.quote--soft cite { color: var(--primary); }
.promise-band { text-align: center; }
.promise-quote { width: 46px; height: 46px; color: var(--secondary); opacity: 0.9; margin: 0 auto 1.2rem; display: block; }
.promise-text { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem); font-weight: var(--w-light); line-height: 1.45; color: #fff; max-width: 60ch; margin: 0 auto; }
.promise-cite { display: block; margin-top: 1.4rem; font-weight: var(--w-semi); font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--secondary); }

/* ==========================================================================
   10. Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat__icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 0.9rem; border-radius: 14px; background: rgba(255,255,255,0.08); color: var(--secondary); }
.stat__icon svg { width: 26px; height: 26px; }
/* Stats on light sections (e.g. service pages) need a tinted tile + teal icon */
.section:not(.section--navy) .stat__icon { background: var(--off-white); color: var(--primary); }
.stat__num { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.2rem); font-weight: var(--w-bold); color: var(--primary); line-height: 1; }
.stat__icon { width: 40px; height: 40px; color: var(--primary); margin: 0 auto 0.5rem; display: block; }
.section--navy .stat__icon { color: var(--secondary); background: transparent; }
.section--navy .stat__num { color: var(--secondary); }
/* Stat icon: compact, hugged and centred so icon sits snug above its number (supersedes earlier conflicting size/display rules). */
.stat__icon { display: grid; place-items: center; width: fit-content; height: auto; margin: 0 auto 0.4rem; }
.stat__icon svg { width: 28px; height: 28px; }
.stat__label { margin-top: 0.5rem; font-size: 0.95rem; color: var(--muted); }
.section--navy .stat__label { color: rgba(255,255,255,0.75); }

/* ==========================================================================
   11. Feature list (check items)
   ========================================================================== */
.check-list { list-style: none; padding: 0; display: grid; gap: 0.8rem; }
.grid--2 > div > .check-list, .grid--3 > div > .check-list { margin-top: 1.4rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.check-list svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }

/* Split feature (text + panel) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1.5rem + 3vw, 4rem); align-items: center; }
/* When a split's right column is a checklist (photo panels removed), top-align
   the columns and give the heading room above the paragraph. */
.split > div .eyebrow { margin-bottom: 0.6rem; display: inline-block; }
.split > div h2 { margin-bottom: 1.1rem; }
.split > div h2 + p { margin-top: 0; }
.split:has(.check-list:not(:first-child)) { align-items: center; }
.split > div > .check-list { margin-top: 0; }
/* Layout B: top-align the pulled-out highlight with the paragraph. */
.split--top { align-items: start; }
/* Layout A: desktop column order follows the DOM (panel first for a left-hand
   visual, text first for a right-hand visual). This modifier keeps the text stacked
   first, above the visual, on mobile (see media query below). */
.split__panel {
  background: var(--primary); border-radius: var(--radius-lg); min-height: 320px;
  display: grid; place-items: center; color: #fff; padding: 2rem;
  position: relative; overflow: hidden;
}
.split__panel.navy { background: var(--navy); }
.split__panel.light { background: var(--off-white); color: var(--navy); }
.split__panel .placeholder-note { font-size: 0.85rem; opacity: 0.7; position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; }
.split__panel .mark-lg { width: 120px; opacity: 0.9; }
.split__panel .step-icon { width: 110px; height: 110px; color: #fff; opacity: 0.92; }

/* ==========================================================================
   12. Badge strip (partners / accreditations — placeholders)
   ========================================================================== */
.badge-strip { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: center; }
.badge-ph {
  height: 54px; min-width: 120px; padding: 0 1.1rem;
  border: 1px dashed var(--grey-400); border-radius: 10px;
  display: grid; place-items: center; color: var(--muted);
  font-size: 0.8rem; font-weight: var(--w-semi); letter-spacing: 0.3px;
  background: #fff; text-align: center;
}
.badge-ph.has-logo { background: transparent; border: none; }
.badge-ph img { height: 30px; max-width: 100%; width: auto; object-fit: contain; display: block; }
.section--accred .badge-ph img { height: 64px; }
.section--accred .badge-ph { min-width: 0; padding: 0 0.5rem; }
.logo-strip { display: flex; flex-wrap: wrap; gap: 1.75rem 2.75rem; align-items: center; justify-content: center; }
.logo-strip img {
  height: 30px; width: auto; max-width: 150px; object-fit: contain;
}
/* Optical balancing: compact marks larger, wide wordmarks smaller */
.logo-strip img[alt="Dell"] { height: 40px; }
.logo-strip img[alt="HP"] { height: 38px; }
.logo-strip img[alt="ASUS"] { height: 24px; }
.logo-strip img[alt="Clevertouch"] { height: 22px; }
.logo-strip img[alt="Newline"] { height: 26px; }
.logo-strip img[alt="Microsoft Teams"] { height: 34px; }
.logo-strip img[alt="Google Meet"] { height: 34px; }
.logo-strip img[alt="InVentry"] { max-width: 175px; }

.logo-strip img[alt="Everything ICT"] { height: 44px; }
.logo-strip img[alt="Microsoft Azure"] { height: 34px; }
.logo-strip img[alt="Microsoft Intune"] { height: 34px; }
.logo-strip img[alt="Jamf"] { height: 28px; }
.logo-strip img[alt="Google Workspace"] { height: 26px; max-width: 210px; }
.logo-strip img[alt="Microsoft 365"] { height: 30px; max-width: 200px; }
.logo-strip img[alt="Microsoft Copilot"] { height: 28px; max-width: 200px; }
.logo-strip img[alt="Google Gemini"] { height: 28px; max-width: 200px; }
.logo-strip img[alt="Claude"] { height: 24px; max-width: 150px; }
.logo-strip img[alt="Lenovo"] { height: 26px; }
.logo-strip img[alt="Apple"] { height: 34px; }
.logo-strip img[alt="Ubiquiti"] { height: 24px; }
.logo-strip img[alt="Cisco Meraki"] { height: 22px; }
@media (max-width: 560px) {
  .logo-strip { gap: 1.4rem 2rem; }
  .logo-strip img { height: 26px; max-width: 120px; }
  .logo-strip img[alt="Dell"] { height: 34px; }
  .logo-strip img[alt="HP"] { height: 33px; }
  .logo-strip img[alt="ASUS"] { height: 21px; }
  .logo-strip img[alt="Clevertouch"] { height: 19px; }
  .logo-strip img[alt="Newline"] { height: 23px; }
  .logo-strip img[alt="Microsoft Teams"] { height: 30px; }
  .logo-strip img[alt="Google Meet"] { height: 30px; }
  .logo-strip img[alt="InVentry"] { max-width: 150px; }
  .logo-strip img[alt="Microsoft Azure"] { height: 30px; }
  .logo-strip img[alt="Microsoft Intune"] { height: 30px; }
  .logo-strip img[alt="Jamf"] { height: 24px; }
  .logo-strip img[alt="Google Workspace"] { height: 23px; max-width: 185px; }
  .logo-strip img[alt="Microsoft 365"] { height: 26px; max-width: 175px; }
  .logo-strip img[alt="Lenovo"] { height: 23px; }
  .logo-strip img[alt="Apple"] { height: 30px; }
  .logo-strip img[alt="Ubiquiti"] { height: 21px; }
  .logo-strip img[alt="Cisco Meraki"] { height: 19px; }
}

/* ==========================================================================
   13. Breadcrumb
   ========================================================================== */
.breadcrumb { font-size: 0.85rem; color: var(--muted); padding-block: 1rem 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 0.4rem; color: var(--grey-400); }

/* ==========================================================================
   14. CTA band
   ========================================================================== */
.cta-band { background: var(--primary); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 1.3rem + 1.2vw, 2.4rem) clamp(2.2rem, 1.8rem + 2vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; max-width: none; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0.9rem auto 1.8rem; max-width: 50ch; }
.cta-band__mark { position: absolute; left: -5%; bottom: -40%; width: 280px; color: #fff; opacity: 0.08; pointer-events: none; }
.cta-capture { display: flex; align-items: stretch; gap: 0.5rem; max-width: 540px; margin: 0 auto; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }
.cta-capture .field { flex: 1 1 220px; min-width: 0; display: flex; align-items: center; gap: 0.6rem; background: #fff; border: 1.5px solid transparent; border-radius: 999px; padding: 0.35rem 0.5rem 0.35rem 1.1rem; transition: box-shadow .2s var(--ease); }
.cta-capture .field:focus-within { box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
.cta-capture input[type="email"] { flex: 1; border: 0; outline: 0; background: transparent; font: inherit; font-size: 1rem; color: var(--navy); min-width: 0; padding: 0.55rem 0; }
.cta-capture input[type="email"]::placeholder { color: var(--muted); }
.cta-capture .field__icon { color: var(--primary); display: grid; place-items: center; flex-shrink: 0; }
.cta-capture .btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 520px){ .cta-capture .field { flex-basis: 100%; justify-content: center; } .cta-capture input[type="email"] { flex: 0 1 auto; width: 11rem; text-align: center; } .cta-capture .btn { width: 100%; justify-content: center; } }
/* Long CTA labels wrap to two lines instead of overflowing the pill on mobile. */
@media (max-width: 520px){ .cta-capture .btn { white-space: normal; line-height: 1.25; padding-top: 0.55em; padding-bottom: 0.55em; } }
/* Where supported (Chromium, Safari 17.4+), size the input to its content so the icon and text sit together as a centred pair; older browsers keep the fixed-width fallback above. */
@supports (field-sizing: content){ @media (max-width: 520px){ .cta-capture input[type="email"] { field-sizing: content; width: auto; min-width: 5rem; max-width: 78vw; text-align: left; } } }

/* ==========================================================================
   15. Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding-block: clamp(3rem, 2.5rem + 2vw, 4.5rem) 2rem; font-size: 0.94rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: var(--w-bold); margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--secondary); }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
/* Footer link lists: 2 columns on mobile so the groups are not several scrolls long
   (desktop unchanged). Scoped to the four .footer-grid link lists; no markup change. */
@media (max-width: 600px){ .site-footer .footer-grid ul { grid-template-columns: 1fr 1fr; column-gap: 1rem; } }
.footer-brand .wordmark { color: #fff; font-size: 1.35rem; }
.footer-brand .wordmark b { font-weight: var(--w-bold); }
.footer-brand p { margin-top: 0.9rem; max-width: 30ch; font-size: 0.9rem; }
.footer-contact { margin-top: 1rem; display: grid; gap: 0.4rem; font-size: 0.92rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.85rem; }
.footer-bottom .legal-name { color: rgba(255,255,255,0.5); }
.footer-locations { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.8rem; line-height: 1.7; }

/* ==========================================================================
   16. Utility
   ========================================================================== */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.pill { display: inline-block; background: var(--off-white); color: var(--primary-dark); font-size: 0.8rem; font-weight: var(--w-semi); padding: 0.3em 0.85em; border-radius: 100px; }
.divider { height: 1px; background: var(--grey-200); border: 0; margin-block: var(--section-y); }

/* ==========================================================================
   17. Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__panel { min-height: 220px; order: 1; }
  /* Layout A: always keep the text above the visual when stacked on mobile. */
  .split--reverse > .split__panel { order: 1; }
}
@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--grey-200);
    padding: 0.5rem; box-shadow: var(--shadow);
    max-height: calc(100vh - 74px); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 0.9rem 1rem; }
  /* Mobile: submenus collapse into an accordion (JS toggles .open on the li) */
  .nav-links .has-children > a { display: flex; align-items: center; justify-content: space-between; }
  .nav-links .has-children > a::after { display: inline-block; transition: transform .2s; }
  .nav-links .has-children.open > a::after { transform: rotate(180deg); }
  .dropdown, .dropdown.wide {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 0.5rem 1rem;
    display: none; min-width: 0;
  }
  .nav-links .has-children.open > .dropdown,
  .nav-links .has-children.open > .dropdown.wide { display: block; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   18. Scroll reveal
   ========================================================================== */
.js [data-reveal] { opacity: 1; transform: none; transition: none; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
/* Scroll-reveal disabled: all content visible immediately for reliable rendering */
.js [data-reveal].reveal-all { opacity: 1 !important; transform: none !important; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ==========================================================================
   19. Split hero with branded graphic (Option A)
   ========================================================================== */
.hero--split .hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,1.5rem + 3vw,3.5rem);
  align-items: center; padding-block: clamp(3rem,2.2rem + 4vw,5.5rem);
  position: relative; z-index: 2;
}
.hero-art {
  position: relative; min-height: clamp(300px,38vw,440px);
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 55%, var(--primary-light));
  box-shadow: var(--shadow);
}
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero--split .hero__copy h1 { font-size: var(--fs-display); }
@media (max-width: 880px) {
  .hero--split .hero__grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 220px; order: 2; }
}

/* ==========================================================================
   19. Real logo image + split hero (added with brand asset integration)
   ========================================================================== */
.site-logo { height: 38px; width: auto; display: block; }
.site-footer .site-logo { height: 40px; margin-bottom: 0.4rem; }
@media (max-width: 760px){ .site-logo { height: 32px; } }

/* Split hero with branded graphic (Option A) */
.hero--split .hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,1.5rem + 3vw,3.5rem);
  align-items: center; padding-block: clamp(1rem,0.6rem + 1.5vw,2rem);
}
.hero--split .hero__copy h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); max-width: none; }
.hero--split .lead { margin-top: 1.3rem; }
.hero--split .btn-row { margin-top: 2rem; }
.hero-art {
  position: relative; min-height: clamp(320px, 20vw + 120px, 410px); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 55%, var(--primary-light));
  box-shadow: var(--shadow);
}
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Self-contained panel artwork supplied as an image (e.g. cyber security hero).
   Fills the panel like the inline SVGs; the container's radius + overflow keep
   corners consistent. Only affects .hero-art panels that use an <img>. */
.hero-art > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
/* Business hub hero: the photo is portrait with sky at the top; shift the crop
   down so the blue sky is dropped and the rooftop MONOCLE sign stays in. Scoped
   to this one image, so no other .hero-art photo is affected. */
.hero-art > img[src$="monocle-building.webp"] { object-position: center 25%; }
.split__panel--photo { padding: 0; overflow: hidden; }
.split__panel--photo > img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px){
  .hero--split .hero__grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 260px; order: 2; }
}

/* nav tidy — prevent label wrap */
.nav-links > li > a { white-space: nowrap; }
@media (min-width: 1081px){ .nav-links { gap: 0; } .nav-links > li > a { padding-left: 0.5rem; padding-right: 0.5rem; font-size: 0.95rem; } .nav-cta { gap: 0.3rem; } .nav-cta .btn--sm { padding: 0.5em 0.8em; } .site-logo { height: 30px; } .nav { gap: 0.4rem; } }
@media (max-width: 1080px){ .nav-links > li > a { padding: 0.6rem 0.6rem; font-size: 0.92rem; } }
@media (max-width: 1240px) and (min-width: 1081px){
  .nav-phone span { display: none; }
  .nav-phone { padding: 0.4rem; }
}

/* ==========================================================================
   20. Saphire-style rhythm components (homepage rework)
   ========================================================================== */

/* --- Layered hero: floating elements around the graphic --- */
.hero--layered .hero-art { position: relative; overflow: visible; }
.float-chip {
  position: absolute; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 0.7rem 0.95rem; white-space: nowrap;
  display: flex; align-items: center; gap: 0.7rem; z-index: 5;
  border: 1px solid var(--grey-200);
}
.float-chip .fc-icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; color: #fff; }
.float-chip .fc-icon svg { width: 20px; height: 20px; }
.float-chip .fc-text { display: flex; flex-direction: column; }
.float-chip .fc-num { font-weight: 700; color: var(--navy); font-size: 1.02rem; line-height: 1.1; }
.float-chip .fc-label { font-size: 0.74rem; color: var(--muted); line-height: 1.2; margin-top: 2px; }
.float-chip--tl { top: 14px; left: 14px; }
.float-chip--br { bottom: 14px; right: 14px; }
.float-chip--ml { bottom: 14px; left: 14px; }
@media (max-width: 1100px){ .float-chip--tl{left:6px} .float-chip--br{right:6px} .float-chip--ml{left:6px;bottom:60px} }
@media (max-width: 880px){ .float-chip { display: none; } }

/* --- Dark statement band with pulled quote --- */
.statement {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.6rem,1.2rem + 1.2vw,2.4rem); position: relative; overflow: hidden;
  max-width: 1040px; margin-inline: auto;
}
/* Centred statement band (used for service-page intro sections) */
.statement--center { padding-block: clamp(1.5rem,1.2rem + 1.1vw,2.3rem); }
.statement--center .section-head { margin: 0 auto; max-width: 70ch; }
.statement--center .eyebrow { color: var(--primary-light); }
.statement--center h2 { color: #fff; }
.statement--center .lead { color: rgba(255,255,255,0.82); }
.statement strong, .statement b { color: var(--secondary); font-weight: var(--w-semi); }
.statement__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,1.5rem + 2vw,3.5rem); align-items: center; }
.statement__grid > div { max-width: 80ch; margin-inline: auto; }
.statement h2 { color: #fff; font-weight: var(--w-light); }
.statement .eyebrow { color: var(--primary-light); }
.statement__quote { background: rgba(255,255,255,0.07); border-left: 3px solid var(--secondary); border-radius: 12px; padding: 1.4rem 1.5rem; }
.statement__quote p { color: rgba(255,255,255,0.92); font-size: 1.05rem; font-style: italic; }
.statement__quote cite { display:block; margin-top: 0.8rem; font-style: normal; font-weight: 600; color: var(--secondary); font-size: 0.9rem; }
.statement__mark { position: absolute; right: -4%; top: -30%; width: 320px; color: #fff; opacity: 0.05; pointer-events: none; }
@media (max-width: 820px){ .statement__grid { grid-template-columns: 1fr; } }

/* --- Image-led feature cards (clean coloured header + icon) --- */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem,1.1rem + 1.6vw,2.6rem); max-width: 920px; margin-inline: auto; }
.industry-grid { max-width: 920px; margin-inline: auto; gap: clamp(1.6rem,1.1rem + 1.6vw,2.6rem); }
.feat-card { background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); display: flex; flex-direction: column; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat-card__head {
  padding: 2.2rem 1.4rem 2rem; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.9rem; justify-content: center;
}
.feat-card__head .fi { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.feat-card__head .fi svg { width: 24px; height: 24px; }
.feat-card__head h3 { color: #fff; margin: 0; font-size: 1.2rem; }
.feat-card__body { padding: 1.8rem 1.5rem 2rem; flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.feat-card__body p { color: var(--muted); font-size: 1rem; flex: 1; }
.feat-card__body .arrow-link { margin-top: 1.3rem; }
.fh-teal { background: linear-gradient(120deg, var(--primary-dark), var(--primary)); }
.fh-teal .fi { background: rgba(255,255,255,0.2); color: #fff; }
.fh-navy { background: linear-gradient(120deg, var(--navy), var(--primary-dark)); }
.fh-navy .fi { background: rgba(255,255,255,0.2); color: #fff; }
.fh-light { background: linear-gradient(120deg, var(--primary), var(--primary-light)); }
.fh-light .fi { background: rgba(255,255,255,0.22); color: #fff; }
.fh-yellow { background: linear-gradient(120deg, var(--secondary-dark), var(--secondary)); }
.fh-yellow .fi { background: rgba(255,255,255,0.3); color: var(--navy); }
.fh-yellow h3 { color: var(--navy); }
@media (max-width: 760px){ .feat-grid { grid-template-columns: 1fr; } }

/* --- Showcase band (product/visual bleed + points) --- */
.showcase { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,1.5rem + 3vw,4rem); align-items: center; }
.showcase__points { display: grid; gap: 1.4rem; }
.showcase__point { display: flex; gap: 0.9rem; align-items: flex-start; }
.showcase__point .sp-num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: var(--off-white); color: var(--primary-dark); font-weight: 700; display: grid; place-items: center; font-size: 0.95rem; }
.showcase__point h4 { color: var(--navy); font-size: 1.08rem; margin-bottom: 0.25rem; }
.showcase__point p { color: var(--muted); font-size: 0.97rem; }
.showcase__visual { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-lg); min-height: 380px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); display:grid; place-items:center; }
.showcase__visual .ph { position:absolute; bottom:16px; left:0; right:0; text-align:center; font-size:0.8rem; font-weight:600; letter-spacing:0.5px; color:#fff; opacity:0.85; }
@media (max-width: 880px){ .showcase { grid-template-columns: 1fr; } .showcase__visual{ order:-1; min-height:260px; } }

/* --- Horizontal four-step methodology row with arrow connectors --- */
.method-row { display: flex; align-items: stretch; gap: 0.5rem; }
.method-step {
  flex: 1; background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.method-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.method-step .ms-num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 0.9rem;
  border-radius: 12px; background: var(--primary); color: #fff;
  font-weight: var(--w-bold); font-size: 1rem;
}
.method-step:nth-child(1) .ms-num { background: var(--primary-dark); }
.method-step:nth-child(3) .ms-num { background: var(--primary); }
.method-step:nth-child(5) .ms-num { background: var(--navy); }
.method-step:nth-child(7) .ms-num { background: var(--secondary); color: var(--navy); }
.method-step h4 { color: var(--navy); font-size: 1.15rem; margin-bottom: 0.4rem; }
.method-step p { color: var(--muted); font-size: 0.95rem; }
.method-arrow {
  flex: 0 0 auto; align-self: center; display: grid; place-items: center;
  width: 28px; color: var(--primary); opacity: 0.75;
}
.method-arrow svg { width: 24px; height: 24px; }
@media (max-width: 880px){
  .method-row { flex-direction: column; }
  .method-arrow { transform: rotate(90deg); width: auto; padding: 0.3rem 0; }
}

/* --- Testimonial wall (denser, staggered) --- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 0.8rem + 1vw, 1.6rem); align-items: stretch; }
.quote-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 328px)); justify-content: center; max-width: 1040px; margin-inline: auto; }
.quote-card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 3.2rem 1.8rem 1.8rem; display: flex; flex-direction: column; position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.quote-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--primary);
}
.quote-card::before {
  content: "\201C"; position: absolute; top: 1.1rem; left: 1.5rem;
  font-size: 4rem; line-height: 1; color: var(--primary); opacity: 0.16;
  font-family: Georgia, 'Times New Roman', serif; pointer-events: none;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.quote-card .qc-text { color: var(--body-text); font-size: 1.05rem; line-height: 1.65; flex: 1; position: relative; z-index: 1; }
.quote-card .qc-by {
  margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--grey-200);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.quote-card .qc-name { font-weight: var(--w-bold); color: var(--navy); font-size: 0.95rem; }
.quote-card .qc-role { font-size: 0.82rem; color: var(--muted); }
/* Per-card colour accents for warmth and variety */
.qc--teal::after   { background: var(--primary); }
.qc--teal::before  { color: var(--primary); }
.qc--navy::after   { background: var(--navy); }
.qc--navy::before  { color: var(--navy); }
.qc--yellow::after { background: var(--secondary); }
.qc--yellow::before{ color: var(--secondary-dark); opacity: 0.28; }
/* Testimonials 3-across: top-align the quote so every card starts its text at
   the same line (under the quote mark) and the leftover space sits consistently
   above the attribution, rather than floating a short quote mid-card. Equal
   height still comes from the grid's align-items:stretch and the attribution
   stays bottom-anchored via qc-text flex:1; this only sets where the text begins.
   min-height floors an all-short row so it is not stubby. */
.quote-grid--3 .quote-card { min-height: 16rem; }
.quote-grid--3 .quote-card .qc-text { display: flex; flex-direction: column; justify-content: flex-start; }
/* Stacked (<=880px, 1 per row): let each card size to its own content. */
@media (max-width: 880px){ .quote-grid--3 .quote-card { min-height: 0; } }
@media (max-width: 880px){ .quote-grid { grid-template-columns: 1fr 1fr; } .quote-grid--3 { grid-template-columns: 1fr; max-width: 520px; } }
@media (max-width: 600px){ .quote-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px){
  /* On small phones, keep only Client Portal in the bar; Support stays reachable in the menu */
  .nav-cta .btn[href*="support/"] { display: none; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 0.4rem; }
}

/* --- Full-bleed image CTA --- */
.cta-full { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(120deg, var(--primary-dark), var(--primary) 60%, var(--primary-light)); padding: clamp(1.9rem,1.5rem + 1.6vw,3rem) clamp(1.5rem,1rem + 3vw,4rem); text-align: center; color: #fff; max-width: 1040px; margin-inline: auto; }
.cta-full::before { content:""; position:absolute; inset:0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 26px); }
.cta-full > * { position: relative; z-index: 2; }
.cta-full h2 { color: #fff; max-width: none; margin-inline: auto; }
.cta-full p { color: rgba(255,255,255,0.9); max-width: 52ch; margin: 0.8rem auto 1.6rem; }
.cta-full .float-chip { position: static; display: inline-flex; margin: 0 0.4rem; }

/* Event detail hero icon */
.hero-art:has(.event-hero-icon) { display: flex; align-items: center; justify-content: center; }
.hero-art svg.event-hero-icon { position: static !important; inset: auto !important; top: auto; left: auto; transform: none !important; width: clamp(120px, 30%, 200px) !important; height: auto !important; color: #fff; opacity: 0.95; }

/* Blog article body */
/* ---- Article / editorial typography ---- */
.article { font-size: 1.08rem; }
.article h2 {
  color: var(--navy); font-weight: var(--w-bold);
  margin: 2.6rem 0 0.9rem; padding-top: 0.2rem;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
  position: relative; line-height: 1.25;
}
/* small teal marker before each heading */
.article h2::before {
  content: ""; display: block; width: 42px; height: 3px;
  background: var(--primary); border-radius: 2px; margin-bottom: 0.9rem;
}
.article h2:first-child { margin-top: 0; }
.article h3 { color: var(--navy); font-weight: var(--w-semi); margin: 1.8rem 0 0.6rem; font-size: 1.2rem; }
.article p { color: var(--body-text); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.08rem; }
/* opening paragraph gets emphasis */
.article > p:first-of-type { font-size: 1.22rem; line-height: 1.7; color: var(--navy); font-weight: var(--w-reg); }
/* drop-cap on the first letter of the article */
.article > p:first-of-type::first-letter {
  float: left; font-size: 3.4rem; line-height: 0.82;
  font-weight: var(--w-bold); color: var(--primary);
  margin: 0.32rem 0.6rem 0 0;
}
.article a { color: var(--primary-dark); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.article a:hover { color: var(--primary); }
.article ul, .article ol { margin: 0 0 1.25rem 0; padding-left: 0; list-style: none; }
.article ul li, .article ol li {
  position: relative; padding-left: 1.7rem; margin-bottom: 0.6rem;
  line-height: 1.7; color: var(--body-text); font-size: 1.06rem;
}
.article ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 2px; background: var(--secondary);
}
/* Check-lists carry their own tick marker, so inside .article suppress the
   generic square bullet (and the indent it reserved) to avoid a double marker. */
.article ul.check-list li::before { content: none; }
.article ul.check-list li { padding-left: 0; }

/* Case-study "Services involved": compact brand-card tiles, in the article
   column just under the intro. Mirrors the .card look (border, radius, hover
   lift); no per-service icons. Works at 1 tile or several (wraps, left-aligned). */
.cs-services { margin: 1.8rem 0 2.4rem; }
.cs-services .eyebrow { display: block; margin-bottom: 0.8rem; }
.cs-services__grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.cs-service-card {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.15rem;
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.article .cs-service-card { text-decoration: none; } /* override .article a underline */
.cs-service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: transparent; }
.cs-service-card__name { color: var(--navy); font-weight: var(--w-semi); }
.cs-service-card:hover .cs-service-card__name { color: var(--primary-dark); }
.article ol { counter-reset: a-ol; }
.article ol li { counter-increment: a-ol; }
.article ol li::before {
  content: counter(a-ol); position: absolute; left: 0; top: 0.05em;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--off-white); color: var(--primary-dark);
  font-size: 0.78rem; font-weight: var(--w-bold);
  display: grid; place-items: center;
}
.article blockquote {
  margin: 1.8rem 0; padding: 0.4rem 0 0.4rem 1.4rem;
  border-left: 4px solid var(--primary); color: var(--navy);
  font-size: 1.18rem; line-height: 1.6; font-style: italic;
}
/* subtle divider between major sections */
.article h2 + p { margin-top: 0; }

/* article meta row under the title (date / read time / share) */
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center;
  margin: 1.4rem auto 0; max-width: 760px;
  padding-bottom: 1.6rem; border-bottom: 1px solid var(--grey-200);
  font-size: 0.92rem; color: var(--muted);
}
.article-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.article-meta svg { color: var(--primary); flex-shrink: 0; }

/* Contact map embed */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; min-height: 480px; box-shadow: var(--shadow); background: var(--off-white); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 480px; }
@media (max-width: 820px){ .map-embed { min-height: 340px; } .map-embed iframe { min-height: 340px; } }

/* ---- Terms / document hub ---- */
.doc-group { margin-bottom: 2.6rem; }
.doc-group > h2 {
  color: var(--navy); font-size: 1.3rem; font-weight: var(--w-bold);
  margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--off-white);
}
.doc-list { display: flex; flex-direction: column; gap: 0.6rem; }
.doc-row {
  display: flex; align-items: center; gap: 0.9rem;
  background: #fff; border: 1px solid var(--grey-200); border-radius: 12px;
  padding: 0.9rem 1.1rem; text-decoration: none; color: var(--navy);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.doc-row:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-1px); }
.doc-row__icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 9px;
  display: grid; place-items: center; background: var(--off-white); color: var(--primary);
}
.doc-row__icon svg { width: 20px; height: 20px; }
.doc-row__title { flex: 1; font-weight: 600; line-height: 1.3; font-size: 1.02rem; }
.doc-row__tag {
  flex-shrink: 0; font-size: 0.7rem; font-weight: var(--w-bold);
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.2rem 0.55rem; border-radius: 999px;
  background: var(--off-white); color: var(--primary-dark);
}
.doc-row__tag--ext { background: #fff4d6; color: #7a5b00; }
.doc-row__tag--soon { background: #f1f1f3; color: var(--muted); }
.doc-row__arrow { flex-shrink: 0; color: var(--muted); display: grid; place-items: center; }
.doc-row:hover .doc-row__arrow { color: var(--primary); }
.doc-row--soon { cursor: default; }
.doc-row--soon:hover { border-color: var(--grey-200); box-shadow: none; transform: none; }

/* ---- Location 'areas we cover' chips ---- */
.area-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #fff; border: 1px solid var(--grey-200); border-radius: 999px;
  padding: 0.5rem 0.95rem; font-size: 0.95rem; font-weight: 600; color: var(--navy);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.area-chip:hover { border-color: var(--primary); box-shadow: 0 2px 8px rgba(14,63,84,0.06); }
.area-chip svg { color: var(--primary); flex-shrink: 0; }

/* ---- Meet the Team ---- */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin-top: 1.6rem; }
.team-grid--lead { grid-template-columns: repeat(2, 1fr); max-width: 820px; }
.team-card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 1.8rem; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.team-card:hover { box-shadow: 0 8px 28px rgba(14,63,84,0.08); transform: translateY(-3px); }
.team-card--lead { padding: 2.2rem; }
.team-photo {
  width: 110px; height: 110px; border-radius: 50%; margin-bottom: 1.2rem;
  display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
}
.team-card--lead .team-photo { width: 132px; height: 132px; }
.team-photo--placeholder span { font-size: 2.1rem; font-weight: 700; letter-spacing: 1px; font-family: var(--font); }
.team-card--lead .team-photo--placeholder span { font-size: 2.5rem; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body h3 { margin: 0 0 0.25rem; color: var(--navy); font-size: 1.25rem; }
.team-card__role { color: var(--primary); font-weight: 600; margin: 0 0 0.7rem; font-size: 0.98rem; }
.team-card__bio { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
@media (max-width: 860px) {
  .team-grid, .team-grid--lead { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid, .team-grid--lead { grid-template-columns: 1fr; }
}

/* Leadership: three across */
.team-grid--three { grid-template-columns: repeat(3, 1fr); max-width: none; }
@media (max-width: 860px) { .team-grid--three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid--three { grid-template-columns: 1fr; } }

/* Leadership: four across */
.team-grid--four { grid-template-columns: repeat(4, 1fr); max-width: none; }
.team-grid--four .team-card--lead { padding: 1.7rem; }
.team-grid--four .team-photo { width: 104px; height: 104px; }
@media (max-width: 1024px) { .team-grid--four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid--four { grid-template-columns: 1fr; } }

/* Our teams cards: keep department names on one line */
.team-teams-grid .card h3 { white-space: nowrap; }

/* Auto-fit card grid: balances any number of cards, no stranded singletons.
   Cards are min 260px, expanding to fill — on wide screens this gives a tidy
   multi-column layout that wraps evenly (e.g. 10 cards -> balanced rows). */
.grid--auto { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1099px) and (min-width: 481px) { .grid--auto { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid--auto { grid-template-columns: 1fr; } }

/* ---- Cookie consent card + form thank-you ---- */
.pt-consent {
  position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 9999;
  width: min(380px, calc(100vw - 2.5rem));
  background: #fff; border-radius: 14px; padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: 0 12px 40px rgba(14,63,84,0.22); border: 1px solid var(--off-white, #EAF3F7);
}
.pt-consent__close {
  position: absolute; top: 0.75rem; right: 0.9rem; border: 0; background: none;
  font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--muted, #6b7280);
}
.pt-consent__title { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--navy, #0E3F54); }
.pt-consent__text { margin: 0 0 1rem; font-size: 0.88rem; line-height: 1.5; color: var(--body, #414144); }
.pt-consent__text a { color: var(--primary, #118AB2); }
.pt-consent__actions { display: flex; gap: 0.6rem; }
.pt-consent__btn {
  flex: 1; padding: 0.6rem 1rem; border-radius: 8px; cursor: pointer;
  font-weight: 600; font-size: 0.9rem; border: 1px solid var(--primary, #118AB2);
}
.pt-consent__btn--accept { background: var(--primary, #118AB2); color: #fff; }
.pt-consent__btn--deny { background: #fff; color: var(--primary, #118AB2); }
.pt-thankyou {
  background: var(--off-white, #EAF3F7); border: 1px solid var(--light, #5ABAE4);
  border-radius: 10px; padding: 1rem 1.2rem; color: var(--navy, #0E3F54);
  font-weight: 600;
}
@media (max-width: 480px) {
  .pt-consent { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; width: auto; }
}
/* Balance multi-line headings so no single word is orphaned, on all screen sizes */
h1, h2, h3, h4 { text-wrap: balance; }

/* Social icons: footer greyscale + contact-page brand colourway */
.pt-social{display:flex;gap:.55rem;align-items:center}
.pt-social a{display:inline-flex;line-height:0;border-radius:50%}
.pt-social svg{width:38px;height:38px;display:block}
.pt-social a:hover svg circle{opacity:.85}
.pt-social--footer{--sb-bg:#AEBCC4;--sb-fg:#0E3F54}
.pt-social--brand{--sb-bg:#FCC92E;--sb-fg:#0E3F54}
.footer-brand .pt-social{margin-top:1.1rem}
.pt-followus{display:flex;align-items:center;justify-content:center;gap:1rem}
.pt-followus__label{font-weight:var(--w-semi);color:var(--navy)}
.contact-card__social{margin-top:2rem}
.contact-card__value a{white-space:nowrap;overflow-wrap:normal}
.contact-card__value{font-size:.93rem}
.pt-social a{flex:none}
.pt-social svg{flex:none}
.contact-card__social{margin-top:auto}
@media (max-width:1080px){.contact-cards{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.contact-cards{grid-template-columns:1fr}}
.team-photo--vacancy { background: var(--secondary); }
.team-card__apply { margin-top: 1.75rem; }

/* Team grids: flex-wrap centred so incomplete final rows auto-centre.
   Card widths reproduce the previous column counts (contacts 3, leadership 4). */
.team-grid > .team-card { flex: 0 1 calc((100% - 3.2rem) / 3); }
.team-grid--four > .team-card { flex-basis: calc((100% - 4.8rem) / 4); }
@media (max-width: 1024px) { .team-grid--four > .team-card { flex-basis: calc((100% - 1.6rem) / 2); } }
@media (max-width: 860px) { .team-grid > .team-card { flex-basis: calc((100% - 1.6rem) / 2); } }
@media (max-width: 560px) { .team-grid > .team-card, .team-grid--four > .team-card { flex-basis: 100%; } }

.section--flush-top { padding-top: 0; }

/* Education five-pillar grid */
.method__step:nth-child(5)::before { background: var(--primary-dark); }
.method__step:nth-child(5) .method__icon { color: var(--primary-dark); }
.method__step:nth-child(5) .method__num { color: var(--primary-dark); }
.method--five { display: flex; flex-wrap: wrap; justify-content: center; }
.method--five .method__step { flex: 0 1 calc((100% - 2.2rem) / 3); }
@media (max-width: 1080px){ .method--five .method__step { flex-basis: calc((100% - 1.1rem) / 2); } }
@media (max-width: 520px) { .method--five .method__step { flex-basis: 100%; } }

/* Business industry cards: 4-across flex, final pair centred (4+4+2). */
.sector-cards { display: flex; flex-wrap: wrap; justify-content: center; }
.sector-cards > .card { flex: 0 1 calc((100% - 3 * clamp(1.1rem, 0.8rem + 1vw, 1.75rem)) / 4); }
@media (max-width: 1099px) and (min-width: 481px) { .sector-cards > .card { flex-basis: calc((100% - clamp(1.1rem, 0.8rem + 1vw, 1.75rem)) / 2); } }
@media (max-width: 480px) { .sector-cards > .card { flex-basis: 100%; } }

/* FAQ (build-time: faqs collection inject + case-study/insight inline faqs).
   Native <details>/<summary>: accessible, keyboard-operable, no JS. Matches the
   card system (border, radius, brand marker). */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--grey-200); border-radius: 12px; background: var(--white); overflow: hidden; }
.faq-item > summary { cursor: pointer; list-style: none; padding: 1.05rem 1.3rem; font-weight: var(--w-semi); color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--primary); font-size: 1.4rem; line-height: 1; flex: 0 0 auto; }
.faq-item[open] > summary::after { content: "-"; }
.faq-item .faq-answer { padding: 0 1.3rem 1.15rem; color: var(--body-text); }
.faq-item .faq-answer p { margin: 0; }

/* nav mobile bar: on the hamburger view (<=1080px) the Support + Client Portal
   buttons are removed from the bar - Client Portal is linked on the Contact Us
   page and the Support page is not a mobile experience - leaving logo + phone +
   hamburger. Desktop (>1080px) keeps the text buttons unchanged. The full-size
   logo is restored (the earlier <=430 shrink is gone); a tighter gutter on very
   narrow phones keeps logo + phone + hamburger within 320px. */
@media (max-width: 1080px) {
  .nav-cta .btn { display: none; }
}
@media (max-width: 430px) {
  .site-header .container { padding-inline: 0.7rem; }
}
