/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
  --ink: #0b0d14;
  --navy: #0f2a20;
  --navy-mid: #163a2c;
  --cobalt: #1e5245;
  --cobalt-dk: #163d33;
  --cobalt-lt: #e7f0ec;
  --cobalt-mid: #7fae95;
  --green: #0b7550;
  --green-lt: #e3f5ee;
  --green-dk: #095e40;
  --surf: #f8f9fb;
  --surf2: #eff1f6;
  --white: #ffffff;
  --border: #e1e4ee;
  --muted: #57637a;
  --muted-lt: #5f6779;
  --gold: #d98c5f;
  --gold-lt: #fbe8dc;
  --gold-dk: #a8522a;
  --ink-soft: #1c2333;
  --accent-text: var(--cobalt);
  /* Trustline blue: reserved specifically for primary action CTAs
     (Call, Book a Consultation) — kept deliberately separate from
     --cobalt (now green) so blue reads as a controlled brand/action
     accent rather than the dominant site color. */
  --trustline-blue: #1547c0;
  --trustline-blue-dk: #0e38a0;
  /* Deep forest green + peach premium system (homepage dark zone) */
  --green-deep: #0a1f16;
  --green-dark: #0d2a1e;
  --green-mid: #123527;
  --green-soft: #1a4433;
  --peach: #e0895a;
  --peach-light: #f3c9a8;
  --charcoal: #1b1d1c;
  --grey-black: #141614;
  --silver-text: #d8dbd6;
  --silver-muted: #a7ada6;
  --white-soft: #f2f1ee;
  --fd: "Times New Roman", Times, serif;
  --fb: "Times New Roman", Times, serif;
  --fm: "Times New Roman", Times, serif;
  --rad: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════
   HOMEPAGE DARK ZONE
   Re-points the shared design tokens so every
   existing component (cards, borders, text,
   badges) renders as part of one continuous
   deep forest green system with peach-orange
   accents and silver-grey text — blue is
   removed as the dominant color everywhere.
   Service/About/Contact/legal pages inherit
   the same green/peach root tokens above, so
   they're on-brand too, just on a light
   surface rather than this dark zone.
   ═══════════════════════════════════════ */
#page-home {
  --ink: var(--white-soft);
  --white: var(--green-mid);
  --surf: var(--green-dark);
  --surf2: var(--green-soft);
  --border: rgba(216, 219, 214, 0.13);
  --muted: var(--silver-text);
  --muted-lt: var(--silver-muted);
  --cobalt-lt: rgba(126, 174, 149, 0.16);
  --cobalt-mid: #9fc4b0;
  --green-lt: rgba(111, 214, 143, 0.14);
  --gold-lt: rgba(224, 137, 90, 0.16);
  --gold: var(--peach);
  --gold-dk: var(--peach-light);
  --accent-text: var(--peach);
  background: var(--green-deep);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ═══════════════════════════════════════
   PER-SECTION BACKGROUND SYSTEM
   Every major homepage section gets its own
   deliberately distinct shade within the dark
   forest-green family, so no two consecutive
   sections read as identical while scrolling.
   These ID selectors intentionally outrank the
   shared .bg-white/.bg-surf/.bg-navy classes.
   ═══════════════════════════════════════ */
#trust-strip {
  background: #041f18;
}
#core-services {
  background: #052a21;
}
#challenge {
  background: #05271f;
}
#solution {
  background: #063126;
}
#tools {
  background: #062e24;
}
#case-study {
  background: #071f1a;
}
#experience {
  background: #072219;
}
#who-we-serve {
  background: #07382c;
}
#leadership {
  background: #05241d;
}
#how-it-works {
  background: #06352a;
}
#why-trustline {
  background: #043026;
  background-image: linear-gradient(160deg, #043026 0%, #062a22 100%);
}
#insights {
  background: #052d23;
}
#faq {
  background: #031f19;
}
#home-cta {
  background: #073a2d;
  background-image: linear-gradient(150deg, #073a2d 0%, #0a3026 100%);
}
picture {
  display: contents;
}
html {
  scroll-behavior: smooth;
  
}
body {
  font-family: var(--fb);
  background: var(--surf);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: var(--fb);
  cursor: pointer;
}

/* ── PAGE ROUTING ── */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--cobalt);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ═══ UTILITY BAR ═══ */
.util-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  padding: 7px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.util-bar a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.15s;
}
.util-bar a:hover,
.util-bar a:focus {
  color: #fff;
  text-decoration: underline;
}
.util-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ═══ NAV ═══ */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 300;
  transition:
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
nav.nav-scrolled {
  box-shadow: 0 6px 24px rgba(12, 30, 63, 0.08);
  border-bottom-color: transparent;
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: height 0.25s var(--ease);
}
nav.nav-scrolled .nav-wrap {
  height: 56px;
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-name {
  font-family: var(--fd);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.logo-tagline {
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 11px;
  border-radius: 6px;
  transition:
    color 0.15s,
    background 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a:focus {
  color: var(--accent-text);
  background: var(--cobalt-lt);
}
.nav-links > li > a.nav-active {
  color: var(--accent-text);
  background: var(--cobalt-lt);
  font-weight: 600;
}
.nav-cta-btn {
  background: var(--cobalt) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  border-radius: 7px !important;
}
.nav-cta-btn:hover,
.nav-cta-btn:focus {
  background: var(--cobalt-dk) !important;
}

/* Services mega dropdown */
.has-drop:hover .nav-drop,
.has-drop:focus-within .nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(12, 30, 63, 0.14);
  padding: 16px;
  width: min(760px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  z-index: 500;
}
.nav-service-card {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 13px !important;
  border: 1px solid transparent;
  border-radius: 10px !important;
  min-height: 78px;
  background: var(--white);
}
.nav-service-card:hover,
.nav-service-card:focus {
  background: var(--cobalt-lt) !important;
  border-color: var(--cobalt-mid);
  color: var(--cobalt) !important;
}
.nav-service-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--surf2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-service-ico svg {
  width: 17px;
  height: 17px;
  stroke: var(--cobalt);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-service-copy strong {
  display: block;
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 3px;
}
.nav-service-copy small {
  display: block;
  font-size: 10.8px;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 400;
}
.nav-service-card:hover .nav-service-copy strong,
.nav-service-card:focus .nav-service-copy strong {
  color: var(--accent-text);
}
.nav-drop-arrow {
  display: inline-block;
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.2s;
}
.has-drop:hover .nav-drop-arrow {
  transform: rotate(180deg);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 498;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mob-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 92vw);
  height: 100%;
  background: var(--white);
  z-index: 499;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -6px 0 40px rgba(0, 0, 0, 0.15);
}
.mob-drawer.open {
  transform: translateX(0);
}
.mob-drawer-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.mob-drawer-close {
  width: 34px;
  height: 34px;
  background: var(--surf2);
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-nav {
  padding: 8px 0;
}
.mob-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.mob-nav a:hover,
.mob-nav a.mob-active {
  background: var(--cobalt-lt);
  color: var(--accent-text);
  border-left-color: var(--accent-text);
}
.mob-nav .m-ico {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--surf2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mob-nav .m-ico svg {
  width: 15px;
  height: 15px;
  stroke: var(--muted);
}
.mob-nav a:hover .m-ico,
.mob-nav a.mob-active .m-ico {
  background: var(--cobalt-lt);
}
.mob-nav a:hover .m-ico svg,
.mob-nav a.mob-active .m-ico svg {
  stroke: var(--cobalt);
}
.mob-drawer-cta {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.mob-drawer-contact {
  padding: 14px 18px;
  background: var(--surf);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-drawer-contact a {
  font-size: 13.5px;
  color: var(--accent-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    background 0.18s var(--ease),
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    border-color 0.18s var(--ease);
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--trustline-blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(21, 71, 192, 0.25);
}
.btn-primary:hover {
  background: var(--trustline-blue-dk);
  box-shadow: 0 6px 20px rgba(21, 71, 192, 0.35);
}
.btn-outline-wt {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-wt:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-ghost {
  background: transparent;
  color: var(--accent-text);
  border: 1.5px solid var(--accent-text);
}
.btn-ghost:hover {
  background: var(--cobalt-lt);
}
.btn-sm {
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 7px;
}
.btn-lg {
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 9px;
}

/* ═══ SECTIONS ═══ */
.sec {
  padding: 80px 5%;
}
.si {
  max-width: 1280px;
  margin: 0 auto;
}
.bg-white {
  background: var(--white);
}
.bg-surf {
  background: var(--surf);
}
.bg-navy {
  background: var(--navy);
}

/* ═══ TYPOGRAPHY ═══ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 10px;
  display: block;
}
.eyebrow-wt {
  color: rgba(255, 255, 255, 0.5);
}
.ht {
  font-family: var(--fd);
  letter-spacing: -0.02em;
}
.ht-lg {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
}
.ht-lg em,
.ht-md em {
  font-style: normal;
  color: var(--accent-text);
}
.ht-md {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.ht-wt {
  color: #fff;
}
.body-lg {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}
.body-md {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.body-wt {
  color: rgba(255, 255, 255, 0.67);
}
.rule {
  width: 36px;
  height: 3px;
  background: var(--cobalt);
  border-radius: 2px;
  margin: 14px 0 24px;
}
.ctr {
  text-align: center;
}
.ctr .body-lg {
  margin-left: auto;
  margin-right: auto;
}
.mono {
  font-family: var(--fm);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  background: #021b15;
  padding: 88px 5% 76px;
  overflow: hidden;
  position: relative;
}
.hero-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-copy-minimal {
  padding-top: 4px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(126, 174, 149, 0.18);
  border: 1px solid rgba(126, 174, 149, 0.4);
  color: var(--peach-light);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--fd);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero-headline em {
  font-style: normal;
  color: var(--peach-light);
  display: block;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 8px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
.hero-ctas .btn-primary {
  background: var(--peach);
  color: #1a1108;
  box-shadow: 0 2px 14px rgba(224, 137, 90, 0.28);
}
.hero-ctas .btn-primary:hover {
  background: #c96f3f;
  box-shadow: 0 6px 20px rgba(224, 137, 90, 0.35);
}

/* ═══ CASE STUDY ═══ */
.case-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.case-col-b {
  background: var(--surf2);
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.case-col-a {
  background: #16332a;
  padding: 28px 32px;
  border-top: 2px solid var(--peach);
}
@media (min-width: 641px) {
  .case-col-a {
    border-top: none;
    border-left: none;
  }
}
.case-col-lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.lbl-b {
  color: var(--muted);
}
.lbl-a {
  color: var(--peach);
}
.case-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-list li {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.case-list li::before {
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
  font-weight: 700;
}
.case-col-b .case-list li::before {
  content: "–";
  color: var(--muted-lt);
}
.case-col-a .case-list li::before {
  content: "↑";
  color: var(--peach);
}
.case-fig {
  font-family: var(--fm);
  font-size: 12.5px;
  margin-top: 14px;
  padding: 9px 13px;
  border-radius: 7px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.case-fig-highlight {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--peach);
}
.fig-b {
  background: var(--surf2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
}
.fig-a {
  background: rgba(224, 137, 90, 0.16);
  border: 1px solid rgba(224, 137, 90, 0.45);
  color: var(--ink);
}
.case-results {
  padding: 22px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  background: var(--white);
}
.r-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(224, 137, 90, 0.12);
  border: 1px solid rgba(224, 137, 90, 0.35);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 18px;
}
.case-disc {
  padding: 16px 32px;
  background: var(--surf2);
  font-size: 11.5px;
  color: var(--muted-lt);
  line-height: 1.65;
  border-top: 1px solid var(--border);
}

/* ═══ TRANSACTION EXPERIENCE (data rows, not cards) ═══ */
.mandate-list {
  margin-top: 36px;
  border-top: 1px solid var(--border);
}
.mandate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease);
  flex-wrap: wrap;
}
.mandate-row:hover {
  background: var(--surf);
}
.mandate-left {
  display: flex;
  align-items: baseline;
  gap: 22px;
}
.tx-amt {
  font-family: var(--fm);
  font-size: 24px;
  font-weight: 500;
  color: var(--accent-text);
  display: block;
  min-width: 90px;
}
.tx-type {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.tx-sector {
  font-size: 12.5px;
  color: var(--muted);
}
.tx-status {
  display: inline-block;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.st-done {
  background: var(--green-lt);
  color: var(--green);
  border: 1px solid rgba(11, 117, 80, 0.2);
}
.st-struc {
  background: var(--cobalt-lt);
  color: var(--accent-text);
  border: 1px solid rgba(21, 71, 192, 0.2);
}

/* ═══ SHORT FORM (homepage) ═══ */
.short-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(12, 30, 63, 0.07);
}
.sf-f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sf-fg {
  margin-bottom: 14px;
}
.sf-fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.sf-fg input,
.sf-fg select,
.sf-fg textarea {
  width: 100%;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--fb);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.sf-fg input:focus,
.sf-fg select:focus,
.sf-fg textarea:focus {
  border-color: var(--accent-text);
  box-shadow: 0 0 0 3px rgba(21, 71, 192, 0.1);
}
.sf-fg input::placeholder,
.sf-fg textarea::placeholder {
  color: var(--muted-lt);
}
.sf-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 16px;
}
.sf-consent input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--accent-text);
  flex-shrink: 0;
  margin-top: 2px;
}
.sf-consent label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}
.sf-submit {
  width: 100%;
  background: var(--cobalt);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--fb);
  box-shadow: 0 2px 12px rgba(21, 71, 192, 0.25);
}
.sf-submit:hover {
  background: var(--cobalt-dk);
  box-shadow: 0 6px 20px rgba(21, 71, 192, 0.35);
}
.sf-submit:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}
.sf-note {
  font-size: 11px;
  color: var(--muted-lt);
  text-align: center;
  margin-top: 10px;
  line-height: 1.65;
}
/* Form states */
.sf-loading {
  display: none;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  color: var(--accent-text);
}
.sf-success {
  display: none;
  background: var(--green-lt);
  border: 1px solid rgba(11, 117, 80, 0.2);
  border-radius: 9px;
  padding: 18px 20px;
  text-align: center;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}
.sf-error {
  display: none;
  background: #fff0f0;
  border: 1px solid rgba(200, 50, 50, 0.2);
  border-radius: 9px;
  padding: 14px 16px;
  color: #c02020;
  font-size: 13px;
  margin-top: 10px;
}

/* ═══ OFFICES ═══ */
.off-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.off-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px;
  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.off-card:hover {
  border-color: var(--accent-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(12, 30, 63, 0.08);
}
.off-ico {
  width: 36px;
  height: 36px;
  background: var(--cobalt-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.off-ico svg {
  width: 17px;
  height: 17px;
  stroke: var(--cobalt);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.off-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 7px;
  display: block;
}
.off-card h3 {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}
.off-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
}
.off-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-text);
  transition: text-decoration 0.15s;
}
.off-link:hover,
.off-link:focus {
  text-decoration: underline;
}

/* ═══ SERVICE PAGES ═══ */
.svc-hero {
  background: var(--navy);
  padding: 64px 5% 56px;
}
.svc-hero-in {
  max-width: 760px;
}
.svc-body {
  padding: 64px 5%;
}
.svc-si {
  max-width: 1280px;
  margin: 0 auto;
}
.svc-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.prod-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.prod-item {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  border-radius: 0;
  padding: 22px 0 22px 16px;
  transition: border-left-color 0.2s var(--ease);
}
.prod-item:hover {
  border-left-color: var(--gold);
}
.prod-item-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}
.prod-ico {
  width: 40px;
  height: 40px;
  background: var(--cobalt-lt);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prod-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--cobalt);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prod-ico-g {
  background: var(--green-lt);
}
.prod-ico-g svg {
  stroke: var(--green);
}
.prod-hdr h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.prod-hdr p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.prod-roi {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  background: var(--green-lt);
  border-radius: 5px;
  padding: 3px 9px;
  font-family: var(--fm);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--green);
}
.prod-disc {
  font-size: 11.5px;
  color: var(--muted-lt);
  margin-top: 10px;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 9px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
}
.tag {
  background: var(--surf2);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-mid);
  transition:
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
  cursor: default;
}
.tag:hover {
  border-color: var(--accent-text);
  color: var(--accent-text);
  background: var(--cobalt-lt);
}
/* Side form on service pages */
.svc-side-form {
  position: sticky;
  top: 80px;
}
.svc-sf {
  background: var(--white);
  border: 1px solid var(--cobalt-mid);
  border-radius: 12px;
  padding: 24px 22px;
}
.svc-sf h3 {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}

/* ═══ ABOUT PAGE ═══ */
.about-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 5%;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.tl-item:last-child {
  border-bottom: none;
}
.tl-yr {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent-text);
  line-height: 1.2;
  padding-top: 2px;
}
.tl-txt h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.tl-txt p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══ FULL CONTACT FORM PAGE ═══ */
.full-contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.ctc-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.ctc-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.ctc-ico {
  width: 38px;
  height: 38px;
  background: var(--cobalt-lt);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctc-ico svg {
  width: 17px;
  height: 17px;
  stroke: var(--cobalt);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ctc-row-txt h5 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.ctc-row-txt a {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-text);
  display: block;
}
.ctc-row-txt p {
  font-size: 14px;
  color: var(--muted);
}
.full-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
}
.full-form h3 {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}
.ff2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ffg {
  margin-bottom: 14px;
}
.ffg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.ffg-optional {
  color: var(--muted-lt);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.ffg input,
.ffg select,
.ffg textarea {
  width: 100%;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--fb);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ffg input:focus,
.ffg select:focus,
.ffg textarea:focus {
  border-color: var(--accent-text);
  box-shadow: 0 0 0 3px rgba(21, 71, 192, 0.1);
}
.ffg input::placeholder,
.ffg textarea::placeholder {
  color: var(--muted-lt);
}
.ffg textarea {
  resize: vertical;
  min-height: 80px;
}
.ffg-radio {
  display: flex;
  gap: 18px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.ffg-radio label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.ffg-radio input[type="radio"] {
  accent-color: var(--accent-text);
  width: 14px;
  height: 14px;
}
.ffg-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 14px;
}
.ffg-consent input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--accent-text);
  flex-shrink: 0;
  margin-top: 3px;
}
.ffg-consent label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.ff-submit {
  width: 100%;
  background: var(--cobalt);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--fb);
}
.ff-submit:hover {
  background: var(--cobalt-dk);
}
.ff-note {
  font-size: 11px;
  color: var(--muted-lt);
  text-align: center;
  margin-top: 10px;
  line-height: 1.65;
}
.ff-success {
  display: none;
  background: var(--green-lt);
  border: 1px solid rgba(11, 117, 80, 0.2);
  border-radius: 9px;
  padding: 18px;
  text-align: center;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  line-height: 1.65;
}
.ff-error {
  display: none;
  background: #fff0f0;
  border: 1px solid rgba(200, 50, 50, 0.2);
  border-radius: 9px;
  padding: 14px 16px;
  color: #c02020;
  font-size: 13px;
  margin-top: 10px;
}

/* ═══ DISC STRIP ═══ */
.disc {
  background: var(--surf2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 11px;
  color: var(--muted-lt);
  line-height: 1.7;
}
.disc strong {
  color: var(--muted);
}

/* ═══ FOOTER ═══ */
footer {
  background: #02140f;
  color: rgba(255, 255, 255, 0.5);
  padding: 52px 5% 26px;
}
.ft-in {
  max-width: 1280px;
  margin: 0 auto;
}
.ft-contact-band .sep {
  color: rgba(255, 255, 255, 0.2);
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ft-brand p {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.38);
}
.ft-col h5 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 13px;
}
.ft-col ul {
  list-style: none;
}
.ft-col ul li {
  margin-bottom: 7px;
}
.ft-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.15s;
  cursor: pointer;
}
.ft-col ul li a:hover {
  color: #fff;
}
.ft-col ul li span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.ft-legal {
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.ft-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-legal-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: color 0.15s;
}
.ft-legal-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.ft-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}
.ft-disc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 7px;
  padding: 14px 16px;
  margin-top: 20px;
}
.ft-disc p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.75;
}
.ft-disc strong {
  color: rgba(255, 255, 255, 0.38);
}

/* ═══ MOBILE STICKY ═══ */
.mob-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 9px 14px;
  gap: 7px;
  flex-direction: row;
}
.mob-sticky a {
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  padding: 10px 6px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mob-sticky .ms-call {
  background: var(--trustline-blue);
  border-color: var(--trustline-blue);
}
.mob-sticky .ms-wa {
  background: #1ea952;
  border-color: #1ea952;
}
.mob-sticky .ms-enq {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}
.mob-sticky svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-in {
    grid-template-columns: 1fr;
  }
  .off-grid {
    grid-template-columns: 1fr;
  }
  .full-contact {
    grid-template-columns: 1fr;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .svc-2col {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .util-bar {
    display: none;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .nav-drop {
    display: none;
  }
  .ff2,
  .sf-f2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .sec {
    padding: 58px 5%;
  }
  .hero {
    padding: 56px 5% 48px;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-col-b,
  .case-col-a {
    padding: 20px 20px;
  }
  .case-results {
    padding: 16px 20px;
  }
  .case-disc {
    padding: 12px 20px;
  }
}

/* ═══ PRODUCTION INTERACTION & LEGAL CONTENT ═══ */
.has-drop.drop-open .nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.has-drop.drop-open .nav-drop-arrow {
  transform: rotate(180deg);
}
.nav-links > li > a:focus-visible,
.logo-area:focus-visible,
.mob-nav a:focus-visible,
.mob-drawer-close:focus-visible,
.nav-hamburger:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.ff-loading {
  display: none;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  color: var(--accent-text);
}
.legal-card {
  padding: 25px 20px;
}

/* ═══ MINIMALIST HOMEPAGE & BRAND LOGO OVERRIDES ═══ */
.brand-mark-img {
  display: block;
  width: 102px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-wrap {
  height: 70px;
}
.logo-area {
  gap: 9px;
}
.hero-minimal {
  padding: 96px 5% 86px;
}
.hero-in-minimal {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  max-width: 1280px;
  align-items: center;
}
.hero-copy-minimal {
  max-width: 640px;
}
.hero-sub-minimal {
  max-width: 720px;
  font-size: 18px;
  margin-bottom: 12px;
}
.hero-service-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

/* ── HERO DASHBOARD VISUAL (financial-statement style) ── */
.hero-dash {
  position: relative;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  background-size: 200% 200%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.4s var(--ease);
  animation:
    hero-dash-float 7s ease-in-out infinite,
    hero-dash-gradient-shift 12s ease-in-out infinite;
}
.hero-dash:hover {
  box-shadow: 0 36px 84px rgba(0, 0, 0, 0.42);
}
.hero-dash::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(224, 137, 90, 0) 20%,
    rgba(224, 137, 90, 0.55) 50%,
    rgba(224, 137, 90, 0) 80%
  );
 background-size: 300% 300%;

-webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

-webkit-mask-composite: xor;
mask-composite: exclude;

pointer-events: none;
animation: hero-dash-border-glow 6s linear infinite;
z-index: 2;
}
.hero-dash::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
  pointer-events: none;
  animation: hero-dash-light-sweep 8s ease-in-out infinite;
  z-index: 1;
}
@keyframes hero-dash-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes hero-dash-gradient-shift {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}
@keyframes hero-dash-border-glow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
@keyframes hero-dash-light-sweep {
  0%,
  15% {
    left: -60%;
  }
  55%,
  100% {
    left: 130%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dash {
    animation: none;
  }
  .hero-dash::before,
  .hero-dash::after {
    animation: none;
    opacity: 0;
  }
}
.hero-dash > * {
  position: relative;
  z-index: 3;
}
.hero-dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-dash-title {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.hero-dash-tag {
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 3px 9px;
}

/* Statement rows */
.hero-dash-statement {
  padding: 2px 20px;
}
.hero-dash-interactive {
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  outline: none;
  transition:
    background 0.25s var(--ease),
    transform 0.2s var(--ease);
}
.hero-dash-interactive:focus {
  outline: none;
}
.hero-dash-interactive::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--peach);
  opacity: 0;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease);
  pointer-events: none;
}
.hero-dash-interactive:hover::after,
.hero-dash-interactive:focus-visible::after {
  opacity: 0.9;
  transform: translateY(-50%) scale(1);
}
.hero-dash-interactive:hover,
.hero-dash-interactive:focus-visible {
  background: rgba(255, 255, 255, 0.035);
}
.hero-dash-interactive:active {
  transform: scale(0.99);
}
.hero-dash-interactive:focus-visible {
  outline: 1px solid rgba(224, 137, 90, 0.5);
  outline-offset: -1px;
}
.hero-dash-fac-row.is-pulsing {
  animation: hero-dash-fac-pulse 0.7s var(--ease);
}
@keyframes hero-dash-fac-pulse {
  0% {
    background: rgba(224, 137, 90, 0.18);
  }
  100% {
    background: transparent;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dash-fac-row.is-pulsing {
    animation: none;
  }
}
.hero-dash-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hero-dash-row:last-child {
  border-bottom: none;
}
.hero-dash-row-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}
.hero-dash-row-val {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.hero-dash-row-num {
  font-family: var(--fm);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero-dash-row-delta {
  font-family: var(--fm);
  font-size: 10.5px;
}
.hero-dash-row-delta.up {
  color: #6fd6a4;
}
.hero-dash-row-delta.neutral {
  color: rgba(255, 255, 255, 0.4);
}

/* Capital structure bar */
.hero-dash-cap {
  padding: 11px 20px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-dash-cap-label {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
  margin-bottom: 9px;
}
.hero-dash-cap-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
}
.hero-dash-cap-debt,
.hero-dash-cap-equity {
  position: relative;
  overflow: hidden;
}
.hero-dash-cap-debt::after,
.hero-dash-cap-equity::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  background-size: 60% 100%;
  animation: hero-dash-cap-shimmer 3.2s ease-in-out infinite;
}
@keyframes hero-dash-cap-shimmer {
  0% {
    background-position: -80% 0;
  }
  100% {
    background-position: 180% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dash-cap-debt::after,
  .hero-dash-cap-equity::after {
    animation: none;
  }
}
.hero-dash-cap-debt {
  background: #4d8a6e;
  transition: width 1s var(--ease);
}
.hero-dash-cap-equity {
  background: var(--gold);
  transition: width 1s var(--ease);
}
.hero-dash-cap-legend {
  display: flex;
  gap: 18px;
  margin-top: 7px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}
.hero-dash-cap-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-dash-cap-legend i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
}

/* Facilities ledger */
.hero-dash-facilities {
  padding: 2px 20px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-dash-fac-label {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
  padding: 9px 0 3px;
}
.hero-dash-fac-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-dash-fac-row:last-child {
  border-bottom: none;
}
.hero-dash-fac-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.hero-dash-fac-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.hero-dash-fac-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6fd6a4;
  display: inline-block;
}
.hero-dash-fac-status.pending i {
  background: var(--peach);
}

/* Chart */
.hero-dash-chart {
  padding: 9px 20px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-dash-chart-label {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.hero-dash-chart svg {
  width: 100%;
  height: 44px;
  display: block;
  overflow: visible;
}
.hero-dash-chart-line {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.hero-dash-chart-line.is-drawn {
  stroke-dashoffset: 0;
}
.hero-dash-chart-flow {
  opacity: 0;
  stroke-dasharray: 24 316;
  stroke-dashoffset: 0;
  transition: opacity 0.5s var(--ease) 1.5s;
}
.hero-dash-chart-flow.is-drawn {
  opacity: 0.85;
  animation: hero-dash-flow-travel 4.5s linear 1.6s infinite;
}
@keyframes hero-dash-flow-travel {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -340;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dash-chart-flow,
  .hero-dash-chart-flow.is-drawn {
    opacity: 0;
    animation: none;
  }
}
.hero-dash-chart-dot {
  opacity: 0;
  transition: opacity 0.4s var(--ease) 1.4s;
  animation: hero-dash-dot-pulse 2.2s ease-in-out 1.8s infinite;
}
.hero-dash-chart-dot.is-drawn {
  opacity: 1;
}
@keyframes hero-dash-dot-pulse {
  0%,
  100% {
    r: 3;
  }
  50% {
    r: 4.2;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dash-chart-line {
    transition: none;
    stroke-dashoffset: 0;
  }
  .hero-dash-chart-dot {
    transition: none;
    opacity: 1;
    animation: none;
  }
}
.hero-dash-foot {
  padding: 8px 20px 12px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.02em;
}
.minimal-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.minimal-intro {
  margin: 0 auto 34px;
  max-width: 660px;
}
.minimal-case .case-grid {
  border-top: 1px solid var(--border);
}
.minimal-center-cta {
  text-align: center;
  margin-top: 22px;
}
.lender-proof {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surf);
}
.lender-proof-label {
  display: block;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.lender-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lender-names span {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 20px;
  padding: 7px 13px;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-mid);
}
.lender-proof p {
  font-size: 11px;
  color: var(--muted-lt);
  text-align: center;
  line-height: 1.65;
  margin-top: 12px;
}
.minimal-contact {
  padding-top: 76px;
  padding-bottom: 76px;
}
.minimal-contact-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.minimal-contact-copy .body-lg {
  margin: 14px 0 26px;
  max-width: 520px;
}
.minimal-form-card {
  padding: 30px 28px;
  box-shadow: none;
}
.office-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.office-strip span::before {
  content: "—";
  margin-right: 8px;
  color: var(--peach-light);
}
.minimal-contact-bar {
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.minimal-contact-bar-label {
  color: var(--peach-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.minimal-contact-bar a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.minimal-contact-bar a:hover,
.minimal-contact-bar a:focus-visible {
  color: var(--peach-light);
}
.minimal-contact-sep {
  color: rgba(255, 255, 255, 0.28);
}
.footer-brand-logo {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  margin: -8px 0 2px;
}
.ft-brand p {
  max-width: 430px;
}
@media (max-width: 1024px) {
  .brand-mark-img {
    width: 88px;
    height: 34px;
  }
  .minimal-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .minimal-contact-copy {
    text-align: center;
  }
  .minimal-contact-copy .body-lg {
    margin-left: auto;
    margin-right: auto;
  }
  .office-strip {
    align-items: center;
  }
  .minimal-contact-bar {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .nav-wrap {
    height: 64px;
  }
  .brand-mark-img {
    width: 76px;
    height: 30px;
  }
  .hero-minimal {
    padding: 62px 5% 54px;
  }
  .hero-in-minimal {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-dash {
    max-width: 460px;
    margin: 0 auto;
  }
  .hero-headline {
    font-size: clamp(39px, 13vw, 58px);
  }
  .hero-sub-minimal {
    font-size: 16px;
    line-height: 1.72;
  }
  .hero-service-line {
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .hero-ctas {
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .minimal-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .minimal-contact {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .minimal-form-card {
    padding: 25px 20px;
  }
  .lender-names {
    gap: 7px;
  }
  .lender-names span {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* Leadership duo and embedded lender logos */
.lender-names {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 12px;
  align-items: center;
  width: 100%;
}
.lender-logo-box {
  height: 74px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  overflow: hidden;
}
.lender-logo-img {
  max-width: 100%;
  width: 100%;
  height: 48px;
  object-fit: contain;
  filter: none;
}
.leadership-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.leader-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 330px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.leader-card:hover {
  border-color: var(--cobalt-mid);
  box-shadow: 0 10px 30px rgba(12, 30, 63, 0.08);
  transform: translateY(-2px);
}
.leader-photo-wrap {
  background: var(--surf2);
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.leader-content {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leader-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 7px;
}
.leader-exp {
  display: block;
  font-size: 12.5px;
  color: var(--muted-lt);
  font-style: italic;
  margin-top: 4px;
  margin-bottom: 10px;
}
.leader-content h3 {
  font-family: var(--fd);
  font-size: 23px;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
}
.leader-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 14px;
}
.body-lead {
  font-family: var(--fd);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 16px;
}
.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.leader-tags span {
  background: var(--surf2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink);
}
.leader-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-text);
  font-size: 12.5px;
  font-weight: 600;
}
.leader-link:hover {
  text-decoration: underline;
}
.leadership-cta {
  text-align: center;
  margin-top: 24px;
}
.ft-company-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.ft-cin-inline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
}
@media (max-width: 1100px) {
  .leadership-duo {
    grid-template-columns: 1fr;
  }
  .leader-card {
    grid-template-columns: 250px 1fr;
  }
  .lender-names {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .leader-card {
    grid-template-columns: 1fr;
  }
  .leader-photo-wrap {
    min-height: 300px;
    height: 300px;
  }
  .leader-content {
    padding: 24px 20px;
  }
  .lender-names {
    grid-template-columns: repeat(2, 1fr);
  }
  .lender-logo-box {
    height: 62px;
  }
  .ft-company-meta {
    align-items: flex-start;
  }
}

/* ═══ TRUSTLINE CFO REQUESTED FINAL QA PATCH ═══ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.logo-area {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.brand-mark-img {
  display: block !important;
  width: auto !important;
  max-width: 220px !important;
  height: auto !important;
  max-height: 56px !important;
  object-fit: contain !important;
  flex-shrink: 1 !important;
}
.hero,
.hero-in,
.hero-copy-minimal {
  min-width: 0;
  isolation: isolate;
}
.hero-copy-minimal {
  position: relative;
  z-index: 2;
}
.has-drop:hover .nav-drop,
.has-drop:focus-within .nav-drop,
.has-drop.drop-open .nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) !important;
}
.nav-drop {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) translateY(-6px) !important;
  width: min(720px, calc(100vw - 48px)) !important;
  max-width: calc(100vw - 48px) !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: 12px !important;
  overflow: visible !important;
}
.nav-service-card {
  min-width: 0 !important;
  min-height: 86px !important;
  height: 100%;
  align-items: flex-start !important;
}
.nav-service-copy {
  min-width: 0;
}
.lender-names {
  justify-items: stretch !important;
  align-items: center !important;
}
.lender-logo-box {
  height: 74px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.lender-logo-img {
  height: 46px !important;
  max-height: 46px !important;
  width: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}
.leadership-duo {
  align-items: stretch !important;
}
.leader-card {
  height: 100%;
}
.leader-photo-wrap {
  height: 100%;
  aspect-ratio: 210/330;
}
.leader-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.jai-photo {
  object-position: center center !important;
}
.about-company-details {
  margin-top: 22px;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-team-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.about-team-card:hover {
  border-color: var(--cobalt);
  transform: translateY(-2px);
}
.about-team-card img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.about-team-card h3 {
  font-family: var(--fd);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.about-team-role {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.about-team-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}
.about-company-details h3 {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.about-company-details p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 4px;
}
.about-company-details strong {
  color: var(--navy);
}
@media (max-width: 1024px) {
  .brand-mark-img {
    max-width: 180px !important;
    max-height: 50px !important;
  }
  .nav-drop {
    display: none !important;
  }
  .leader-photo-wrap {
    aspect-ratio: 250/330;
  }
}
@media (max-width: 640px) {
  .brand-mark-img {
    max-width: 140px !important;
    max-height: 40px !important;
  }
  .logo-wordmark {
    display: none;
  }
  .leader-photo-wrap {
    height: 300px !important;
    aspect-ratio: auto;
  }
  .lender-logo-box {
    height: 62px !important;
  }
  .lender-logo-img {
    height: 38px !important;
    max-height: 38px !important;
  }
}

/* ═══ LEADERSHIP PREMIUM LAYOUT PATCH — JAI RATHI PHOTO + NO OVERLAP ═══ */
#leadership .leadership-duo {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important;
  max-width: 1280px !important;
  margin: 34px auto 0 !important;
}
#leadership .leader-card {
  display: grid !important;
  grid-template-columns: 190px minmax(0, 1fr) !important;
  align-items: stretch !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  min-height: 0 !important;
  height: auto !important;
  box-shadow: 0 14px 38px rgba(12, 30, 63, 0.06) !important;
}
#leadership .leader-photo-wrap {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 420px !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  background: var(--surf2) !important;
}
#leadership .leader-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  object-fit: cover !important;
  object-position: center top !important;
}
#leadership .jai-photo {
  object-fit: cover !important;
  object-position: center top !important;
}
#leadership .leader-content {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  padding: 28px 28px 26px !important;
  background: var(--white) !important;
  overflow: visible !important;
  overflow-wrap: break-word !important;
}
#leadership .leader-content h3 {
  font-size: 24px !important;
  line-height: 1.18 !important;
  margin: 0 0 12px !important;
}
#leadership .leader-kicker {
  margin-bottom: 8px !important;
}
#leadership .leader-content p {
  font-size: 13.4px !important;
  line-height: 1.62 !important;
  margin: 0 0 12px !important;
  color: var(--muted) !important;
}
#leadership .leader-link {
  margin: 2px 0 14px !important;
  width: max-content !important;
  max-width: 100% !important;
}
#leadership .leader-tags {
  margin-top: 4px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}
#leadership .leader-tags span {
  white-space: normal !important;
  line-height: 1.25 !important;
}
@media (max-width: 1180px) {
  #leadership .leadership-duo {
    grid-template-columns: 1fr !important;
    max-width: 980px !important;
  }
  #leadership .leader-card {
    grid-template-columns: 260px minmax(0, 1fr) !important;
  }
  #leadership .leader-photo-wrap,
  #leadership .leader-photo {
    min-height: 390px !important;
  }
}
@media (max-width: 720px) {
  #leadership .leadership-duo {
    gap: 22px !important;
  }
  #leadership .leader-card {
    grid-template-columns: 1fr !important;
  }
  #leadership .leader-photo-wrap {
    height: 380px !important;
    min-height: 380px !important;
  }
  #leadership .leader-photo {
    height: 380px !important;
    min-height: 380px !important;
    object-position: center top !important;
  }
  #leadership .leader-content {
    padding: 24px 20px 24px !important;
  }
  #leadership .leader-content h3 {
    font-size: 22px !important;
  }
  #leadership .leader-content p {
    font-size: 13.2px !important;
    line-height: 1.62 !important;
  }
}
@media (max-width: 420px) {
  #leadership .leader-photo-wrap,
  #leadership .leader-photo {
    height: 330px !important;
    min-height: 330px !important;
  }
}

/* ═══ FINAL LEADERSHIP NO-OVERLAP FIX — FULL-WIDTH PREMIUM CARDS ═══
   This override forces each director profile into a single full-width card on desktop,
   with a dedicated image column and a separate text column. It prevents the previous
   side-by-side card compression that caused text to sit over the photo. */
#leadership,
#leadership * {
  box-sizing: border-box !important;
}
#leadership .si {
  max-width: 1280px !important;
  width: 100% !important;
}
#leadership .minimal-intro {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
#leadership .leadership-duo {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  width: 100% !important;
  max-width: 1120px !important;
  margin: 38px auto 0 !important;
  align-items: stretch !important;
}
#leadership .leader-card {
  display: grid !important;
  grid-template-columns: minmax(300px, 34%) minmax(0, 1fr) !important;
  grid-template-areas: "photo content" !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  align-items: stretch !important;
  overflow: hidden !important;
  position: relative !important;
  isolation: isolate !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 42px rgba(12, 30, 63, 0.07) !important;
}
#leadership .leader-photo-wrap {
  grid-area: photo !important;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 385px !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  background: var(--surf2) !important;
  z-index: 0 !important;
  display: block !important;
}
#leadership .leader-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 385px !important;
  object-fit: cover !important;
  object-position: center top !important;
  position: relative !important;
  z-index: 0 !important;
}
#leadership .jai-photo {
  object-fit: cover !important;
  object-position: center top !important;
}
#leadership .jitender-photo {
  object-fit: cover !important;
  object-position: center 42% !important;
  transform: scale(1.06) !important;
  transform-origin: center center !important;
}
#leadership .leader-content {
  grid-area: content !important;
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 36px 42px !important;
  background: var(--white) !important;
  overflow: visible !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
}
#leadership .leader-content > * {
  max-width: 100% !important;
  min-width: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}
#leadership .leader-kicker {
  display: block !important;
  margin: 0 0 8px !important;
  font-size: 10.5px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.16em !important;
}
#leadership .leader-content h3 {
  margin: 0 0 12px !important;
  font-size: clamp(24px, 2.1vw, 32px) !important;
  line-height: 1.15 !important;
  word-break: normal !important;
}
#leadership .leader-content p {
  margin: 0 0 11px !important;
  font-size: 14.25px !important;
  line-height: 1.68 !important;
  color: var(--muted) !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
#leadership .leader-link {
  display: inline-flex !important;
  align-items: center !important;
  margin: 4px 0 15px !important;
  width: fit-content !important;
  max-width: 100% !important;
  white-space: normal !important;
}
#leadership .leader-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 6px !important;
  width: 100% !important;
}
#leadership .leader-tags span {
  display: inline-flex !important;
  align-items: center !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  line-height: 1.25 !important;
  padding: 6px 11px !important;
}
@media (max-width: 900px) {
  #leadership .leadership-duo {
    max-width: 760px !important;
    gap: 24px !important;
  }
  #leadership .leader-card {
    grid-template-columns: 1fr !important;
    grid-template-areas: "photo" "content" !important;
  }
  #leadership .leader-photo-wrap,
  #leadership .leader-photo {
    width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
  }
  #leadership .leader-content {
    padding: 30px 28px 32px !important;
    justify-content: flex-start !important;
  }
}
@media (max-width: 560px) {
  #leadership .leadership-duo {
    margin-top: 28px !important;
    gap: 22px !important;
  }
  #leadership .leader-card {
    border-radius: 16px !important;
  }
  #leadership .leader-photo-wrap,
  #leadership .leader-photo {
    height: 340px !important;
    min-height: 340px !important;
  }
  #leadership .leader-content {
    padding: 24px 20px 26px !important;
  }
  #leadership .leader-content h3 {
    font-size: 23px !important;
  }
  #leadership .leader-content p {
    font-size: 13.4px !important;
    line-height: 1.65 !important;
  }
}

/* ═══════════════════════════════════════
   PRODUCTION UI ENHANCEMENTS
   (page loader, floating actions, scroll-top,
   form validation states, micro-interactions)
   ═══════════════════════════════════════ */

/* ── PAGE LOADER ── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent-text);
  border-radius: 50%;
  animation: pl-spin 0.75s linear infinite;
}
@keyframes pl-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── FLOATING ACTION BUTTONS (desktop/tablet ≥768px) ── */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(12, 30, 63, 0.22);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.fab:hover,
.fab:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(12, 30, 63, 0.3);
}
.fab:active {
  transform: translateY(-1px) scale(0.97);
}
.fab:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}
.fab svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}
.fab-call {
  background: var(--trustline-blue);
  width: 48px;
  height: 48px;
  align-self: flex-end;
}
.fab-call svg {
  width: 20px;
  height: 20px;
}
.fab-whatsapp {
  background: #25d366;
}
.fab-whatsapp .fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.55;
  animation: fab-pulse 2.2s ease-out infinite;
}
@keyframes fab-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 7px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.15s var(--ease),
    transform 0.15s var(--ease);
}
.fab-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}
.fab:hover .fab-tooltip,
.fab:focus-visible .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 767px) {
  .fab-tooltip {
    display: none;
  }
}
@media (max-width: 767px) {
  .fab-stack {
    display: none;
  }
}

/* ── MOBILE STICKY ACTION BAR (<768px) ── */
@media (max-width: 767px) {
  .mob-sticky {
    display: flex;
  }
  body {
    padding-bottom: 68px;
  }
}

/* ── SCROLL TO TOP ── */
#scroll-top-btn {
  position: fixed;
  left: 22px;
  bottom: 26px;
  z-index: 450;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(12, 30, 63, 0.14);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    background 0.15s var(--ease),
    border-color 0.15s var(--ease);
}
#scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#scroll-top-btn:hover {
  background: var(--cobalt-lt);
  border-color: var(--accent-text);
}
#scroll-top-btn:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}
#scroll-top-btn svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  #scroll-top-btn {
    left: 14px;
    bottom: 82px;
    width: 40px;
    height: 40px;
  }
}

/* ── FORM: FIELD-LEVEL VALIDATION ── */
.field-err {
  display: block;
  color: #c02020;
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.4;
}
.sf-fg input[aria-invalid="true"],
.sf-fg select[aria-invalid="true"],
.sf-fg textarea[aria-invalid="true"],
.ffg input[aria-invalid="true"],
.ffg select[aria-invalid="true"],
.ffg textarea[aria-invalid="true"] {
  border-color: #c02020 !important;
  background: #fff8f8;
}
.sf-fg input[aria-invalid="true"]:focus,
.sf-fg select[aria-invalid="true"]:focus,
.sf-fg textarea[aria-invalid="true"]:focus,
.ffg input[aria-invalid="true"]:focus,
.ffg select[aria-invalid="true"]:focus,
.ffg textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(192, 32, 32, 0.12);
}
.sf-consent[data-invalid="true"] label,
.ff-consent[data-invalid="true"] label,
.ffg-consent[data-invalid="true"] label {
  color: #c02020;
}

/* ── FORM: SUCCESS MESSAGE ── */
.sf-success,
.ff-success {
  animation: form-msg-in 0.3s var(--ease);
}
.sf-success::before,
.ff-success::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  vertical-align: -5px;
}
@keyframes form-msg-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── FORM: LOADING SPINNER IN SUBMIT BUTTON ── */
.sf-submit[aria-busy="true"],
.ff-submit[aria-busy="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.sf-submit[aria-busy="true"]::before,
.ff-submit[aria-busy="true"]::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pl-spin 0.7s linear infinite;
  flex-shrink: 0;
}
.form-is-submitting {
  opacity: 0.65;
  pointer-events: none;
}

/* ── MICRO-INTERACTIONS ── */
.nav-links > li > a {
  position: relative;
}
.nav-links > li > a:not(.nav-cta-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--cobalt);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}
.nav-links > li > a:not(.nav-cta-btn):hover::after,
.nav-links > li > a:not(.nav-cta-btn).nav-active::after {
  transform: scaleX(1);
}
.leader-card {
  transition:
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.leader-card:hover {
  box-shadow: 0 14px 34px rgba(12, 30, 63, 0.1);
  transform: translateY(-3px);
}
.leader-photo {
  transition: transform 0.4s var(--ease);
}
.leader-card:hover .leader-photo {
  transform: scale(1.035);
}
.btn:active {
  transform: scale(0.97);
}

/* ═══ SERVICES COMMAND CENTER (tabs + editorial rows, not a card grid) ═══ */
.cmd-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  margin-top: 44px;
  align-items: start;
}
.cmd-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 100px;
}
.cmd-cat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-align: left;
  background: none;
  border: none;
  border-left: 2px solid var(--border);
  padding: 12px 0 12px 18px;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.cmd-cat-num {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--muted-lt);
}
.cmd-cat:hover {
  color: var(--ink);
}
.cmd-cat.is-active {
  color: var(--ink);
  border-left-color: var(--accent-text);
}
.cmd-cat.is-active .cmd-cat-num {
  color: var(--accent-text);
}
.cmd-panels {
  min-height: 220px;
}
.cmd-panel {
  display: flex;
  flex-direction: column;
  animation: cmd-panel-in 0.35s var(--ease);
}
.cmd-panel[hidden] {
  display: none;
}
@keyframes cmd-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cmd-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left 0.2s var(--ease);
}
.cmd-panel .cmd-service:first-child {
  border-top: 1px solid var(--border);
}
.cmd-service:hover {
  padding-left: 12px;
}
.cmd-service h3 {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.cmd-service p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}
.cmd-service-arrow {
  font-size: 20px;
  color: var(--muted-lt);
  flex-shrink: 0;
  transition:
    transform 0.2s var(--ease),
    color 0.2s var(--ease);
}
.cmd-service:hover .cmd-service-arrow {
  transform: translateX(4px);
  color: var(--accent-text);
}
@media (max-width: 900px) {
  .cmd-layout {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .cmd-categories {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }
  .cmd-cat {
    border-left: none;
    border-bottom: 2px solid var(--border);
    padding: 8px 4px;
  }
  .cmd-cat.is-active {
    border-bottom-color: var(--accent-text);
  }
  .cmd-service {
    align-items: flex-start;
    padding: 18px 2px;
  }
}

/* ═══════════════════════════════════════
   PER-SECTION BACKGROUND SYSTEM
   Every homepage section gets its own explicit
   shade from the dark forest-green family —
   deliberately NOT a single shared variable,
   so each section reads as a distinct step in
   one continuous but visibly varied journey.
   Text/border tokens stay the shared dark-zone
   ones (already tuned for contrast against any
   of these shades); only `background` is set
   per section here.
   ═══════════════════════════════════════ */
#page-home .hero {
  background: #021b15;
}
#page-home #trust-strip {
  background: #041f18;
}
#page-home #core-services {
  background: #052a21;
}
#page-home #challenge {
  background: #05271f;
}
#page-home #solution {
  background: #063126;
}
#page-home #case-study {
  background: #071f1a;
}
#page-home #tools {
  background: #0a3428;
}
#page-home #experience {
  background: #062822;
}
#page-home #who-we-serve {
  background: #07382c;
}
#page-home #leadership {
  background: #05241d;
}
#page-home #how-it-works {
  background: #06352a;
}
#page-home #why-trustline {
  background: #043026;
  background-image: linear-gradient(160deg, #043026 0%, #062a22 100%);
}
#page-home #insights {
  background: #052c24;
}
#page-home #faq {
  background: #031f19;
}
#page-home #home-cta {
  background: #073a2d;
  background-image: linear-gradient(135deg, #073a2d 0%, #0a3026 100%);
}

/* ═══════════════════════════════════════
   PREMIUM PLATFORM SECTIONS
   ═══════════════════════════════════════ */

/* ── TRUST STRIP ── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 5%;
  background: var(--white);
}
.trust-strip-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-strip-line {
  font-family: var(--fd);
  font-size: 17px;
  color: var(--ink);
  max-width: 560px;
  line-height: 1.5;
}
.trust-strip-marks {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.trust-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-mark-num {
  font-family: var(--fm);
  font-size: 20px;
  color: var(--gold-dk);
  font-weight: 500;
}
.trust-mark-label {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ── EDITORIAL (challenge / why) ── */
.editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.editorial-lead-col {
  position: sticky;
  top: 100px;
}
.editorial-lead {
  font-family: var(--fd);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.editorial-lead em {
  font-style: normal;
  color: var(--accent-text);
}
.editorial-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.editorial-item {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.editorial-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.editorial-item-bullet {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dk);
}
.editorial-item-txt h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.editorial-item-txt p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SOLUTION FLOW ── */
.solution-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 44px;
}
.solution-node {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 22px 14px;
}
.solution-node-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-lt);
  border: 1px solid rgba(224, 137, 90, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.solution-node-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--peach);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.solution-node-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.solution-arrow {
  color: var(--border);
  font-size: 20px;
  flex-shrink: 0;
  padding: 0 4px;
}
.solution-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--muted-lt);
  fill: none;
  stroke-width: 1.6;
}

/* ── INTERACTIVE TOOLS ── */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
  align-items: start;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 28px;
}
.tool-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.tool-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.tool-badge {
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-lt);
  border: 1px solid rgba(169, 129, 47, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tool-card > p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.tool-fg {
  margin-bottom: 14px;
}
.tool-fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.tool-fg select,
.tool-fg input {
  width: 100%;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--ink);
  font-family: var(--fb);
}
.tool-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tool-fg-slider label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.tool-slider-val {
  font-family: var(--fm);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
  text-transform: none;
  letter-spacing: 0;
}
.tool-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  appearance: none;
  background: linear-gradient(
    to right,
    var(--cobalt) 0%,
    var(--cobalt) var(--frp-pct, 14%),
    var(--border) var(--frp-pct, 14%),
    var(--border) 100%
  );
  cursor: pointer;
  margin: 4px 0 2px;
}
.tool-slider::-webkit-slider-thumb {
  appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--cobalt);
  cursor: pointer;
  transition: transform 0.15s var(--ease);
}
.tool-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.tool-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--cobalt);
  cursor: pointer;
}
.tool-slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--muted-lt);
}
.tool-alloc {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surf2);
  margin-top: 14px;
}
.tool-alloc-seg {
  transition: width 0.4s var(--ease);
}
.tool-alloc-seg.a {
  background: var(--cobalt);
}
.tool-alloc-seg.b {
  background: var(--gold);
}
.tool-alloc-caption {
  font-size: 10.5px;
  color: var(--muted-lt);
  margin-top: 6px;
}
.tool-btn {
  width: 100%;
  margin-top: 4px;
}
.tool-result {
  display: none;
  margin-top: 18px;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.tool-result.is-visible {
  display: block;
}
.tool-result-headline {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.tool-result-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.tool-result-disclaimer {
  font-size: 11px;
  color: var(--muted-lt);
  line-height: 1.6;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}
.readiness-gauge {
  position: relative;
  width: 180px;
  max-width: 100%;
  margin: 0 auto 6px;
}
.readiness-gauge svg {
  width: 100%;
  display: block;
}
.gauge-bg {
  stroke: var(--border);
}
.gauge-fill {
  stroke: var(--cobalt);
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 1s var(--ease), stroke 0.3s var(--ease);
}
.gauge-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  text-align: center;
  font-family: var(--fm);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .gauge-fill {
    transition: none;
  }
}

/* ── WHO WE SERVE (editorial, aligned icon column) ── */
.serve-list {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.serve-row {
  display: grid;
  grid-template-columns: minmax(220px, 26%) minmax(0, 1fr) 72px;
  column-gap: 28px;
  align-items: center;
  min-height: 118px;
  padding: 28px 20px;
  margin: 0 -20px;
  border-bottom: 1px solid var(--border);
  border-radius: 10px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  box-sizing: border-box;
}
.serve-row:hover {
  background: var(--surf2);
  transform: translateX(6px);
}
.serve-row h3 {
  min-width: 0;
  margin: 0;
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.serve-row:hover h3 {
  color: var(--accent-text);
}
.serve-row p {
  min-width: 0;
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: none;
}
.serve-row-ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-lt);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.serve-row:hover .serve-row-ico,
.serve-row:focus-within .serve-row-ico,
.serve-row:active .serve-row-ico {
  transform: translateY(-2px);
  /* Keep the icon clearly visible while the row heading turns peach. */
  background: #0a3a2e;
  border-color: rgba(243, 201, 168, 0.35);
}
.serve-row-ico svg {
  width: 17px;
  height: 17px;
  stroke: #d9d6cf;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s var(--ease);
}
.serve-row:hover .serve-row-ico svg,
.serve-row:focus-within .serve-row-ico svg,
.serve-row:active .serve-row-ico svg {
  stroke: #f3c9a8;
}

/* ═══ HORIZONTAL JOURNEY (signature scroll-storytelling section) ═══ */
.journey-pin-wrap {
  position: relative;
  height: 320vh;
}
.journey-sticky {
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.journey-sticky.is-pinned {
  position: fixed;
  left: 0;
  right: 0;
}
.journey-sticky.is-before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.journey-sticky.is-after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.journey-progress-line {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 8px;
  width: 90%;
  height: 2px;
  background: rgba(244, 241, 234, 0.14);
}
.journey-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--peach);
  transition: width 0.1s linear;
}
.journey-nodes {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 48px;
}
.journey-node {
  font-family: var(--fm);
  font-size: 11px;
  color: rgba(244, 241, 234, 0.4);
  text-align: center;
  transition: color 0.3s var(--ease);
}
.journey-node b {
  display: block;
  font-family: var(--fb);
  font-size: 13px;
  margin-top: 4px;
  font-weight: 600;
}
.journey-node.is-active {
  color: var(--peach);
}
.journey-track {
  display: flex;
  width: 500%;
}
.journey-panel {
  width: 20%;
  flex-shrink: 0;
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.35;
  transition: opacity 0.4s var(--ease);
}
.journey-panel.is-active {
  opacity: 1;
}
.journey-panel-num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fm);
  font-size: 15px;
  color: var(--peach);
  margin-bottom: 14px;
}
.journey-panel-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--peach);
}
.journey-panel-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--peach);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.journey-panel h3 {
  font-family: var(--fd);
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--ink);
  margin-bottom: 16px;
}
.journey-panel p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}
@media (prefers-reduced-motion: reduce) {
  .journey-pin-wrap {
    height: auto;
  }
  .journey-sticky {
    position: static;
    height: auto;
  }
  .journey-track {
    display: block;
    width: auto;
    transform: none !important;
  }
  .journey-panel {
    width: auto;
    opacity: 1;
    padding: 24px 0;
  }
}
@media (max-width: 900px) {
  .journey-pin-wrap {
    height: auto;
  }
  .journey-sticky {
    position: static;
    height: auto;
    display: block;
  }
  .journey-progress-line,
  .journey-nodes {
    display: none;
  }
  .journey-track {
    display: block;
    width: auto;
    transform: none !important;
  }
  .journey-panel {
    width: auto;
    opacity: 1;
    padding: 22px 5%;
    border-top: 1px solid var(--border);
  }
  .journey-panel:first-child {
    border-top: none;
  }
}

/* ── WHY TRUSTLINE (editorial split + vertical sequence) ── */
.why-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}
.why-statement {
  position: sticky;
  top: 100px;
  align-self: start;
}
.why-sequence {
  position: relative;
  padding-left: 4px;
  border-left: 1px solid var(--border);
}
.why-seq-item {
  display: flex;
  gap: 22px;
  padding: 2px 0 40px 28px;
  position: relative;
}
.why-seq-item:last-child {
  padding-bottom: 2px;
}
.why-seq-num {
  position: absolute;
  left: -13px;
  top: 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}
.why-seq-num svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-seq-txt {
  transition: transform 0.22s var(--ease);
}
.why-seq-txt h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color 0.22s var(--ease);
}
.why-seq-txt p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.why-seq-item:hover .why-seq-num {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 4px var(--gold-lt);
}
.why-seq-item:hover .why-seq-txt {
  transform: translateX(4px);
}
.why-seq-item:hover .why-seq-txt h3 {
  color: var(--gold-dk);
}

/* ── INSIGHTS (featured + editorial list, not cards) ── */
.insights-editorial {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.insight-featured {
  padding-right: 12px;
  border-right: 1px solid var(--border);
}
.insight-featured-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 14px;
}
.insight-featured h3 {
  font-family: var(--fd);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 480px;
}
.insight-featured p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 16px;
}
.insight-featured-meta {
  font-size: 11.5px;
  color: var(--muted-lt);
  font-style: italic;
}
.insight-list {
  display: flex;
  flex-direction: column;
}
.insight-list-item {
  padding: 0 0 22px 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  transition: border-color 0.22s var(--ease);
}
.insight-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.insight-list-item:hover {
  border-left-color: var(--gold);
}
.insight-list-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 7px;
}
.insight-list-tag em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted-lt);
  letter-spacing: 0.02em;
}
.insight-list-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 6px;
  transition: color 0.22s var(--ease);
}
.insight-list-item:hover h4 {
  color: var(--gold-dk);
}
.insight-list-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.insights-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted-lt);
}

/* ── FAQ ── */
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.faq-item[data-open="true"] .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s var(--ease);
}
.faq-item[data-open="true"] .faq-a {
  max-height: 300px;
}
.faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 4px 20px;
  max-width: 680px;
}

/* ═══ SCROLL REVEAL ═══ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* ── SECTION DIVIDER DETAIL (gold) ── */
.sec-rule-gold {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .editorial {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tool-card-head {
    flex-wrap: wrap;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .tool-row {
    grid-template-columns: 1fr;
  }
  .solution-flow {
    flex-direction: column;
  }
  .solution-arrow {
    transform: rotate(90deg);
    padding: 2px 0;
  }
  .why-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-statement {
    position: static;
  }
  .editorial-lead-col {
    position: static;
  }
  .insights-editorial {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .insight-featured {
    padding-right: 0;
    border-right: none;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
  }
  .serve-row {
    grid-template-columns: minmax(0, 1fr) 52px;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 8px;
    align-items: center;
    padding: 24px 20px;
  }
  .serve-row h3 {
    grid-column: 1;
    grid-row: 1;
  }
  .serve-row p {
    grid-column: 1;
    grid-row: 2;
  }
  .serve-row-ico {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: center;
  }
  .trust-strip-in {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════
   TRUSTLINE CONCIERGE (chatbot)
   ═══════════════════════════════════════ */
.concierge-trigger {
  position: fixed;
  right: 22px;
  bottom: 172px;
  z-index: 450;
  width: 56px;
  height: 56px;
  background: var(--navy);
  background-image: linear-gradient(150deg, var(--navy-mid) 0%, var(--navy) 100%);
  border: 1px solid rgba(224, 137, 90, 0.35);
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.concierge-trigger::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 90, 0.4);
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.concierge-trigger:hover::before,
.concierge-trigger:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}
.concierge-trigger-status {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5fd68f;
  border: 2px solid var(--navy);
  animation: concierge-breathe 2.6s ease-in-out infinite;
}
@keyframes concierge-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(95, 214, 143, 0.5);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(95, 214, 143, 0);
  }
}
@media (max-width: 767px) {
  .concierge-trigger {
    right: 14px;
    bottom: 82px;
    width: 50px;
    height: 50px;
    font-size: 13.5px;
  }
}
.concierge-trigger .fab-tooltip {
  text-align: left;
  line-height: 1.5;
}
.concierge-trigger .fab-tooltip small {
  display: block;
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.concierge-panel {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 460;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: min(600px, calc(100vh - 140px));
  background: var(--navy);
  background-image: linear-gradient(165deg, var(--navy-mid) 0%, var(--green-deep) 100%);
  border: 1px solid rgba(224, 137, 90, 0.18);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.94) translateY(14px);
  transform-origin: bottom right;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.32s var(--ease),
    transform 0.32s var(--ease),
    visibility 0s linear 0.32s;
}
.concierge-panel.is-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
  visibility: visible;
  transition:
    opacity 0.32s var(--ease),
    transform 0.32s var(--ease),
    visibility 0s linear 0s;
}
.concierge-head {
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}
.concierge-head-title {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.concierge-head-title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fd68f;
  flex-shrink: 0;
}
.concierge-head-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}
.concierge-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.concierge-reset {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  padding: 2px;
  line-height: 0;
  transition: color 0.15s var(--ease);
}
.concierge-reset:hover {
  color: var(--gold);
}
.concierge-reset svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.concierge-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  padding: 2px;
  line-height: 0;
  flex-shrink: 0;
  transition: color 0.15s var(--ease);
}
.concierge-close:hover {
  color: #fff;
}
.concierge-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.concierge-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.concierge-msg {
  max-width: 88%;
  font-size: 13.5px;
  line-height: 1.6;
  animation: concierge-msg-in 0.25s var(--ease);
}
@keyframes concierge-msg-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.concierge-msg-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.88);
  border-left: 2px solid var(--gold);
  padding: 9px 12px 9px 12px;
  border-radius: 0 10px 10px 0;
}
.concierge-msg-user {
  align-self: flex-end;
  background: var(--cobalt);
  color: #fff;
  border-radius: 12px;
  border-bottom-right-radius: 4px;
  padding: 10px 13px;
}
.concierge-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 10px 12px;
}
.concierge-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: concierge-typing-dot 1.1s ease-in-out infinite;
}
.concierge-typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.concierge-typing span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes concierge-typing-dot {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}
.concierge-progress {
  display: flex;
  gap: 4px;
  margin: 2px 0 4px;
}
.concierge-progress span {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s var(--ease);
}
.concierge-progress span.on {
  background: var(--gold);
}
.concierge-quick {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}
.concierge-quick button {
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-family: var(--fb);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  cursor: pointer;
  transition:
    border-color 0.15s var(--ease),
    background 0.15s var(--ease),
    color 0.15s var(--ease),
    transform 0.15s var(--ease);
}
.concierge-quick button:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 90, 0.1);
  color: var(--gold);
  transform: translateX(2px);
}
.concierge-quick-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-top: 2px;
  padding-bottom: 2px;
}
.concierge-quick-row button {
  flex-shrink: 0;
  white-space: nowrap;
}
.concierge-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #5fd68f;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 2px;
  transition: background 0.15s var(--ease);
}
.concierge-wa-cta:hover {
  background: rgba(37, 211, 102, 0.2);
}
.concierge-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  flex-shrink: 0;
  display: flex;
  gap: 8px;
}
.concierge-foot input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-family: var(--fb);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.concierge-foot input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.concierge-foot input:focus {
  outline: none;
  border-color: var(--gold);
}
.concierge-foot button {
  background: var(--cobalt);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}
.concierge-foot button:hover {
  background: var(--cobalt-dk);
}
.concierge-disclaimer {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.32);
  padding: 0 18px 14px;
  line-height: 1.5;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .concierge-panel {
    right: 10px;
    left: 10px;
    top: 10px;
    bottom: 78px;
    width: auto;
    max-width: none;
    max-height: none;
    border-radius: 16px;
    transform-origin: bottom right;
  }
  .concierge-quick-row {
    flex-wrap: nowrap;
  }
}
body.concierge-open-mobile {
  overflow: hidden;
}

/* FINAL WHO-WE-SERVE POLISH — consistent editorial layout */
#who-we-serve .si { max-width: 1540px; margin-inline: auto; }
#who-we-serve .minimal-intro { max-width: 820px; margin-inline: auto; }
#who-we-serve .serve-list { margin-top: 48px; }
#who-we-serve .serve-row {
  grid-template-columns: minmax(250px, 28%) minmax(0, 1fr) 64px;
  column-gap: 36px;
  min-height: 132px;
  padding: 30px 24px;
  margin: 0;
  border-radius: 0;
  transform: none;
  transition: background-color .25s ease, border-color .25s ease;
}
#who-we-serve .serve-row:hover,
#who-we-serve .serve-row:focus-within,
#who-we-serve .serve-row:active { transform: none; background: rgba(255,255,255,.018); }
#who-we-serve .serve-row h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: .01em;
}
#who-we-serve .serve-row p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  padding-right: 10px;
}
#who-we-serve .serve-row-ico {
  width: 48px;
  height: 48px;
  justify-self: end;
  background: #214c3d;
  border: 1px solid rgba(216,219,214,.14);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
#who-we-serve .serve-row-ico svg,
#who-we-serve .serve-row:hover .serve-row-ico svg,
#who-we-serve .serve-row:focus-within .serve-row-ico svg,
#who-we-serve .serve-row:active .serve-row-ico svg {
  stroke: #d9d6cf;
}
#who-we-serve .serve-row:hover .serve-row-ico,
#who-we-serve .serve-row:focus-within .serve-row-ico,
#who-we-serve .serve-row:active .serve-row-ico {
  background: #173f32;
  border-color: rgba(243,201,168,.22);
  transform: translateY(-1px);
}
#who-we-serve .serve-row:hover h3,
#who-we-serve .serve-row:focus-within h3,
#who-we-serve .serve-row:active h3 { color: var(--accent-text); }

@media (max-width: 900px) {
  #who-we-serve .serve-row {
    grid-template-columns: minmax(0,1fr) 56px;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 8px;
    min-height: 118px;
    padding: 24px 18px;
  }
  #who-we-serve .serve-row h3 { grid-column: 1; grid-row: 1; font-size: 21px; }
  #who-we-serve .serve-row p { grid-column: 1; grid-row: 2; font-size: 14.5px; }
  #who-we-serve .serve-row-ico { grid-column: 2; grid-row: 1 / span 2; }
}

/* ===== HOW IT WORKS — row layout matching WHO WE SERVE ===== */
#how-it-works.how-works-redesign{padding:76px 0 82px!important;background:#073f33!important;overflow:hidden}
#how-it-works .how-works-head{text-align:center;margin:0 auto 48px;max-width:1100px}
#how-it-works .how-works-head .eyebrow{display:block;color:var(--peach);letter-spacing:.22em;margin-bottom:18px}
#how-it-works .how-works-head h2{font-family:"Times New Roman",Times,serif;color:var(--ink);margin:0 auto 14px;line-height:1.08}
#how-it-works .how-works-subtitle{margin:0 auto;color:var(--muted);font-family:"Times New Roman",Times,serif;font-size:17px;line-height:1.55;text-align:center}
#how-it-works .journey-progress-wrap{max-width:1120px;margin:0 auto 28px;padding:0 18px}
#how-it-works .journey-progress-line{position:relative;width:100%;max-width:none;height:2px;margin:0;background:rgba(213,217,215,.18);overflow:visible}
#how-it-works .journey-progress-fill{position:absolute;inset:0 auto 0 0;width:0;height:2px;background:var(--peach);transition:width .65s cubic-bezier(.22,1,.36,1);box-shadow:0 0 12px rgba(242,157,108,.3)}
#how-it-works .journey-progress-fill::after{content:"";position:absolute;right:-5px;top:50%;width:10px;height:10px;border-radius:50%;background:var(--peach);transform:translateY(-50%);box-shadow:0 0 0 5px rgba(242,157,108,.10),0 0 18px rgba(242,157,108,.45)}
#how-it-works .journey-nodes{display:grid;grid-template-columns:repeat(5,1fr);width:100%;max-width:none;margin:12px 0 0;gap:8px}
#how-it-works .journey-node{appearance:none;border:0;background:transparent;padding:8px 4px;color:rgba(213,217,215,.58);font-family:"Times New Roman",Times,serif;font-size:15px;text-align:center;cursor:pointer;transition:color .28s ease,transform .28s ease}
#how-it-works .journey-node:hover,#how-it-works .journey-node.is-active{color:var(--peach);transform:translateY(-1px)}
#how-it-works .journey-track{display:block;width:auto;max-width:1280px;margin:0 auto;border-top:1px solid rgba(213,217,215,.12);transform:none!important}
#how-it-works .journey-panel{appearance:none;width:100%;min-height:142px;padding:28px 24px;display:grid;grid-template-columns:minmax(250px,28%) 1fr 64px;align-items:center;gap:34px;background:transparent;border:0;border-bottom:1px solid rgba(213,217,215,.13);border-radius:0;color:inherit;text-align:left;opacity:1;cursor:pointer;transition:background .32s ease,border-color .32s ease,transform .32s ease}
#how-it-works .journey-panel:hover,#how-it-works .journey-panel.is-active{background:rgba(255,255,255,.018);border-bottom-color:rgba(242,157,108,.32)}
#how-it-works .journey-panel h3{font-family:"Times New Roman",Times,serif;font-size:clamp(23px,2vw,30px);font-weight:700;color:var(--ink);margin:0;transition:color .3s ease}
#how-it-works .journey-panel p{font-family:"Times New Roman",Times,serif;font-size:16px;line-height:1.6;color:var(--muted);max-width:none;margin:0}
#how-it-works .journey-panel:hover h3,#how-it-works .journey-panel.is-active h3{color:var(--peach)}
#how-it-works .journey-panel-ico{justify-self:end;display:inline-flex;width:48px;height:48px;align-items:center;justify-content:center;border-radius:50%;border:1px solid rgba(242,157,108,.42);background:rgba(255,255,255,.055);transition:background .3s ease,border-color .3s ease,transform .3s ease}
#how-it-works .journey-panel-ico svg{width:21px;height:21px;stroke:var(--peach);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:stroke .3s ease}
#how-it-works .journey-panel:hover .journey-panel-ico,#how-it-works .journey-panel.is-active .journey-panel-ico{background:#06352c;border-color:rgba(213,217,215,.42);transform:scale(1.06)}
#how-it-works .journey-panel:hover .journey-panel-ico svg,#how-it-works .journey-panel.is-active .journey-panel-ico svg{stroke:var(--ink)}
@media(max-width:900px){#how-it-works.how-works-redesign{padding:58px 0!important}#how-it-works .journey-progress-wrap{display:none}#how-it-works .journey-panel{grid-template-columns:1fr 48px;gap:12px 18px;padding:24px 4px}#how-it-works .journey-panel h3{grid-column:1}#how-it-works .journey-panel p{grid-column:1;grid-row:2}#how-it-works .journey-panel-ico{grid-column:2;grid-row:1/3;align-self:center}}

/* ═══ FINAL VISIBILITY + GROWTH LOGO POLISH ═══ */
/* Use the supplied Growth mark consistently in both Growth locations. */
#who-we-serve .serve-growth-logo,
#how-it-works .journey-growth-logo {
  overflow: hidden;
}
#who-we-serve .serve-growth-logo img,
#how-it-works .journey-growth-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#who-we-serve .serve-growth-logo img {
  border-radius: 50%;
}
#how-it-works .journey-growth-logo img {
  border-radius: 50%;
}

/* Start a Conversation should use the site's peach-orange accent. */
.eyebrow-wt {
  color: var(--peach) !important;
}

/* Consent Privacy Policy must remain clearly visible on dark backgrounds. */
.sf-consent a,
.ff-consent a,
.sf-consent a:visited,
.ff-consent a:visited {
  color: var(--silver-text) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sf-consent a:hover,
.ff-consent a:hover {
  color: var(--white-soft) !important;
}

/* Transaction status labels: no green text for "Structured". */
.st-done,
.st-struc {
  color: var(--white-soft) !important;
}
.st-done {
  background: rgba(111, 214, 143, 0.10);
  border-color: rgba(216, 219, 214, 0.18);
}
.st-struc {
  color: var(--peach) !important;
  background: rgba(255, 166, 102, 0.08);
  border-color: rgba(255, 166, 102, 0.28);
}

/* Footer: raise contrast so text is readable instead of washed out. */
footer {
  color: rgba(255, 255, 255, 0.72);
}
.ft-brand p {
  color: rgba(255, 255, 255, 0.58);
}
.ft-col h5 {
  color: rgba(255, 255, 255, 0.58);
}
.ft-col ul li a,
.ft-col ul li span {
  color: rgba(255, 255, 255, 0.62);
}
.ft-col ul li a:hover {
  color: #fff;
}
.ft-disc p {
  color: rgba(255, 255, 255, 0.56);
}
.ft-disc strong {
  color: rgba(255, 255, 255, 0.82);
}
.ft-legal-links a {
  color: rgba(255, 255, 255, 0.62);
}
.ft-legal-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.ft-copy {
  color: rgba(255, 255, 255, 0.52);
}
.ft-cin-inline {
  color: rgba(255, 255, 255, 0.48);
}

/* ═══ GROWTH LOGO FINAL ALIGNMENT ═══
   The supplied Growth mark already contains its own circular badge.
   Do not wrap it in a second circle/background. Keep it identical in size,
   alignment and spacing in both Growth locations. */
#who-we-serve .serve-row-ico.serve-growth-logo,
#how-it-works .journey-panel-ico.journey-growth-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
  overflow: visible;
  transform: none;
}

#who-we-serve .serve-row-ico.serve-growth-logo img,
#how-it-works .journey-panel-ico.journey-growth-logo img {
  display: block;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  transform: none;
  transition: transform .25s ease, filter .25s ease;
}

#who-we-serve .serve-row:hover .serve-row-ico.serve-growth-logo,
#who-we-serve .serve-row:focus-within .serve-row-ico.serve-growth-logo,
#who-we-serve .serve-row:active .serve-row-ico.serve-growth-logo,
#how-it-works .journey-panel:hover .journey-panel-ico.journey-growth-logo,
#how-it-works .journey-panel.is-active .journey-panel-ico.journey-growth-logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none;
}

#who-we-serve .serve-row:hover .serve-row-ico.serve-growth-logo img,
#who-we-serve .serve-row:focus-within .serve-row-ico.serve-growth-logo img,
#who-we-serve .serve-row:active .serve-row-ico.serve-growth-logo img,
#how-it-works .journey-panel:hover .journey-panel-ico.journey-growth-logo img,
#how-it-works .journey-panel.is-active .journey-panel-ico.journey-growth-logo img {
  transform: scale(1.04);
}

/* FINAL GROWTH ICON COLOR COORDINATION
   The supplied Growth mark is retained, but its normal state is silver/whitish
   so it matches the site's other inactive icons. Peach appears only on hover/
   active state, matching the interaction language used across the site. */
#who-we-serve .serve-row-ico.serve-growth-logo,
#how-it-works .journey-panel-ico.journey-growth-logo {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 50%;
  overflow: visible;
}

#who-we-serve .serve-row-ico.serve-growth-logo img,
#how-it-works .journey-panel-ico.journey-growth-logo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  transform: none;
  transition: opacity .22s ease, transform .22s ease;
}

/* Silver is the default/inactive state. */
#who-we-serve .growth-logo-silver,
#how-it-works .growth-logo-silver { opacity: 1; }
#who-we-serve .growth-logo-peach,
#how-it-works .growth-logo-peach { opacity: 0; }

/* Peach appears when the row/step is interacted with. */
#who-we-serve .serve-row:hover .growth-logo-silver,
#who-we-serve .serve-row:focus-within .growth-logo-silver,
#who-we-serve .serve-row:active .growth-logo-silver,
#how-it-works .journey-panel:hover .growth-logo-silver,
#how-it-works .journey-panel.is-active .growth-logo-silver { opacity: 0; }

#who-we-serve .serve-row:hover .growth-logo-peach,
#who-we-serve .serve-row:focus-within .growth-logo-peach,
#who-we-serve .serve-row:active .growth-logo-peach,
#how-it-works .journey-panel:hover .growth-logo-peach,
#how-it-works .journey-panel.is-active .growth-logo-peach {
  opacity: 1;
  transform: scale(1.04);
}

/* ================================================================
   FINAL CHASE-INSPIRED LIGHT THEME POLISH
   User-requested: keep the existing layout/alignment/functionality;
   use Chase-style blue only on the homepage hero, with white/light
   content sections and dark text everywhere else.
   ================================================================ */
:root {
  --chase-blue: #015cb9;
  --chase-blue-dark: #004b99;
  --chase-blue-light: #eaf3ff;
  --chase-border: #d8dee8;
  --chase-text: #15171b;
  --chase-muted: #536071;
}

/* Top utility strip: no colored band */
.util-bar {
  background: transparent !important;
  color: var(--chase-muted) !important;
  border: 0 !important;
}
.util-bar a { color: var(--chase-text) !important; }
.util-bar a:hover,
.util-bar a:focus { color: var(--chase-blue) !important; }

/* Navigation stays white and clean */
nav { background: #fff !important; border-bottom: 1px solid var(--chase-border) !important; }
.nav-links > li > a { color: var(--chase-text) !important; }
.nav-links > li > a:hover,
.nav-links > li > a:focus,
.nav-links > li > a.nav-active {
  color: var(--chase-blue) !important;
  background: var(--chase-blue-light) !important;
}
.nav-cta-btn,
.nav-cta-btn:hover,
.nav-cta-btn:focus {
  background: var(--chase-blue) !important;
  color: #fff !important;
}

/* Home page light-system tokens. Hero is overridden separately below. */
#page-home {
  --ink: var(--chase-text);
  --white: #fff;
  --surf: #fff;
  --surf2: #f5f6f8;
  --border: var(--chase-border);
  --muted: var(--chase-muted);
  --muted-lt: #6b7584;
  --cobalt: var(--chase-blue);
  --cobalt-dk: var(--chase-blue-dark);
  --cobalt-lt: var(--chase-blue-light);
  --cobalt-mid: #9bbce0;
  --accent-text: var(--chase-blue);
  --green-lt: #edf6f1;
}

/* Only the homepage hero uses the Chase blue field. */
#page-home .hero,
#page-home .hero.hero-minimal {
  background: var(--chase-blue) !important;
}

/* Every other homepage section is white/light — no repeated blue or green fields. */
#page-home #trust-strip,
#page-home #core-services,
#page-home #challenge,
#page-home #solution,
#page-home #tools,
#page-home #case-study,
#page-home #experience,
#page-home #who-we-serve,
#page-home #leadership,
#page-home #how-it-works,
#page-home #why-trustline,
#page-home #insights,
#page-home #faq,
#page-home #home-cta {
  background: #fff !important;
  background-image: none !important;
  color: var(--chase-text) !important;
}

/* Remove white-on-green classes from light sections. */
#page-home .ht-wt,
#page-home .body-wt,
#page-home .eyebrow-wt,
#page-home #home-cta .ht-wt,
#page-home #home-cta .body-wt,
#page-home #home-cta .eyebrow-wt {
  color: var(--chase-text) !important;
}
#page-home .eyebrow,
#page-home .eyebrow-wt,
#page-home .leader-kicker,
#page-home .sec-rule-gold {
  color: var(--chase-blue) !important;
}

/* Hero text remains white over blue. */
#page-home .hero .hero-badge { color: #fff !important; border-color: rgba(255,255,255,.55) !important; background: rgba(255,255,255,.08) !important; }
#page-home .hero .hero-headline { color: #fff !important; }
#page-home .hero .hero-headline em { color: #f7d0b2 !important; }
#page-home .hero .hero-sub { color: rgba(255,255,255,.88) !important; }
#page-home .hero .hero-service-line { color: rgba(255,255,255,.78) !important; }
#page-home .hero .btn-primary { background: #118b4d !important; color: #fff !important; }
#page-home .hero .btn-primary:hover { background: #0b7741 !important; }
#page-home .hero .btn-outline-wt { color: #fff !important; border-color: rgba(255,255,255,.72) !important; }

/* Financial Structure Snapshot: white box + black/dark text. */
#page-home .hero-dash {
  background: #fff !important;
  border: 1px solid #d4dce8 !important;
  box-shadow: 0 22px 55px rgba(0, 45, 95, .16) !important;
  animation: none !important;
}
#page-home .hero-dash::before,
#page-home .hero-dash::after { display: none !important; }
#page-home .hero-dash-top,
#page-home .hero-dash-cap,
#page-home .hero-dash-facilities { border-color: #e1e5eb !important; }
#page-home .hero-dash-title,
#page-home .hero-dash-row-label,
#page-home .hero-dash-row-num,
#page-home .hero-dash-fac-label,
#page-home .hero-dash-fac-name,
#page-home .hero-dash-fac-status,
#page-home .hero-dash-cap-label,
#page-home .hero-dash-cap-legend,
#page-home .hero-dash-foot,
#page-home .hero-dash-chart-label { color: var(--chase-text) !important; }
#page-home .hero-dash-row-delta.neutral { color: #687385 !important; }
#page-home .hero-dash-row-delta.up { color: #118b4d !important; }
#page-home .hero-dash-tag { color: var(--chase-blue) !important; border-color: #a9c5e3 !important; }
#page-home .hero-dash-row { border-bottom-color: #e5e8ee !important; }
#page-home .hero-dash-interactive:hover,
#page-home .hero-dash-interactive:focus-visible { background: #f7f9fc !important; }
#page-home .hero-dash-interactive::after { background: var(--chase-blue) !important; }
#page-home .hero-dash-interactive:focus-visible { outline-color: rgba(1,92,185,.35) !important; }
#page-home .hero-dash-cap-bar { background: #e8edf3 !important; }
#page-home .hero-dash-cap-debt { background: var(--chase-blue) !important; }
#page-home .hero-dash-cap-equity { background: #f2b08a !important; }
#page-home .hero-dash-chart-line { stroke: var(--chase-blue) !important; }
#page-home .hero-dash-chart-dot { fill: var(--chase-blue) !important; }
#page-home .hero-dash-fac-status i { background: #2ebd78 !important; }
#page-home .hero-dash-fac-status.pending i { background: #f08a4b !important; }

/* Case study: both comparison panels use the same restrained light treatment. */
#page-home .case-col-a,
#page-home .case-col-b { background: #f5f6f8 !important; color: var(--chase-text) !important; border-color: var(--chase-border) !important; }
#page-home .lbl-a,
#page-home .case-col-a .case-list li::before { color: var(--chase-blue) !important; }
#page-home .case-fig-highlight { color: var(--chase-blue) !important; }
#page-home .fig-a {
  background: var(--chase-blue-light) !important;
  border-color: #9dc0e5 !important;
  color: var(--chase-text) !important;
}
#page-home .fig-b { background: #fff !important; border-color: var(--chase-border) !important; }
#page-home .r-badge {
  background: #f7fbff !important;
  border-color: #b7d1eb !important;
  color: var(--chase-text) !important;
}

/* Transaction labels: structured is blue/white, not green. Advisory remains a distinct peach highlight. */
#page-home .st-done,
#page-home .st-struc {
  background: var(--chase-blue-light) !important;
  color: var(--chase-blue) !important;
  border-color: #b7d1eb !important;
}
#page-home .tx-amt { color: var(--chase-blue) !important; }

/* Indicative tool badges + Funding Requirement emphasis. */
#page-home .tool-badge {
  color: var(--chase-blue) !important;
  background: var(--chase-blue-light) !important;
  border-color: #b7d1eb !important;
}
#page-home .tool-card:first-child .tool-fg-slider > label {
  color: var(--chase-blue) !important;
}
#page-home .tool-slider { background: linear-gradient(to right, var(--chase-blue) 0%, var(--chase-blue) var(--frp-pct, 14%), #dfe5ed var(--frp-pct, 14%), #dfe5ed 100%) !important; }
#page-home .tool-slider::-webkit-slider-thumb,
#page-home .tool-slider::-moz-range-thumb { border-color: var(--chase-blue) !important; }
#page-home .tool-alloc-seg.a { background: var(--chase-blue) !important; }
#page-home .tool-alloc-seg.b { background: #dce7f2 !important; }
#page-home .tool-slider-val { color: var(--chase-blue) !important; }

/* Who-we-serve rows: white, no green hover state, coordinated blue icon treatment. */
#page-home .serve-row { background: #fff !important; }
#page-home .serve-row:hover,
#page-home .serve-row:focus-within,
#page-home .serve-row:active { background: #f7f9fc !important; transform: none !important; }
#page-home .serve-row h3,
#page-home .serve-row:hover h3 { color: var(--chase-text) !important; }
#page-home .serve-row-ico {
  background: #fff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 7px 18px rgba(20, 42, 70, .08) !important;
}
#page-home .serve-row-ico svg { stroke: var(--chase-blue) !important; }
#page-home .serve-row:hover .serve-row-ico,
#page-home .serve-row:focus-within .serve-row-ico,
#page-home .serve-row:active .serve-row-ico {
  background: #fff !important;
  border-color: #9dbfe1 !important;
}
#page-home .serve-row:hover .serve-row-ico svg,
#page-home .serve-row:focus-within .serve-row-ico svg,
#page-home .serve-row:active .serve-row-ico svg { stroke: var(--chase-blue) !important; }

/* Growth logo: remove its built-in green square/circle and use a transparent blue mark inside the normal icon circle. */
#page-home .serve-row-ico.serve-growth-logo,
#page-home .journey-panel-ico.journey-growth-logo {
  background: #fff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 7px 18px rgba(20,42,70,.08) !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
}
#page-home .serve-growth-logo img,
#page-home .journey-growth-logo img { display: none !important; }
#page-home .serve-growth-logo::before,
#page-home .journey-growth-logo::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: url("../assets/growth-icon-blue.png") center/contain no-repeat;
}

/* How-it-works: make the entire section light and readable. */
#page-home #how-it-works .how-works-head .ht-wt,
#page-home #how-it-works .how-works-subtitle,
#page-home #how-it-works .journey-node,
#page-home #how-it-works .journey-panel h3,
#page-home #how-it-works .journey-panel p { color: var(--chase-text) !important; }
#page-home #how-it-works .journey-node.is-active { color: var(--chase-blue) !important; }
#page-home #how-it-works .journey-progress-line { background: #dce2ea !important; }
#page-home #how-it-works .journey-progress-fill { background: var(--chase-blue) !important; }
#page-home #how-it-works .journey-panel {
  background: #fff !important;
  border-color: var(--chase-border) !important;
  color: var(--chase-text) !important;
}
#page-home #how-it-works .journey-panel:hover,
#page-home #how-it-works .journey-panel.is-active { background: #f7f9fc !important; }
#page-home #how-it-works .journey-panel-ico {
  background: #fff !important;
  border: 1px solid #cbd5e1 !important;
}
#page-home #how-it-works .journey-panel-ico svg { stroke: var(--chase-blue) !important; }

/* Leadership typography and the 30+ years line. */
#page-home #leadership .leader-exp {
  font-family: var(--fb) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: var(--chase-muted) !important;
}
#page-home #leadership .leader-content h3 { color: var(--chase-text) !important; }
#page-home #leadership .leader-content p { color: var(--chase-muted) !important; font-size: 14px !important; line-height: 1.65 !important; }
#page-home #leadership .leader-tags span {
  background: #f5f6f8 !important;
  border-color: var(--chase-border) !important;
  color: var(--chase-text) !important;
}
#page-home #leadership .leader-link { color: var(--chase-blue) !important; }

/* Home contact: white, readable office locations and visible Privacy Policy. */
#page-home #home-cta { background: #fff !important; }
#page-home #home-cta .minimal-contact-copy,
#page-home #home-cta .minimal-contact-copy * { color: var(--chase-text) !important; }
#page-home #home-cta .minimal-contact-copy .eyebrow-wt { color: var(--chase-blue) !important; }
#page-home #home-cta .office-strip { color: var(--chase-muted) !important; }
#page-home #home-cta .office-strip span::before { color: var(--chase-blue) !important; }
#page-home #home-cta .minimal-form-card { background: #fff !important; border-color: var(--chase-border) !important; }
#page-home #home-cta .sf-consent a,
#page-home #home-cta .sf-consent a:visited { color: var(--chase-text) !important; }
#page-home #home-cta .sf-submit { background: var(--chase-blue) !important; color: #fff !important; }
#page-home #home-cta .minimal-contact-bar {
  background: #f5f6f8 !important;
  border-color: var(--chase-border) !important;
}
#page-home #home-cta .minimal-contact-bar-label { color: var(--chase-blue) !important; }
#page-home #home-cta .minimal-contact-bar a { color: var(--chase-text) !important; }
#page-home #home-cta .minimal-contact-bar a:hover { color: var(--chase-blue) !important; }
#page-home #home-cta .minimal-contact-sep { color: #8792a1 !important; }

/* Remove accidental green styling from light pages and keep service/about/contact pages white. */
.page:not(#page-home) .svc-hero,
.page:not(#page-home) .about-page-hero { background: #fff !important; color: var(--chase-text) !important; }
.page:not(#page-home) .svc-hero .ht-wt,
.page:not(#page-home) .svc-hero .body-wt,
.page:not(#page-home) .svc-hero .eyebrow-wt { color: var(--chase-text) !important; }
.page:not(#page-home) .svc-hero .eyebrow-wt { color: var(--chase-blue) !important; }
.page:not(#page-home) .svc-hero .ht-wt { color: var(--chase-text) !important; }

/* Office details: keep all three locations visible and put Gurgaon last. */
.off-grid .off-card:nth-child(1) { order: 1; }
.off-grid .off-card:nth-child(3) { order: 2; }
.off-grid .off-card:nth-child(2) { order: 3; }
.off-card .off-ico { background: var(--chase-blue-light) !important; }
.off-card .off-ico svg { stroke: var(--chase-blue) !important; }
.off-card .off-tag,
.off-card .off-link { color: var(--chase-blue) !important; }

/* Contact-page office summary must not lose its locations. */
.ctc-row-txt p { color: var(--chase-muted) !important; }

/* Footer: readable light Chase-style footer instead of washed-out green. */
footer {
  background: #015cb9 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
}
.ft-grid { border-bottom-color: var(--chase-border) !important; }
.ft-brand p,
.ft-col h5,
.ft-col ul li a,
.ft-col ul li span,
.ft-legal-links a,
.ft-copy,
.ft-cin-inline,
.ft-disc p { color: var(--chase-muted) !important; }
.ft-col h5 { color: var(--chase-text) !important; }
.ft-col ul li a:hover,
.ft-legal-links a:hover { color: var(--chase-blue) !important; }
.ft-disc { background: #f5f6f8 !important; border-color: var(--chase-border) !important; }
.ft-disc strong { color: var(--chase-text) !important; }

/* Prevent green hover/selection-looking states on normal text rows. */
.serve-row h3,
.serve-row p,
.journey-node,
.journey-panel h3,
.journey-panel p {
    -webkit-user-select: none;
    user-select: none;
}
::selection { background: rgba(1,92,185,.18); color: var(--chase-text); }

/* Keep the Advisory Mandate distinct, as previously requested. */
.st-advisory,
.tx-status.advisory,
.status-advisory { color: #c86f3d !important; background: #fff1e8 !important; border-color: #efb18e !important; }

/* Case-study CTA should read as the primary Chase-blue action. */
#page-home .minimal-center-cta .btn-ghost {
  background: var(--chase-blue) !important;
  border-color: var(--chase-blue) !important;
  color: #fff !important;
  box-shadow: 0 5px 16px rgba(1,92,185,.16);
}
#page-home .minimal-center-cta .btn-ghost:hover,
#page-home .minimal-center-cta .btn-ghost:focus-visible {
  background: var(--chase-blue-dark) !important;
  border-color: var(--chase-blue-dark) !important;
  color: #fff !important;
}

/* Keep Advisory Mandate as the one intentional peach status accent. */
#page-home .tx-status.st-advisory {
  background: #fff1e8 !important;
  color: #c86f3d !important;
  border: 1px solid #efb18e !important;
}


/* ================================================================
   FINAL USER-REQUESTED BLUE/WHITE POLISH
   Scope: homepage visual corrections only. Layout/content unchanged.
   ================================================================ */
#page-home {
  --chase-blue: #015cb9;
  --chase-blue-dark: #004b99;
  --chase-blue-light: #eaf3ff;
  --chase-border: #d8dee8;
  --chase-text: #15171b;
  --chase-muted: #536071;
  --chase-soft-blue: #9fc4e8;
  --chase-soft-blue-2: #dce9f6;
}

/* HERO SNAPSHOT: keep the blue card, remove every peach/orange accent inside it. */
#page-home .hero-dash {
  background: var(--chase-blue) !important;
  border-color: rgba(255,255,255,.34) !important;
  box-shadow: 0 22px 55px rgba(0,45,95,.18) !important;
}
#page-home .hero-dash-top,
#page-home .hero-dash-cap,
#page-home .hero-dash-facilities,
#page-home .hero-dash-chart { border-color: rgba(255,255,255,.22) !important; }
#page-home .hero-dash-title,
#page-home .hero-dash-row-label,
#page-home .hero-dash-row-num,
#page-home .hero-dash-fac-label,
#page-home .hero-dash-fac-name,
#page-home .hero-dash-fac-status,
#page-home .hero-dash-cap-label,
#page-home .hero-dash-cap-legend,
#page-home .hero-dash-chart-label,
#page-home .hero-dash-foot { color: rgba(255,255,255,.92) !important; }
#page-home .hero-dash-row-delta.neutral { color: rgba(255,255,255,.70) !important; }
#page-home .hero-dash-row-delta.up { color: #9fd6ff !important; }
#page-home .hero-dash-tag { color: #fff !important; border-color: rgba(255,255,255,.50) !important; }
#page-home .hero-dash-row { border-bottom-color: rgba(255,255,255,.18) !important; }
#page-home .hero-dash-interactive:hover,
#page-home .hero-dash-interactive:focus-visible { background: rgba(255,255,255,.09) !important; }
#page-home .hero-dash-interactive::after { background: #9fd6ff !important; }
#page-home .hero-dash-interactive:focus-visible { outline-color: rgba(255,255,255,.65) !important; }
#page-home .hero-dash-cap-bar { background: rgba(255,255,255,.18) !important; }
#page-home .hero-dash-cap-debt { background: #ffffff !important; }
#page-home .hero-dash-cap-equity { background: #9fc4e8 !important; }
#page-home .hero-dash-cap-legend i.hero-dash-cap-debt { background: #fff !important; }
#page-home .hero-dash-cap-legend i.hero-dash-cap-equity { background: #9fc4e8 !important; }
#page-home .hero-dash-fac-status i { background: #8fd0ff !important; }
#page-home .hero-dash-fac-status.pending i { background: #9fc4e8 !important; }
#page-home .hero-dash-chart-line { stroke: #9fd6ff !important; }
#page-home .hero-dash-chart-flow { stroke: #fff !important; }
#page-home .hero-dash-chart-dot { fill: #fff !important; }

/* TRUST STRIP NUMBERS: blue, not peach. */
#page-home .trust-mark-num { color: var(--chase-blue) !important; }

/* CHALLENGE BULLETS: blue outline instead of orange. */
#page-home .editorial-item-bullet { border-color: #9bbce0 !important; }

/* SOLUTION FLOW: blue circles, clickable pop/highlight animation. */
#page-home .solution-node {
  cursor: pointer;
  border-radius: 12px;
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}
#page-home .solution-node:hover,
#page-home .solution-node.is-selected {
  transform: translateY(-7px);
  background: #f7faff;
  box-shadow: 0 12px 28px rgba(1,92,185,.10);
}
#page-home .solution-node-ico {
  background: var(--chase-blue-light) !important;
  border-color: #a9c8e8 !important;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#page-home .solution-node-ico svg { stroke: var(--chase-blue) !important; }
#page-home .solution-node:hover .solution-node-ico,
#page-home .solution-node.is-selected .solution-node-ico {
  background: var(--chase-blue) !important;
  border-color: var(--chase-blue) !important;
  transform: scale(1.08);
  box-shadow: 0 0 0 6px var(--chase-blue-light);
}
#page-home .solution-node:hover .solution-node-ico svg,
#page-home .solution-node.is-selected .solution-node-ico svg { stroke: #fff !important; }
#page-home .solution-node-label { transition: color .25s ease, transform .25s ease; }
#page-home .solution-node:hover .solution-node-label,
#page-home .solution-node.is-selected .solution-node-label { color: var(--chase-blue) !important; transform: translateY(2px); }
#page-home .solution-arrow svg { stroke: #7b8798 !important; }

/* FUNDING ICON: use a dedicated banknote/rupee-style mark, still blue. */
#page-home .solution-node-funding .solution-node-ico svg { width: 21px; height: 21px; }

/* TRANSACTION EXPERIENCE: remove peach Advisory Mandate and make all statuses blue.
   Rows are clickable and receive a subtle pop animation. */
#page-home .mandate-row {
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
#page-home .mandate-row:hover,
#page-home .mandate-row.is-selected {
  background: #f7faff !important;
  transform: translateX(5px);
  box-shadow: inset 3px 0 0 var(--chase-blue);
}
#page-home .tx-amt { color: var(--chase-blue) !important; }
#page-home .st-done,
#page-home .st-struc,
#page-home .tx-status.st-advisory {
  background: var(--chase-blue-light) !important;
  color: var(--chase-blue) !important;
  border: 1px solid #b7d1eb !important;
}
#page-home .mandate-row.is-selected .tx-status { background: var(--chase-blue) !important; color: #fff !important; border-color: var(--chase-blue) !important; }

/* WHO WE SERVE: distinct professional blue icons, including a visible Growth circle. */
#page-home .serve-row { cursor: pointer; }
#page-home .serve-row.is-selected { background: #f7faff !important; transform: translateX(5px) !important; }
#page-home .serve-row-ico {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  background: #fff !important;
  border: 1px solid #c8d8e8 !important;
  box-shadow: 0 7px 18px rgba(20,42,70,.08) !important;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
#page-home .serve-row-ico svg { stroke: var(--chase-blue) !important; }
#page-home .serve-row:hover .serve-row-ico,
#page-home .serve-row.is-selected .serve-row-ico {
  background: var(--chase-blue-light) !important;
  border-color: #9dbfe1 !important;
  transform: scale(1.07) !important;
  box-shadow: 0 10px 24px rgba(1,92,185,.14) !important;
}
#page-home .serve-row:hover .serve-row-ico svg,
#page-home .serve-row.is-selected .serve-row-ico svg { stroke: var(--chase-blue) !important; }
#page-home .serve-row h3 { transition: color .25s ease, transform .25s ease; }
#page-home .serve-row:hover h3,
#page-home .serve-row.is-selected h3 { color: var(--chase-blue) !important; transform: translateX(2px); }
#page-home .serve-row-ico.serve-growth-logo {
  position: relative !important;
  background: #fff !important;
  border: 1px solid #c8d8e8 !important;
  border-radius: 50% !important;
  overflow: visible !important;
}
#page-home .serve-row-ico.serve-growth-logo::before {
  content: "" !important;
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  background: url("../assets/growth-icon-blue.png") center/contain no-repeat !important;
}
#page-home .serve-row:hover .serve-row-ico.serve-growth-logo::before,
#page-home .serve-row.is-selected .serve-row-ico.serve-growth-logo::before { transform: scale(1.08); }

/* HOW IT WORKS: all orange/peach interaction accents become Chase blue. */
#page-home #how-it-works .how-works-head .eyebrow { color: var(--chase-blue) !important; }
#page-home #how-it-works .journey-progress-line { background: #d8e0ea !important; }
#page-home #how-it-works .journey-progress-fill { background: var(--chase-blue) !important; box-shadow: 0 0 12px rgba(1,92,185,.22) !important; }
#page-home #how-it-works .journey-progress-fill::after { background: var(--chase-blue) !important; box-shadow: 0 0 0 5px rgba(1,92,185,.10), 0 0 18px rgba(1,92,185,.28) !important; }
#page-home #how-it-works .journey-node.is-active,
#page-home #how-it-works .journey-node:hover { color: var(--chase-blue) !important; }
#page-home #how-it-works .journey-panel:hover,
#page-home #how-it-works .journey-panel.is-active { background: #f7faff !important; border-bottom-color: #c9dcf0 !important; }
#page-home #how-it-works .journey-panel:hover h3,
#page-home #how-it-works .journey-panel.is-active h3 { color: var(--chase-blue) !important; }
#page-home #how-it-works .journey-panel-ico { border-color: #bfd2e7 !important; background: #fff !important; }
#page-home #how-it-works .journey-panel-ico svg { stroke: var(--chase-blue) !important; }
#page-home #how-it-works .journey-panel:hover .journey-panel-ico,
#page-home #how-it-works .journey-panel.is-active .journey-panel-ico { background: var(--chase-blue-light) !important; border-color: #9dbfe1 !important; transform: scale(1.06); }

/* WHY TRUSTLINE: blue rule and blue icon circles, with a clean active state. */
#page-home .sec-rule-gold { background: var(--chase-blue) !important; }
#page-home .why-seq-num { border-color: #9dbfe1 !important; color: var(--chase-blue) !important; }
#page-home .why-seq-item:hover .why-seq-num,
#page-home .why-seq-item.is-selected .why-seq-num { background: var(--chase-blue) !important; color: #fff !important; box-shadow: 0 0 0 4px var(--chase-blue-light) !important; }
#page-home .why-seq-item:hover .why-seq-txt h3,
#page-home .why-seq-item.is-selected .why-seq-txt h3 { color: var(--chase-blue) !important; }

/* INSIGHTS: Funding — Featured uses the same blue accent as the site. */
#page-home .insight-featured-tag { color: var(--chase-blue) !important; }
#page-home .insight-list-item:hover { border-left-color: var(--chase-blue) !important; }
#page-home .insight-list-item:hover h4 { color: var(--chase-blue) !important; }

/* CONTACT: align left heading with the top of the form; preserve all office locations. */
#page-home .minimal-contact-grid { align-items: start !important; }
#page-home .minimal-contact-copy { padding-top: 0 !important; }

/* Remove peach from homepage decorative rules/statuses that remain in older CSS. */
#page-home .editorial-item-bullet,
#page-home .solution-node-ico,
#page-home .why-seq-num,
#page-home .insight-featured-tag { --peach: var(--chase-blue); }

/* Preserve the finalized white hero composition shown in the latest review screenshot. */
#page-home .hero,
#page-home .hero.hero-minimal {
  background: #fff !important;
  color: var(--chase-text) !important;
}
#page-home .hero .hero-badge {
  color: var(--chase-blue) !important;
  background: #fff !important;
  border-color: #9dbfe1 !important;
}
#page-home .hero .hero-headline { color: var(--chase-text) !important; }
#page-home .hero .hero-headline em { color: var(--chase-muted) !important; }
#page-home .hero .hero-sub { color: var(--chase-muted) !important; }
#page-home .hero .hero-service-line { color: #6b7584 !important; }
#page-home .hero .btn-primary {
  background: var(--chase-blue) !important;
  color: #fff !important;
  box-shadow: 0 5px 16px rgba(1,92,185,.16) !important;
}
#page-home .hero .btn-primary:hover { background: var(--chase-blue-dark) !important; }
#page-home .hero .btn-outline-wt {
  color: var(--chase-text) !important;
  border-color: #9aa7b7 !important;
  background: #fff !important;
}
#page-home .hero .btn-outline-wt:hover {
  color: var(--chase-blue) !important;
  border-color: var(--chase-blue) !important;
  background: var(--chase-blue-light) !important;
}

/* ================================================================
   FINAL FIRST-PAGE CORRECTION — WHITE HEADER + FINANCIAL GREEN ACCENTS
   Keep layout, typography and all other page styling unchanged.
   ================================================================ */
#page-home {
  --financial-green: #16a765;
  --financial-green-dark: #11834f;
  --financial-green-soft: #8fd9b5;
}

/* Header / navigation: restore the clean white Chase-style header. */
.util-bar,
#page-home ~ * .util-bar {
  background: #fff !important;
  color: var(--chase-muted) !important;
}
nav,
#page-home nav {
  background: #fff !important;
  border-bottom: 1px solid var(--chase-border) !important;
}
.nav-links > li > a {
  color: var(--chase-text) !important;
}
.nav-links > li > a:hover,
.nav-links > li > a:focus,
.nav-links > li > a.nav-active {
  color: var(--chase-blue) !important;
  background: var(--chase-blue-light) !important;
}
.nav-cta-btn,
.nav-cta-btn:hover,
.nav-cta-btn:focus {
  background: var(--chase-blue) !important;
  color: #fff !important;
}

/* Snapshot: green means positive / active / healthy financial movement. */
#page-home .hero-dash-row-delta.up {
  color: var(--financial-green) !important;
  font-weight: 600;
}

#page-home .hero-dash-fac-status i {
  background: var(--financial-green) !important;
}

/* Keep the review status neutral/blue — no orange. */
#page-home .hero-dash-fac-status.pending i {
  background: var(--chase-blue) !important;
}

/* Capital Structure: blue debt + professional green equity segment. */
#page-home .hero-dash-cap-debt {
  background: var(--chase-blue) !important;
}
#page-home .hero-dash-cap-equity {
  background: var(--financial-green) !important;
}
#page-home .hero-dash-cap-legend i.hero-dash-cap-equity {
  background: var(--financial-green) !important;
}

/* Subtle green shimmer on the equity portion only. */
#page-home .hero-dash-cap-equity::after {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,.28) 50%,
    transparent 100%
  ) !important;
}

/* ================================================================
   FINAL HERO POLISH — LIGHT CHASE TINT + WHITE DEBT SEGMENT
   Keep the rest of the website unchanged.
   ================================================================ */
#page-home .hero,
#page-home .hero.hero-minimal {
  /* Subtle background tint for the hero — not a full Chase-blue field. */
  background: #f6f9fd !important;
  color: var(--chase-text) !important;
  padding-top: 58px !important;
  padding-bottom: 72px !important;
}

#page-home .hero-in-minimal {
  align-items: start !important;
}

#page-home .hero-copy-minimal {
  padding-top: 0 !important;
  transform: translateY(-8px);
}

#page-home .hero-dash {
  transform: translateY(-10px);
}

/* Capital structure: Debt is intentionally white; Equity is financial green. */
#page-home .hero-dash-cap-debt {
  background: #ffffff !important;
}
#page-home .hero-dash-cap-equity {
  background: var(--financial-green) !important;
}
#page-home .hero-dash-cap-legend i.hero-dash-cap-debt {
  background: #ffffff !important;
  border: 1px solid rgba(255,255,255,.45) !important;
}
#page-home .hero-dash-cap-legend i.hero-dash-cap-equity {
  background: var(--financial-green) !important;
}

/* STEP 1 — HEADER/NAV BLUE BACKGROUND ONLY */
nav {
  background: var(--chase-blue) !important;
  border-bottom-color: var(--chase-blue) !important;
}
.logo-name,
.logo-tagline,
.nav-links > li > a:not(.nav-cta-btn) {
  color: #ffffff !important;
}
.nav-links > li > a:hover,
.nav-links > li > a:focus,
.nav-links > li > a.nav-active {
  color: #ffffff !important;
  background: rgba(255,255,255,0.14) !important;
}
.nav-cta-btn,
.nav-cta-btn:hover,
.nav-cta-btn:focus {
  background: #ffffff !important;
  color: var(--chase-blue) !important;
}


/* ── FINAL USER-SPECIFIC POLISH: exact logo, challenge selection, concierge ── */
.brand-mark-img {
  filter: none !important;
  opacity: 1 !important;
}

#challenge .editorial-item {
  cursor: pointer;
  border-radius: 8px;
  padding: 14px 14px 22px;
  margin: -14px -14px 0;
  transition: background-color .24s ease, box-shadow .24s ease, transform .24s ease;
}
#challenge .editorial-item.is-active {
  background: rgba(0, 92, 185, .055);
  box-shadow: inset 3px 0 0 var(--chase-blue);
  transform: translateX(2px);
}
#challenge .editorial-item.is-active .editorial-item-bullet {
  background: var(--chase-blue);
  border-color: var(--chase-blue);
  box-shadow: 0 0 0 5px rgba(0, 92, 185, .10);
}
#challenge .editorial-item.is-active .editorial-item-txt h4 {
  color: var(--chase-blue);
}
#challenge .editorial-item:focus-visible {
  outline: 2px solid rgba(0, 92, 185, .35);
  outline-offset: 3px;
}

.concierge-trigger {
  background: #20252b !important;
  background-image: none !important;
  border-color: #59616b !important;
  color: #fff !important;
}
.concierge-trigger-status {
  border-color: #20252b !important;
}


/* ================================================================
   TRUSTLINE FINAL BRAND CONSISTENCY PASS
   User-requested: preserve the supplied logo exactly, remove the
   unintended green brand styling, keep the existing layout/content,
   and use the existing Trustline/Chase-style blue as the main accent.
   ================================================================ */

/* --- Brand tokens: blue / white / charcoal / grey --- */
:root {
  --cobalt: #015cb9 !important;
  --cobalt-dk: #004b99 !important;
  --cobalt-lt: #eaf3ff !important;
  --cobalt-mid: #9bbce0 !important;
  --accent-text: #015cb9 !important;

  /* Replace legacy green-as-brand usage with the same blue system. */
  --green: #015cb9 !important;
  --green-dk: #004b99 !important;
  --green-lt: #eaf3ff !important;

  /* Replace legacy orange/peach brand accents with restrained blue. */
  --gold: #015cb9 !important;
  --gold-dk: #004b99 !important;
  --gold-lt: #eaf3ff !important;
  --peach: #015cb9 !important;
  --peach-light: #9bbce0 !important;

  --navy: #0d2440 !important;
  --navy-mid: #12385f !important;
}

/* Homepage must use the same light/blue system instead of the old
   forest-green token override. */
#page-home {
  --ink: #15171b !important;
  --white: #ffffff !important;
  --surf: #ffffff !important;
  --surf2: #f5f6f8 !important;
  --border: #d8dee8 !important;
  --muted: #536071 !important;
  --muted-lt: #6b7584 !important;
  --cobalt: #015cb9 !important;
  --cobalt-dk: #004b99 !important;
  --cobalt-lt: #eaf3ff !important;
  --cobalt-mid: #9bbce0 !important;
  --accent-text: #015cb9 !important;
  --green-lt: #eaf3ff !important;
  background: #ffffff !important;
}

/* Keep the hero clean and light, as in the current approved layout. */
#page-home .hero,
#page-home .hero.hero-minimal {
  background: #ffffff !important;
  color: #15171b !important;
}

/* Main homepage sections stay white/light; no green section bands. */
#page-home #trust-strip,
#page-home #core-services,
#page-home #challenge,
#page-home #solution,
#page-home #tools,
#page-home #case-study,
#page-home #experience,
#page-home #who-we-serve,
#page-home #leadership,
#page-home #how-it-works,
#page-home #why-trustline,
#page-home #insights,
#page-home #faq,
#page-home #home-cta {
  background: #ffffff !important;
  background-image: none !important;
  color: #15171b !important;
}

/* --- Exact supplied logo: NEVER recolor/filter it --- */
.brand-mark-img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  color: initial !important;
  background: transparent !important;
}

/* Explicitly retain the original logo asset used in the ZIP. */
.logo-area .brand-mark-img {
  content: url("../assets/trustline-header-logo-transparent-exact.png") !important;
}

/* --- Remove unintended green/orange from contact/advisory accents --- */
.full-contact .rule,
.full-contact .eyebrow,
.full-contact .ctc-row-txt a,
.ctc-ico svg {
  color: #015cb9 !important;
  stroke: #015cb9 !important;
}
.full-contact .ctc-ico {
  background: #eaf3ff !important;
}
.full-contact h2 em {
  color: #015cb9 !important;
}

/* Contact form primary action follows the same blue system. */
.full-form button[type="submit"],
.full-form .btn-primary,
.contact-page button[type="submit"] {
  background: #015cb9 !important;
  border-color: #015cb9 !important;
  color: #ffffff !important;
}
.full-form button[type="submit"]:hover,
.full-form .btn-primary:hover,
.contact-page button[type="submit"]:hover {
  background: #004b99 !important;
}

/* --- Services navigation: no green on hover/click/open --- */
.nav-links > li > a:hover,
.nav-links > li > a:focus,
.nav-links > li > a.nav-active,
#nav-services[aria-expanded="true"] {
  color: #015cb9 !important;
  background: #eaf3ff !important;
}
.nav-service-card:hover,
.nav-service-card:focus {
  background: #eaf3ff !important;
  border-color: #9bbce0 !important;
  color: #015cb9 !important;
}
.nav-service-copy strong {
  color: #15171b !important;
}
.nav-service-card:hover .nav-service-copy strong,
.nav-service-card:focus .nav-service-copy strong {
  color: #015cb9 !important;
}
.nav-service-ico {
  background: #f5f6f8 !important;
}
.nav-service-ico svg {
  stroke: #015cb9 !important;
}

/* --- TC / Trustline Concierge floating control --- */
.concierge-trigger {
  background: #20252b !important;
  background-image: none !important;
  border-color: #59616b !important;
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(12, 30, 63, 0.18) !important;
}
.concierge-trigger:hover,
.concierge-trigger:focus-visible {
  background: #15191e !important;
  border-color: #9aa7b7 !important;
}
.concierge-trigger-status {
  background: #015cb9 !important;
  border-color: #20252b !important;
}
.concierge-trigger::before {
  border-color: rgba(1, 92, 185, 0.45) !important;
}
.concierge-panel {
  background: #0d2440 !important;
  background-image: linear-gradient(165deg, #12385f 0%, #0d2440 100%) !important;
  border-color: rgba(155, 188, 224, 0.35) !important;
}
.concierge-head-title::before {
  background: #015cb9 !important;
}
.concierge-reset:hover {
  color: #9bbce0 !important;
}
.concierge-msg-bot {
  border-left-color: #015cb9 !important;
}

/* --- Challenge section: clickable, animated, blue active state --- */
#challenge .editorial-item {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  padding: 14px 14px 22px;
  margin: -14px -14px 0;
  transition:
    background-color .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    transform .28s ease;
}
#challenge .editorial-item:hover {
  background: rgba(1, 92, 185, 0.025);
}
#challenge .editorial-item.is-active {
  background: #eaf3ff !important;
  box-shadow: inset 3px 0 0 #015cb9 !important;
  transform: translateX(3px);
}
#challenge .editorial-item.is-active .editorial-item-bullet {
  background: #015cb9 !important;
  border-color: #015cb9 !important;
  box-shadow: 0 0 0 5px rgba(1, 92, 185, 0.10) !important;
}
#challenge .editorial-item.is-active .editorial-item-txt h4 {
  color: #015cb9 !important;
}
#challenge .editorial-item:focus-visible {
  outline: 2px solid rgba(1, 92, 185, .38);
  outline-offset: 3px;
}

/* Subtle scroll-in animation. */
#challenge .editorial-item.challenge-reveal {
  opacity: 0;
  transform: translateY(18px);
}
#challenge .editorial-item.challenge-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .55s ease,
    transform .55s ease,
    background-color .28s ease,
    box-shadow .28s ease;
}
#challenge .editorial-lead-col.challenge-reveal-lead {
  opacity: 0;
  transform: translateY(16px);
}
#challenge .editorial-lead-col.challenge-reveal-lead.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

/* --- Any remaining semantic "green" status can stay meaningful, but
   all brand-level green/orange styling is now blue. --- */
#page-home .hero-dash-row-delta.up {
  color: #015cb9 !important;
}
#page-home .hero-dash-fac-status i {
  background: #015cb9 !important;
}
#page-home .hero-dash-fac-status.pending i {
  background: #015cb9 !important;
}
#page-home .hero-dash-cap-equity {
  background: #015cb9 !important;
}
#page-home .hero-dash-cap-legend i.hero-dash-cap-equity {
  background: #015cb9 !important;
}

/* Do not tint/recolor WhatsApp's own brand icon/button. */


/* Accessibility: respect reduced motion. */
@media (prefers-reduced-motion: reduce) {
  #challenge .editorial-item.challenge-reveal,
  #challenge .editorial-lead-col.challenge-reveal-lead {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ================================================================
   TRUSTLINE BRAND POLISH — ABOUT PAGE + EXACT COMPANY LOGO
   Keep original layout/content; only correct requested colors/assets.
   ================================================================ */

/* Exact supplied company logo: no filters, tinting or recoloring. */
.brand-mark-img-exact {
  width: 168px !important;
  height: 70px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
  filter: none !important;
  opacity: 1 !important;
}
.logo-area .brand-mark-img-exact + .logo-wordmark { display: none !important; }

nav .nav-wrap {
  min-height: 76px;
}
@media (max-width: 1024px) {
  .brand-mark-img-exact {
    width: 150px !important;
    height: 64px !important;
  }
}
@media (max-width: 640px) {
  .brand-mark-img-exact {
    width: 132px !important;
    height: 58px !important;
  }
}

/* About hero: use the same clean white/light-blue financial theme. */
#page-about .about-page-hero {
  background: #f5f8fc !important;
  color: var(--chase-text) !important;
  border-bottom: 1px solid #dfe8f2 !important;
}
#page-about .about-page-hero .eyebrow-wt {
  color: var(--chase-blue) !important;
}
#page-about .about-page-hero .ht-wt {
  color: #17191d !important;
}
#page-about .about-page-hero .body-wt {
  color: #56657a !important;
}

/* About vision card: replace the dark navy block with the website theme. */
#page-about .about-vision-card {
  background: #f5f8fc !important;
  border: 1px solid #d8e4f0 !important;
  border-left: 4px solid var(--chase-blue) !important;
  border-radius: 12px !important;
  padding: 24px 28px !important;
  color: #17191d !important;
}
#page-about .about-vision-title {
  font-family: var(--fd);
  font-size: 17px;
  margin-bottom: 10px;
  color: #17191d !important;
}
#page-about .about-vision-copy {
  font-size: 14.5px;
  color: #56657a !important;
  line-height: 1.75;
}

/* Capital Structure: Equity must be the professional financial green. */
#page-home .hero-dash-cap-equity {
  background: var(--financial-green) !important;
}
#page-home .hero-dash-cap-legend i.hero-dash-cap-equity {
  background: var(--financial-green) !important;
}

/* Keep the equity shimmer subtle and green, without changing the segment color. */
#page-home .hero-dash-cap-equity::after {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,.22) 50%,
    transparent 100%
  ) !important;
}

/* The supplied logo is already brand-colored; never apply a site-color overlay. */
.brand-mark-img-exact,
.footer-brand-logo {
  filter: none !important;
  mix-blend-mode: normal !important;
}


/* ================================================================
   FINAL REQUESTED FIX — HEADER LOGO + SNAPSHOT ACCENTS ONLY
   Do not alter the supplied logo artwork.
   ================================================================ */

/* Header: reproduce the supplied brand lockup — original TCFO mark +
   white company wordmark. The logo artwork itself is untouched. */
nav .logo-area .brand-mark-img-header {
  content: url("../assets/trustline-header-logo-transparent-exact.png") !important;
  width: 190px !important;
  height: 61px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
nav .logo-area .header-logo-wordmark {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
  margin-left: 0 !important;
}
nav .logo-area .header-logo-wordmark .logo-name {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}
nav .logo-area .header-logo-wordmark .logo-tagline {
  color: rgba(255,255,255,.86) !important;
  font-size: 9.5px !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

/* Mobile drawer uses the same untouched logo artwork, without the desktop
   wordmark if space is constrained. */
.mob-drawer .brand-mark-img-header {
  content: url("../assets/trustline-header-logo-transparent-exact.png") !important;
  background: transparent !important;
  filter: none !important;
}

/* Snapshot only: restore meaningful financial green accents. */
#page-home .hero-dash .hero-dash-row-delta.up {
  color: #16a765 !important;
}
#page-home .hero-dash .hero-dash-fac-status i {
  background: #16a765 !important;
}
#page-home .hero-dash .hero-dash-fac-status.pending i {
  background: #16a765 !important;
}
#page-home .hero-dash .hero-dash-cap-equity {
  background: #16a765 !important;
}
#page-home .hero-dash .hero-dash-cap-legend i.hero-dash-cap-equity {
  background: #16a765 !important;
}
#page-home .hero-dash .hero-dash-cap-equity::after {
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.20) 50%, transparent 100%) !important;
}

@media (max-width: 640px) {
  nav .logo-area .brand-mark-img-header {
    width: 142px !important;
    height: 45px !important;
  }
  nav .logo-area .header-logo-wordmark {
    display: none !important;
  }
}

/* FINAL LOGO SOURCE-OF-TRUTH FIX
   Pixel-faithful crop from the supplied company logo.
   No recolor, filter, blend, tint, or CSS color transformation. */
nav .logo-area .brand-mark-img-header,
.mob-drawer .brand-mark-img-header {
  content: url("../assets/trustline-header-logo-transparent-exact.png") !important;
  width: 240px !important;
  height: 84px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* =========================================================
   CHALLENGE: CLICK + SCROLL ACTIVE STATE
   The active challenge point follows the user's scroll position.
   ========================================================= */
#challenge .editorial-item {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .30s ease, box-shadow .30s ease, transform .30s ease;
}

#challenge .editorial-item-bullet {
  transition: background-color .30s ease, border-color .30s ease,
              box-shadow .30s ease, transform .30s ease;
}

#challenge .editorial-item.is-active {
  background: rgba(0, 92, 185, 0.055) !important;
  box-shadow: inset 3px 0 0 #005cb9 !important;
  transform: translateX(3px);
}

#challenge .editorial-item.is-active .editorial-item-bullet {
  background: #005cb9 !important;
  border-color: #005cb9 !important;
  box-shadow: 0 0 0 5px rgba(0, 92, 185, 0.13), 0 0 14px rgba(0, 92, 185, 0.18) !important;
  transform: scale(1.08);
}

#challenge .editorial-item.is-active .editorial-item-txt h4 {
  color: #005cb9 !important;
  transition: color .30s ease;
}

@media (prefers-reduced-motion: reduce) {
  #challenge .editorial-item,
  #challenge .editorial-item-bullet {
    transition: none !important;
  }
}


/* ===== FINAL FOOTER THEME: BLUE BACKGROUND / NO WHITE BOX ===== */
footer {
  background: #005fba !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255,255,255,.22) !important;
}

footer .ft-grid {
  border-bottom: 1px solid rgba(255,255,255,.28) !important;
}

footer .ft-brand p,
footer .ft-col ul li a,
footer .ft-col ul li span,
footer .ft-legal-links a,
footer .ft-copy,
footer .ft-cin-inline {
  color: #dcecff !important;
}

footer .ft-col h5 {
  color: #ffffff !important;
}

footer .ft-col ul li a:hover,
footer .ft-legal-links a:hover {
  color: #ffffff !important;
}

/* Remove the white disclaimer card completely. */
footer .ft-disc {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: none !important;
  color: #dcecff !important;
}

footer .ft-disc p {
  color: #dcecff !important;
}

footer .ft-disc strong {
  color: #ffffff !important;
}

/* Keep the exact footer logo, without adding a white container behind it. */
footer .footer-brand-logo,
footer .ft-brand img {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Legal/copyright area stays on the same blue background. */
footer .ft-legal {
  background: transparent !important;
  color: #dcecff !important;
}

/* Floating TC control remains visually separated from the blue footer. */
footer ~ .tc-float,
footer ~ .floating-contact {
  box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;
}


/* ===== PREMIUM FOOTER PALETTE: NAVY + WHITE + GREEN ACCENT ===== */
footer {
  background: #0d2342 !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
}

footer .ft-grid {
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
}

footer .ft-col h5 {
  color: #ffffff !important;
  letter-spacing: .12em !important;
}

footer .ft-brand p,
footer .ft-col ul li a,
footer .ft-col ul li span,
footer .ft-legal-links a,
footer .ft-copy,
footer .ft-cin-inline {
  color: #d8e0ea !important;
}

footer .ft-col ul li a:hover,
footer .ft-legal-links a:hover {
  color: #ffffff !important;
}

/* Disclaimer: no white card — subtle navy panel with readable text */
footer .ft-disc {
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: none !important;
  color: #d8e0ea !important;
}

footer .ft-disc p {
  color: #d8e0ea !important;
}

footer .ft-disc strong {
  color: #ffffff !important;
}

/* Green is used only as a restrained brand accent. */
footer a:hover,
footer .ft-col h5::after {
  color: #2bb673 !important;
}

footer .ft-legal {
  background: transparent !important;
  color: #d8e0ea !important;
}

footer .footer-brand-logo,
footer .ft-brand img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* ===== TRUSTLINE FOOTER — USE THE SAME WEBSITE BLUE ===== */
footer {
  background: #005fba !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255,255,255,.18) !important;
}

footer .ft-grid {
  border-bottom: 1px solid rgba(255,255,255,.28) !important;
}

footer .ft-col h5 {
  color: #ffffff !important;
}

footer .ft-brand p,
footer .ft-col ul li a,
footer .ft-col ul li span,
footer .ft-legal-links a,
footer .ft-copy,
footer .ft-cin-inline,
footer .ft-legal {
  color: #eef6ff !important;
}

footer .ft-col ul li a:hover,
footer .ft-legal-links a:hover {
  color: #ffffff !important;
}

/* No white box — disclaimer blends with the same website-blue footer. */
footer .ft-disc {
  background: rgba(0, 0, 0, .08) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: none !important;
  color: #eef6ff !important;
}

footer .ft-disc p {
  color: #eef6ff !important;
}

footer .ft-disc strong {
  color: #ffffff !important;
}

footer .ft-legal {
  background: transparent !important;
}

footer .footer-brand-logo,
footer .ft-brand img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* ===== FOOTER LOGO VISIBILITY — ORIGINAL COLORS PRESERVED ===== */
footer .ft-brand {
  position: relative;
  isolation: isolate;
}
footer .ft-brand::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -18px;
  width: 330px;
  height: 155px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,.24) 0%,
    rgba(255,255,255,.11) 42%,
    rgba(255,255,255,0) 76%
  );
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}
footer .ft-brand img,
footer .footer-brand-logo {
  position: relative;
  z-index: 1;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* ===== FOOTER LOGO — ORIGINAL COLORS, NO WHITE HIGHLIGHT ===== */
footer .ft-brand {
  position: relative;
}

footer .ft-brand::before {
  display: none !important;
}

footer .ft-brand .footer-brand-logo {
  display: block;
  width: min(430px, 100%);
  height: auto;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}


/* FINAL FOOTER LOGO FIX: use the transparent, blue-background-optimized artwork.
   Do not load the old WEBP logo or apply any overlay/highlight. */
footer .footer-brand-logo {
  background: transparent !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  box-shadow: none !important;
  border: 0 !important;
  opacity: 1 !important;
}


/* ================================================================
   FINAL TYPOGRAPHY + FOOTER LOGO PATCH
   User-requested only. Do not alter the existing colour palette,
   layouts, backgrounds, spacing, headings, or component structure.
   ================================================================ */

/* Readable UI/body font everywhere. Main headings remain untouched. */
body,
button,
input,
textarea,
select,
option,
label,
p,
li,
a,
small,
figcaption,
legend {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* Preserve the existing editorial/main-heading typeface exactly. */
h1, h2, h3, h4, h5, h6,
.hero-headline,
.section-title,
.page-title,
.display-title {
  font-family: var(--fd) !important;
}

/* Keep normal copy comfortably readable without changing sizing/layout. */
p,
li,
label,
input,
textarea,
select,
option {
  letter-spacing: normal;
}

/* Footer: use the website's existing blue only. */
footer {
  background: #005fba !important;
  color: #f4f8ff !important;
}

/* Exact supplied logo artwork — no recolouring, filtering or overlays. */
footer .footer-brand-logo,
footer .ft-brand img {
  content: url("../assets/trustline-footer-logo-exact-blue.png") !important;
  display: block !important;
  width: min(430px, 100%) !important;
  height: auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* No decorative glow behind the logo. */
footer .ft-brand::before {
  display: none !important;
  content: none !important;
}

/* Footer text: high contrast on the existing blue background. */
footer .ft-brand p,
footer .ft-col ul li a,
footer .ft-col ul li span,
footer .ft-legal-links a,
footer .ft-copy,
footer .ft-cin-inline,
footer .ft-legal,
footer .ft-disc p {
  color: #f4f8ff !important;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
}

footer .ft-col h5 {
  color: #ffffff !important;
  font-family: var(--fd) !important;
}

footer .ft-disc {
  background: rgba(0,0,0,.08) !important;
  border-color: rgba(255,255,255,.24) !important;
}

footer .ft-disc strong {
  color: #ffffff !important;
}

/* ================================================================
   FINAL BLUE-THEME / READABILITY POLISH
   Requested changes: preserve existing blue brand palette, improve
   body readability, keep display headings unchanged, make service
   hero titles single-line on desktop, and make About timeline a
   blue branded panel.
   ================================================================ */
:root {
  --navy: #0d3b66;
  --navy-mid: #0b4f8a;
  --cobalt: #075fbd;
  --cobalt-dk: #064e9c;
  --cobalt-lt: #e8f2ff;
  --cobalt-mid: #8db9e8;
  --trustline-blue: #0868bd;
  --trustline-blue-dk: #0755a0;
  --accent-text: #075fba;
  --muted: #4f6077;
  --muted-lt: #64748b;
  /* readable sans-serif for normal text; display headings remain Times */
  --fb: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  --fm: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

/* Remove the old green/peach homepage palette while retaining the
   website's established blue identity. */
#page-home {
  --ink: #f5f9ff;
  --white: #0b559e;
  --surf: #084985;
  --surf2: #0a5aa7;
  --border: rgba(255,255,255,.16);
  --muted: #dceaff;
  --muted-lt: #b9d3ef;
  --accent-text: #8fc5ff;
  --gold: #8fc5ff;
  --gold-dk: #c9e2ff;
  --green-lt: rgba(255,255,255,.10);
  --gold-lt: rgba(255,255,255,.08);
  --green: #0868bd;
  background: #075fba;
}

#trust-strip,#core-services,#challenge,#solution,#tools,#case-study,
#experience,#who-we-serve,#leadership {
  background: #075fba;
}

/* Body/paragraph copy: clean, modern and highly legible everywhere. */
p, li, label, input, select, textarea, button, .body-sm, .body-md,
.body-lg, .tl-txt p, .svc-hero-in p, .prod-hdr p, .ft-brand p,
.ft-col a, .office-strip, .disc, .minimal-contact-bar a {
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

/* Keep all main display headings in their existing heading font/style. */
h1, h2, h3, h4, h5, h6, .ht, .eyebrow {
  font-family: var(--fd);
}

/* Service hero headings: requested single line on desktop. */
.svc-hero .svc-hero-in h1 {
  white-space: nowrap;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.06;
}

/* About → Company Timeline: blue branded card, readable contrast. */
#page-about .timeline {
  background: #075fba;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 14px;
  padding: 8px 24px;
  box-shadow: 0 14px 35px rgba(4,43,83,.12);
}
#page-about .tl-item {
  border-bottom-color: rgba(255,255,255,.20);
}
#page-about .tl-yr {
  color: #9dceff;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 700;
}
#page-about .tl-txt h5 {
  color: #ffffff;
  font-family: var(--fd);
}
#page-about .tl-txt p {
  color: #e3efff;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

/* Footer: keep the exact blue background and improve copy contrast. */
footer {
  background: #075fba !important;
  color: rgba(255,255,255,.92);
}
.ft-grid { border-bottom-color: rgba(255,255,255,.24); }
.ft-brand p, .ft-col h5, .ft-col ul li a, .office-strip,
footer .ft-bottom, footer .ft-bottom a {
  color: rgba(255,255,255,.92) !important;
}
.ft-col h5 { color: #ffffff !important; }
.footer-brand-logo {
  width: 520px;
  max-width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin: -8px 0 8px;
}

/* Never recolor the logo through CSS filters. */
.footer-brand-logo, .brand-mark-img, .header-logo-img {
  filter: none !important;
}

/* Footer disclaimer remains a subtle blue-on-blue panel, not white. */
footer .disc, footer .minimal-contact-bar {
  background: rgba(4,62,123,.34) !important;
  border-color: rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.90) !important;
}

@media (max-width: 900px) {
  .svc-hero .svc-hero-in h1 { white-space: normal; }
  .footer-brand-logo { width: 420px; }
  #page-about .timeline { padding: 4px 16px; }
}

/* FINAL REQUEST: keep every service hero title on one line on desktop.
   Only mobile screens may wrap naturally. */
@media (min-width: 901px) {
  .svc-hero .svc-hero-in h1 {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
}
@media (max-width: 900px) {
  .svc-hero .svc-hero-in h1 {
    white-space: normal !important;
  }
}


/* FINAL TRUSTLINE VISUAL CORRECTIONS */
footer { background:#015cb9 !important; color:#fff !important; }
footer .footer-brand-logo {
  width:min(540px,100%) !important; max-width:100% !important; height:auto !important;
  object-fit:contain !important; object-position:left center !important; margin:0 0 14px !important;
  display:block !important; filter:none !important; opacity:1 !important; mix-blend-mode:normal !important;
  background:transparent !important;
}
footer .ft-brand p, footer .ft-col h5, footer .ft-col ul li a, footer .ft-col ul li span,
footer .ft-legal-links a, footer .ft-copy, footer .ft-cin-inline { color:#fff !important; }
footer .ft-brand p { opacity:.94; }
footer .ft-disc { background:rgba(255,255,255,.035) !important; border-color:rgba(255,255,255,.22) !important; }
footer .ft-disc p { color:rgba(255,255,255,.92) !important; }
footer .ft-disc strong { color:#fff !important; }
#page-contact .ctc-row-txt h5 { color:#435b7d !important; }
#page-contact .ctc-row-txt a, #page-contact .ctc-row-txt p { color:#015cb9 !important; }
#page-contact .ctc-row-txt a { font-weight:600 !important; }
#page-contact .ctc-row-txt p { font-weight:500 !important; }
#page-contact .ctc-ico { background:#eaf3ff !important; }
#page-contact .ctc-ico svg { stroke:#015cb9 !important; }
@media (max-width:900px) { footer .footer-brand-logo { width:min(430px,100%) !important; } }

/* ================================================================
   FINAL SCREEN / CONTACT / LOGO CORRECTIONS
   ================================================================ */
html, body { overflow-x: hidden !important; }

/* Contact hero: keep the existing heading type, but make the full
   heading fit the viewport instead of being clipped horizontally. */
#page-contact .svc-hero-in h1 {
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  font-size: clamp(46px, 4.8vw, 78px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.02em !important;
}
#page-contact .svc-hero-in p {
  max-width: 900px !important;
}

/* Consultation form: use the site's blue, with white/high-contrast
   text and clean white input surfaces. */
#page-contact .full-form {
  background: #015cb9 !important;
  border-color: #015cb9 !important;
  box-shadow: 0 12px 32px rgba(1,92,185,.12) !important;
}
#page-contact .full-form h3,
#page-contact .full-form label,
#page-contact .full-form .field-label,
#page-contact .full-form legend,
#page-contact .full-form .radio-label,
#page-contact .full-form .consent,
#page-contact .full-form .consent a {
  color: #ffffff !important;
}
#page-contact .full-form input,
#page-contact .full-form textarea,
#page-contact .full-form select {
  background: #ffffff !important;
  color: #23344d !important;
  border-color: rgba(255,255,255,.72) !important;
}
#page-contact .full-form input::placeholder,
#page-contact .full-form textarea::placeholder { color: #6f819d !important; opacity: 1 !important; }
#page-contact .full-form select option { color: #23344d !important; background: #ffffff !important; }
#page-contact .full-form button[type="submit"],
#page-contact .full-form .btn-primary {
  background: #ffffff !important;
  color: #015cb9 !important;
  border-color: #ffffff !important;
}

/* Contact details: the requested blue email and office line. */
#page-contact .ctc-row-txt a,
#page-contact .ctc-row-txt p { color: #015cb9 !important; }

/* Footer: exact supplied logo artwork, transparent background only.
   No filter, tint, recolouring, glow, or white box. */
footer .footer-brand-logo {
  content: url("../assets/trustline-footer-logo-exact-blue.png") !important;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  box-shadow: none !important;
  border: 0 !important;
  width: min(620px, 100%) !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 1024px) {
  #page-contact .svc-hero-in h1 { font-size: clamp(40px, 7vw, 64px) !important; }
  #page-contact .full-form { padding: 30px 24px !important; }
}
@media (max-width: 640px) {
  #page-contact .svc-hero-in h1 { font-size: clamp(34px, 10vw, 48px) !important; }
  #page-contact .full-form { padding: 24px 18px !important; }
  footer .footer-brand-logo { width: min(460px, 100%) !important; }
}


/* ================================================================
   FINAL CONTACT + FOOTER POLISH
   ================================================================ */

/* Home / landing consultation card: approved blue treatment. */
#page-home #home-cta .minimal-form-card {
  background: #015cb9 !important;
  border: 1px solid #015cb9 !important;
  border-radius: 14px !important;
  box-shadow: 0 14px 32px rgba(1,92,185,.16) !important;
  color: #ffffff !important;
}
#page-home #home-cta .minimal-form-card label,
#page-home #home-cta .minimal-form-card .sf-consent label,
#page-home #home-cta .minimal-form-card .sf-consent a,
#page-home #home-cta .minimal-form-card .sf-note {
  color: #ffffff !important;
}
#page-home #home-cta .minimal-form-card input,
#page-home #home-cta .minimal-form-card select,
#page-home #home-cta .minimal-form-card textarea {
  background: #ffffff !important;
  color: #23344d !important;
  border: 1px solid rgba(255,255,255,.9) !important;
}
#page-home #home-cta .minimal-form-card input::placeholder,
#page-home #home-cta .minimal-form-card textarea::placeholder {
  color: #6f819d !important;
  opacity: 1 !important;
}
#page-home #home-cta .minimal-form-card .sf-submit {
  background: #ffffff !important;
  color: #015cb9 !important;
  border-color: #ffffff !important;
}
#page-home #home-cta .minimal-form-card .sf-submit:hover {
  background: #eef6ff !important;
  color: #004b99 !important;
}

/* Contact page: never let the two-column form create horizontal overflow. */
#page-contact .full-contact {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) !important;
  align-items: start !important;
}
#page-contact .full-contact > div,
#page-contact .full-form,
#page-contact .ff2,
#page-contact .ffg {
  min-width: 0 !important;
}
#page-contact .full-form {
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
#page-contact .ffg input,
#page-contact .ffg select,
#page-contact .ffg textarea {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Move grievance information lower so the left column has deliberate spacing
   and visually balances the consultation form. */
#page-contact .grievance-box {
  margin-top: 72px !important;
}

/* Exact company footer logo: transparent background, original artwork/colors. */
footer .footer-brand-logo,
footer .ft-brand img {
  content: url("../assets/trustline-footer-logo-exact-blue.png") !important;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  border: 0 !important;
  box-shadow: none !important;
  width: min(560px, 100%) !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 1024px) {
  #page-contact .grievance-box { margin-top: 44px !important; }
}
@media (max-width: 640px) {
  #page-home #home-cta .minimal-form-card { padding: 24px 18px !important; }
  #page-contact .grievance-box { margin-top: 32px !important; }
}

/* ===== USER-SPECIFIC FIX: SERVICE QUICK-ENQUIRY DISCLAIMER ONLY =====
/* Restore the blue-tinted background for the small disclaimer box below
   the service-page Quick Enquiry form. Keep the requested text black.
   No other .disc / disclaimer / footer section is changed here. */
.svc-side-form > .disc {
  background: #e6f1ff !important;
  border: 1px solid #a9c9ee !important;
  color: #000000 !important;
}

.svc-side-form > .disc strong {
  color: #000000 !important;
}

/* ===== USER-SPECIFIC FIX: BUILDER FUNDING DISCLAIMER ONLY =====
   Match the Quick Enquiry disclaimer box styling: blue-tinted background,
   black readable text, and the same compact height. */
.builder-funding-disc {
  background: #e6f1ff !important;
  border: 1px solid #a9c9ee !important;
  color: #000000 !important;
  padding: 14px 18px !important;
  line-height: 1.65 !important;
  border-radius: 10px !important;
}

/* ===== FINAL USER REQUEST: SERVICE QUICK ENQUIRY CARD ONLY =====
   Keep the existing website palette intact. The Quick Enquiry card on
   service pages must use the Trustline blue background, with readable
   contrasting text. Do not alter other sections. */
.svc-side-form > .svc-sf {
  background: #0866c6 !important;
  border: 1px solid #4f91dc !important;
  color: #ffffff !important;
}
.svc-side-form > .svc-sf h3,
.svc-side-form > .svc-sf label,
.svc-side-form > .svc-sf .sf-label,
.svc-side-form > .svc-sf .sf-consent,
.svc-side-form > .svc-sf .sf-consent a {
  color: #ffffff !important;
}
.svc-side-form > .svc-sf input,
.svc-side-form > .svc-sf select,
.svc-side-form > .svc-sf textarea {
  background: #f7fbff !important;
  color: #1b3554 !important;
  border-color: #d7e5f5 !important;
}
.svc-side-form > .svc-sf input::placeholder,
.svc-side-form > .svc-sf textarea::placeholder {
  color: #687f9c !important;
}
.svc-side-form > .disc {
  background: #e6f1ff !important;
  border: 1px solid #a9c9ee !important;
  color: #000000 !important;
}
.svc-side-form > .disc strong {
  color: #000000 !important;
}

/* ===== FINAL USER REQUEST: CONTACT BOOK-A-CONSULTATION CARD =====
   Scope is limited to the contact-page consultation form. */
#page-contact .full-form {
  background: #0866c6 !important;
  border: 1px solid #4f91dc !important;
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(8,102,198,.16) !important;
}

#page-contact .full-form h3,
#page-contact .full-form .ffg > label,
#page-contact .full-form .ffg-radio label,
#page-contact .full-form .ffg-consent label,
#page-contact .full-form .ffg-consent a {
  color: #ffffff !important;
}

#page-contact .full-form .ffg-optional {
  color: #e5f1ff !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}

#page-contact .full-form .ffg input,
#page-contact .full-form .ffg select,
#page-contact .full-form .ffg textarea {
  background: #f7fbff !important;
  color: #1b3554 !important;
  border: 1px solid #d7e5f5 !important;
}

#page-contact .full-form .ffg input::placeholder,
#page-contact .full-form .ffg textarea::placeholder {
  color: #687f9c !important;
  opacity: 1 !important;
}

#page-contact .full-form .ffg-radio input[type="radio"] {
  accent-color: #ffffff !important;
}

#page-contact .full-form .ffg-consent input[type="checkbox"] {
  accent-color: #ffffff !important;
}

#page-contact .full-form .ffg-consent a {
  text-decoration: underline !important;
  font-weight: 600 !important;
}

/* Make the final information note clearly visible instead of blending into
   the blue card. */
#page-contact .full-form .ff-note {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.30) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  padding: 10px 12px !important;
  margin: 12px 0 0 !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

#page-contact .full-form .ff-submit {
  background: #ffffff !important;
  color: #0866c6 !important;
  border: 1px solid #ffffff !important;
}

#page-contact .full-form .ff-submit:hover {
  background: #eef6ff !important;
  color: #0055a8 !important;
}

/* =========================================================
   FINAL DESKTOP HOMEPAGE WIDTH / SCALE FIX
   Scoped to the homepage so other pages remain untouched.
   ========================================================= */
@media (min-width: 1201px) {
  /* Give the desktop website the proper full-width presence. */
  #page-home .hero {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }

  #page-home .hero-in {
    width: min(1500px, 100%);
    max-width: 1500px;
    grid-template-columns: minmax(0, 1fr) 540px;
    gap: 72px;
  }

  #page-home .hero-copy-minimal {
    max-width: 760px;
  }

  #page-home .hero-sub-minimal {
    max-width: 760px;
  }

  #page-home .hero-dash {
    width: 100%;
  }

  /* Homepage trust strip follows the same desktop alignment. */
  #page-home #trust-strip .trust-strip-in,
  #page-home .trust-strip-in {
    width: min(1500px, 100%);
    max-width: 1500px;
  }

  /* Keep homepage sections visually aligned with the wider hero. */
  #page-home > .si,
  #page-home .sec > .si,
  #page-home .minimal-section > .si {
    width: min(1500px, 100%);
    max-width: 1500px;
  }

  /* Header uses the same visual grid without making the site oversized. */
  nav .nav-wrap {
    width: min(1500px, calc(100% - 7%));
    max-width: 1500px;
  }

  nav .brand-mark-img {
    width: 132px;
    height: 48px;
    max-width: 132px !important;
    max-height: 48px !important;
  }

  nav .logo-area {
    gap: 12px;
  }

  nav .logo-name {
    font-size: 16px;
  }
}

/* Prevent the desktop hero from becoming cramped at common laptop widths. */
@media (min-width: 1201px) and (max-width: 1450px) {
  #page-home .hero-in {
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 56px;
  }
}


/* ================================================================
   TRUSTLINE FINAL DESKTOP ALIGNMENT + READABILITY PATCH
   Scope: alignment, spacing and typography only.
   IMPORTANT: no colors, backgrounds, logos or content are changed.
   ================================================================ */

@media (min-width: 1200px) {
  /* Use one consistent visual grid across the desktop website. */
  .sec {
    padding-left: 4%;
    padding-right: 4%;
  }

  .si,
  .trust-strip-in,
  .svc-si {
    width: min(1440px, 100%);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip {
    padding-left: 4%;
    padding-right: 4%;
  }

  .svc-body {
    padding-left: 4%;
    padding-right: 4%;
  }

  /* Keep service-page hero copy centered in a controlled readable width. */
  .svc-hero {
    padding-left: 4%;
    padding-right: 4%;
  }

  .svc-hero-in {
    width: min(920px, 100%);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Consistent header alignment with the same page grid. */
  nav .nav-wrap,
  .util-bar {
    padding-left: 4%;
    padding-right: 4%;
  }

  nav .nav-wrap {
    width: min(1440px, 100%);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Home hero uses the same left/right grid and avoids excessive empty margins. */
  #page-home .hero {
    padding-left: 4%;
    padding-right: 4%;
  }

  #page-home .hero-in {
    width: min(1440px, 100%);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(0, 1.04fr) minmax(500px, 0.96fr);
    gap: 64px;
  }

  #page-home .hero-copy-minimal {
    max-width: 760px;
  }

  /* Contact page follows the same desktop grid instead of floating narrower. */
  #page-contact .svc-si,
  #page-contact .full-contact {
    width: min(1440px, 100%);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* -------------------- DESKTOP TYPOGRAPHY HIERARCHY -------------------- */
/* Body copy: readable at normal laptop viewing distance. */
body {
  font-size: 16px;
  line-height: 1.65;
}

p,
li {
  font-size: 17px;
  line-height: 1.72;
}

/* Main section headings must clearly dominate their supporting text. */
.ht-lg {
  font-size: clamp(36px, 3.2vw, 50px) !important;
  line-height: 1.14 !important;
}

.ht-md {
  font-size: clamp(24px, 2vw, 32px) !important;
  line-height: 1.2 !important;
}

/* Editorial headings and section leads. */
.editorial-lead {
  font-size: clamp(30px, 2.5vw, 40px) !important;
  line-height: 1.25 !important;
}

.editorial-item h4,
.why-seq-item h3,
.cmd-service h3,
.prod-item h3,
.prod-hdr h3,
.about-team-card h3,
.leader-content h3 {
  font-size: 22px !important;
  line-height: 1.3 !important;
}

.editorial-item p,
.why-seq-item p,
.cmd-service p,
.prod-item p,
.prod-hdr p,
.about-team-card p {
  font-size: 16.5px !important;
  line-height: 1.7 !important;
}

/* The Insights section specifically needs a strong heading > description hierarchy. */
.insight-featured h3 {
  font-size: clamp(26px, 2.2vw, 32px) !important;
  line-height: 1.25 !important;
  margin-bottom: 14px !important;
}

.insight-featured p {
  font-size: 17px !important;
  line-height: 1.72 !important;
}

.insight-list-item h4 {
  font-family: var(--fd) !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin-bottom: 7px !important;
}

.insight-list-item p {
  font-size: 16px !important;
  line-height: 1.68 !important;
}

.insight-list-tag,
.insight-featured-tag {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

/* FAQ and other prominent section titles. */
.faq-list {
  max-width: 980px;
}

.faq-list button,
.faq-list summary,
.faq-item h3 {
  font-size: 19px !important;
  line-height: 1.45 !important;
}

.faq-item p {
  font-size: 16px !important;
  line-height: 1.72 !important;
}

/* Trust strip / small supporting metrics. */
.trust-strip-line {
  font-size: 18px !important;
  line-height: 1.55 !important;
}

.trust-mark-label {
  font-size: 13px !important;
}

.trust-mark-num {
  font-size: 23px !important;
}

/* Service pages: make title, subtitle and service rows visibly distinct. */
.svc-hero-in h1 {
  font-size: clamp(42px, 4.2vw, 64px) !important;
  line-height: 1.08 !important;
}

.svc-hero-in p {
  font-size: 18px !important;
  line-height: 1.72 !important;
}

.prod-item-top {
  gap: 16px;
}

.prod-item {
  padding-top: 26px;
  padding-bottom: 26px;
}

.prod-item p {
  max-width: 1000px;
}

/* Forms: labels, fields and headings should be readable without zooming. */
.full-form h3,
.svc-sf h3 {
  font-size: 25px !important;
  line-height: 1.25 !important;
}

.ffg label,
.sf-label {
  font-size: 12.5px !important;
  line-height: 1.35 !important;
}

.ffg input,
.ffg select,
.ffg textarea,
.svc-sf input,
.svc-sf select,
.svc-sf textarea {
  font-size: 16px !important;
  line-height: 1.4 !important;
  min-height: 50px;
}

.ffg-radio label,
.ffg-consent label,
.sf-consent {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

/* Contact information should not look smaller than the form text. */
.ctc-row-txt h5 {
  font-size: 12px !important;
}

.ctc-row-txt a {
  font-size: 16px !important;
}

.ctc-row-txt p {
  font-size: 16px !important;
}

/* Footer/legal copy remains compact, but readable. */
footer .ft-brand p,
footer .ft-col ul li a,
footer .ft-col ul li span,
footer .ft-legal-links a,
footer .ft-copy,
footer .ft-cin-inline,
footer .ft-disc p {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Common card/body text used across pages. */
.body-lg {
  font-size: 18px !important;
  line-height: 1.75 !important;
}

.body-md {
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.eyebrow {
  font-size: 12px !important;
  line-height: 1.4 !important;
}

/* -------------------- LAPTOP WIDTH (1025–1199px) -------------------- */
@media (min-width: 1025px) and (max-width: 1199px) {
  .sec,
  .svc-body,
  .svc-hero {
    padding-left: 4%;
    padding-right: 4%;
  }

  .si,
  .svc-si,
  .trust-strip-in {
    width: 100%;
    max-width: 1100px;
  }

  nav .nav-wrap {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
  }

  #page-home .hero-in {
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 42px;
  }

  .ht-lg {
    font-size: clamp(34px, 4vw, 46px) !important;
  }

  .insight-featured h3 {
    font-size: 27px !important;
  }

  .insight-list-item h4 {
    font-size: 20px !important;
  }

  p,
  li {
    font-size: 16px;
  }
}

/* -------------------- MOBILE SAFETY --------------------
   Keep the existing mobile layout rules intact. */
@media (max-width: 1024px) {
  p,
  li {
    font-size: 16px;
    line-height: 1.7;
  }

  .ht-lg {
    font-size: clamp(32px, 7vw, 44px) !important;
  }

  .insight-list-item h4 {
    font-size: 20px !important;
  }

  .insight-list-item p,
  .insight-featured p {
    font-size: 16px !important;
  }
}


/* ================================================================
   FINAL READABILITY PASS — TEXT SIZE + ALIGNMENT ONLY
   No colors, backgrounds, logos, content or visual theme changed.
   ================================================================ */

@media (min-width: 1200px) {
  body {
    font-size: 17px;
    line-height: 1.68;
  }

  p, li {
    font-size: 18px;
    line-height: 1.72;
  }

  /* Main page headings */
  .ht-lg {
    font-size: clamp(40px, 3.6vw, 56px) !important;
    line-height: 1.12 !important;
  }

  .ht-md {
    font-size: clamp(28px, 2.2vw, 36px) !important;
    line-height: 1.2 !important;
  }

  .editorial-lead {
    font-size: clamp(34px, 2.8vw, 44px) !important;
    line-height: 1.2 !important;
  }

  /* Article / card hierarchy */
  .editorial-item h4,
  .why-seq-item h3,
  .cmd-service h3,
  .prod-item h3,
  .prod-hdr h3,
  .about-team-card h3,
  .leader-content h3 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  .editorial-item p,
  .why-seq-item p,
  .cmd-service p,
  .prod-item p,
  .prod-hdr p,
  .about-team-card p {
    font-size: 18px !important;
    line-height: 1.72 !important;
  }

  /* Insights — heading must clearly dominate description */
  .insight-featured h3 {
    font-size: clamp(30px, 2.5vw, 36px) !important;
    line-height: 1.22 !important;
    margin-bottom: 16px !important;
  }

  .insight-featured p {
    font-size: 18px !important;
    line-height: 1.72 !important;
  }

  .insight-list-item h4 {
    font-size: 23px !important;
    line-height: 1.32 !important;
    margin-bottom: 8px !important;
  }

  .insight-list-item p {
    font-size: 17px !important;
    line-height: 1.7 !important;
  }

  .insight-list-tag,
  .insight-featured-tag {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  /* Home hero supporting copy */
  #page-home .hero-copy-minimal p,
  #page-home .hero-copy p {
    font-size: 19px !important;
    line-height: 1.72 !important;
  }

  #page-home .hero-meta,
  #page-home .hero-kicker {
    font-size: 14px !important;
  }

  /* Service page */
  .svc-hero-in h1 {
    font-size: clamp(46px, 4.5vw, 68px) !important;
    line-height: 1.08 !important;
  }

  .svc-hero-in p {
    font-size: 19px !important;
    line-height: 1.72 !important;
  }

  .prod-item {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .prod-item p {
    font-size: 18px !important;
    line-height: 1.72 !important;
  }

  /* FAQ */
  .faq-list button,
  .faq-list summary,
  .faq-item h3 {
    font-size: 21px !important;
    line-height: 1.45 !important;
  }

  .faq-item p {
    font-size: 17px !important;
    line-height: 1.72 !important;
  }

  /* Trust strip */
  .trust-strip-line {
    font-size: 19px !important;
    line-height: 1.6 !important;
  }

  .trust-mark-label {
    font-size: 14px !important;
  }

  .trust-mark-num {
    font-size: 25px !important;
  }

  /* Forms */
  .full-form h3,
  .svc-sf h3 {
    font-size: 27px !important;
    line-height: 1.25 !important;
  }

  .ffg label,
  .sf-label {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .ffg input,
  .ffg select,
  .ffg textarea,
  .svc-sf input,
  .svc-sf select,
  .svc-sf textarea {
    font-size: 17px !important;
    line-height: 1.45 !important;
    min-height: 52px;
  }

  .ffg-radio label,
  .ffg-consent label,
  .sf-consent {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  /* Contact */
  .ctc-row-txt h5 {
    font-size: 13px !important;
  }

  .ctc-row-txt a,
  .ctc-row-txt p {
    font-size: 17px !important;
    line-height: 1.65 !important;
  }

  /* Footer remains smaller than body but is comfortably readable */
  footer .ft-brand p,
  footer .ft-col ul li a,
  footer .ft-col ul li span,
  footer .ft-legal-links a,
  footer .ft-copy,
  footer .ft-cin-inline,
  footer .ft-disc p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .body-lg {
    font-size: 19px !important;
    line-height: 1.75 !important;
  }

  .body-md {
    font-size: 17px !important;
    line-height: 1.72 !important;
  }

  .eyebrow {
    font-size: 13px !important;
  }
}

/* Laptop screens: readable without making the layout oversized. */
@media (min-width: 1025px) and (max-width: 1199px) {
  body {
    font-size: 16.5px;
  }

  p, li {
    font-size: 17px;
    line-height: 1.7;
  }

  .ht-lg {
    font-size: clamp(38px, 4vw, 50px) !important;
  }

  .ht-md {
    font-size: clamp(26px, 2.4vw, 34px) !important;
  }

  .insight-featured h3 {
    font-size: 30px !important;
  }

  .insight-list-item h4 {
    font-size: 21px !important;
  }

  .insight-list-item p,
  .insight-featured p {
    font-size: 17px !important;
  }
}

/* Keep mobile behavior intact while making text readable. */
@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  p, li {
    font-size: 16px;
    line-height: 1.7;
  }

  .ht-lg {
    font-size: clamp(34px, 7vw, 46px) !important;
  }

  .insight-list-item h4 {
    font-size: 20px !important;
  }

  .insight-list-item p,
  .insight-featured p {
    font-size: 16px !important;
  }
}


/* ================================================================
   FINAL PAGE ALIGNMENT PASS
   Alignment/readability only — existing colors and content preserved.
   ================================================================ */

.page {
  width: 100%;
  overflow-x: hidden;
}

.page .si,
.page .svc-si {
  box-sizing: border-box;
}

/* Keep every legal page on the same desktop grid. */
#page-privacy .svc-hero-in,
#page-terms .svc-hero-in,
#page-disclaimer .svc-hero-in {
  width: min(1280px, 100%);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

#page-privacy .svc-body,
#page-terms .svc-body,
#page-disclaimer .svc-body {
  padding-left: 5%;
  padding-right: 5%;
}

#page-privacy .svc-si,
#page-terms .svc-si,
#page-disclaimer .svc-si {
  width: min(920px, 100%);
  max-width: 920px !important;
  margin-left: auto;
  margin-right: auto;
}

#page-privacy .legal-card,
#page-terms .legal-card,
#page-disclaimer .legal-card {
  box-sizing: border-box;
  width: 100%;
  padding: 38px 42px;
}

#page-privacy .legal-card h2,
#page-terms .legal-card h2,
#page-disclaimer .legal-card h2 {
  font-size: clamp(23px, 2vw, 30px) !important;
  line-height: 1.25 !important;
  margin: 30px 0 10px !important;
}

#page-privacy .legal-card h2:first-of-type,
#page-terms .legal-card h2:first-of-type,
#page-disclaimer .legal-card h2:first-of-type {
  margin-top: 22px !important;
}

#page-privacy .legal-card p,
#page-terms .legal-card p,
#page-disclaimer .legal-card p {
  font-size: 17px !important;
  line-height: 1.78 !important;
  max-width: 820px;
}

#page-privacy .legal-date,
#page-terms .legal-date,
#page-disclaimer .legal-date {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* Same left/right rhythm at normal laptop widths. */
@media (min-width: 1025px) and (max-width: 1439px) {
  #page-privacy .svc-hero,
  #page-terms .svc-hero,
  #page-disclaimer .svc-hero,
  #page-privacy .svc-body,
  #page-terms .svc-body,
  #page-disclaimer .svc-body {
    padding-left: 4%;
    padding-right: 4%;
  }

  #page-privacy .svc-si,
  #page-terms .svc-si,
  #page-disclaimer .svc-si {
    width: min(900px, 100%);
  }

  #page-privacy .legal-card,
  #page-terms .legal-card,
  #page-disclaimer .legal-card {
    padding: 34px 36px;
  }
}

/* Mobile: preserve one clean column with no horizontal overflow. */
@media (max-width: 640px) {
  #page-privacy .svc-body,
  #page-terms .svc-body,
  #page-disclaimer .svc-body {
    padding-left: 5%;
    padding-right: 5%;
  }

  #page-privacy .legal-card,
  #page-terms .legal-card,
  #page-disclaimer .legal-card {
    padding: 26px 20px;
  }

  #page-privacy .legal-card h2,
  #page-terms .legal-card h2,
  #page-disclaimer .legal-card h2 {
    font-size: 22px !important;
  }

  #page-privacy .legal-card p,
  #page-terms .legal-card p,
  #page-disclaimer .legal-card p {
    font-size: 16px !important;
    line-height: 1.72 !important;
  }
}

/* When the site is printed/saved as PDF, each website page starts
   on its own physical page instead of two pages being combined. */
@media print {
  .page {
    display: block !important;
    width: 100%;
    page-break-after: always;
    break-after: page;
  }

  .page:last-of-type {
    page-break-after: auto;
    break-after: auto;
  }

  .page:not(#page-home) .svc-hero,
  .page:not(#page-home) .svc-body {
    break-inside: avoid;
  }
}


/* ================================================================
   FINAL DESKTOP ALIGNMENT — CONTACT CTA + HOW IT WORKS
   These two homepage sections use the exact same wide desktop grid
   as the Selected Experience section. No color/content changes.
   ================================================================ */
@media (min-width: 1200px) {
  #page-home #home-cta > .si,
  #page-home #how-it-works > .si {
    width: min(1500px, calc(100% - 10%)) !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Contact CTA: remove the narrower 1120px inner constraint so its
     left copy, form and contact strip line up with the main grid. */
  #page-home #home-cta .minimal-contact-grid,
  #page-home #home-cta .minimal-contact-bar {
    width: 100% !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #page-home #home-cta .minimal-contact-grid {
    grid-template-columns: minmax(0, 1fr) 520px !important;
    gap: 72px !important;
  }

  /* How It Works: match Selected Experience's full-width rows. */
  #page-home #how-it-works .how-works-head {
    max-width: 1200px !important;
  }

  #page-home #how-it-works .journey-progress-wrap,
  #page-home #how-it-works .journey-track {
    width: 100% !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  #page-home #home-cta > .si,
  #page-home #how-it-works > .si {
    width: calc(100% - 8%) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #page-home #home-cta .minimal-contact-grid,
  #page-home #home-cta .minimal-contact-bar,
  #page-home #how-it-works .journey-progress-wrap,
  #page-home #how-it-works .journey-track {
    width: 100% !important;
    max-width: none !important;
  }
}

/* ================================================================
   LOGO SOURCE OF TRUTH
   Keep the exact supplied Trustline logo artwork.
   ================================================================ */
footer .ft-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .footer-brand-logo,
footer .ft-brand img {
  content: url("../assets/trustline-footer-logo-exact-blue.png") !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  object-fit: contain !important;
}


/* ===== FINAL 3RD-SCREEN ALIGNMENT OVERRIDE ===== */
@media (min-width: 1200px) {
  #page-home #home-cta > .si,
  #page-home #how-it-works > .si {
    width: min(1500px, calc(100% - 10%)) !important;
    max-width: 1500px !important;
  }
  #page-home #home-cta .minimal-contact-grid,
  #page-home #home-cta .minimal-contact-bar,
  #page-home #how-it-works .journey-progress-wrap,
  #page-home #how-it-works .journey-track {
    max-width: 1500px !important;
    width: 100% !important;
  }
  #page-home #how-it-works .journey-track {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ================================================================
   TRUSTLINE — FINAL WHOLE-SITE DESKTOP ALIGNMENT & READABILITY PASS
   Requested: consistent left/right grid, equal card sizing,
   larger readable text, and click animation for the 3 case badges.
   No colours, content, logos, or branding are changed.
   ================================================================ */

@media (min-width: 1200px) {
  :root {
    --tl-grid: min(1440px, calc(100% - 8%));
  }

  /* One master content grid for the homepage. */
  #page-home > .sec > .si,
  #page-home > section > .si,
  #page-home .minimal-section > .si,
  #page-home .how-works-redesign > .si {
    width: var(--tl-grid) !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* ============================================================
     CASE STUDY — full-width, equal two-column structure
     ============================================================ */
  #page-home #case-study > .si {
    max-width: 1440px !important;
  }

  #page-home #case-study .minimal-intro {
    max-width: 760px !important;
  }

  #page-home #case-study .case-wrap {
    width: 100% !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #page-home #case-study .case-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    width: 100% !important;
  }

  #page-home #case-study .case-col-a,
  #page-home #case-study .case-col-b {
    min-width: 0 !important;
    padding: 34px 40px !important;
  }

  #page-home #case-study .case-list li {
    font-size: 17px !important;
    line-height: 1.7 !important;
  }

  #page-home #case-study .case-col-lbl {
    font-size: 13px !important;
  }

  #page-home #case-study .case-fig {
    font-size: 15px !important;
    padding: 11px 15px !important;
  }

  #page-home #case-study .case-results {
    min-height: 82px !important;
    padding: 20px 32px !important;
    gap: 12px !important;
  }

  #page-home #case-study .r-badge {
    min-height: 42px !important;
    padding: 9px 16px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    cursor: pointer !important;
-webkit-user-select: none !important;
user-select: none !important;
transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease !important;
  }

  #page-home #case-study .r-badge:hover,
  #page-home #case-study .r-badge:focus-visible {
    transform: translateY(-2px) !important;
    box-shadow: 0 7px 18px rgba(1, 92, 185, .14) !important;
    outline: none !important;
  }

  #page-home #case-study .r-badge.is-clicked {
    animation: tlBadgeClick .58s cubic-bezier(.2,.85,.25,1) !important;
  }

  @keyframes tlBadgeClick {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.08) translateY(-2px); }
    65%  { transform: scale(.98); }
    100% { transform: scale(1); }
  }

  #page-home #case-study .case-disc {
    padding: 17px 32px !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  /* ============================================================
     FINANCIAL TOOLS — both cards must be exactly the same size
     ============================================================ */
  #page-home #tools > .si {
    max-width: 1440px !important;
  }

  #page-home #tools .tools-grid {
    width: 100% !important;
    max-width: 1440px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px !important;
    align-items: stretch !important;
  }

  #page-home #tools .tool-card {
    min-width: 0 !important;
    min-height: 560px !important;
    height: 100% !important;
    padding: 36px 34px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  #page-home #tools .tool-card-head {
    margin-bottom: 12px !important;
  }

  #page-home #tools .tool-card h3 {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  #page-home #tools .tool-card > p {
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-bottom: 26px !important;
  }

  #page-home #tools .tool-fg {
    margin-bottom: 18px !important;
  }

  #page-home #tools .tool-fg label {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
  }

  #page-home #tools .tool-fg select,
  #page-home #tools .tool-fg input {
    min-height: 46px !important;
    padding: 11px 14px !important;
    font-size: 15.5px !important;
  }

  #page-home #tools .tool-slider-scale,
  #page-home #tools .tool-fg small {
    font-size: 13px !important;
  }

  #page-home #tools .tool-card .btn,
  #page-home #tools .tool-card button {
    font-size: 15px !important;
  }

  /* ============================================================
     LEADERSHIP — same master grid, larger equal profile cards
     ============================================================ */
  #page-home #leadership > .si {
    max-width: 1440px !important;
  }

  #page-home #leadership .minimal-intro {
    max-width: 900px !important;
  }

  #page-home #leadership .leadership-duo {
    width: 100% !important;
    max-width: 1440px !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-top: 44px !important;
  }

  #page-home #leadership .leader-card {
    width: 100% !important;
    min-height: 460px !important;
    grid-template-columns: 360px minmax(0, 1fr) !important;
    border-radius: 20px !important;
  }

  #page-home #leadership .leader-photo-wrap,
  #page-home #leadership .leader-photo {
    min-height: 460px !important;
    height: 100% !important;
  }

  #page-home #leadership .leader-content {
    padding: 42px 50px !important;
  }

  #page-home #leadership .leader-kicker {
    font-size: 12px !important;
  }

  #page-home #leadership .leader-content h3 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
  }

  #page-home #leadership .leader-exp {
    font-size: 14px !important;
  }

  #page-home #leadership .leader-content p {
    font-size: 17px !important;
    line-height: 1.72 !important;
    margin-bottom: 16px !important;
  }

  #page-home #leadership .leader-content .body-lead {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }

  #page-home #leadership .leader-tags span {
    font-size: 13px !important;
    padding: 7px 12px !important;
  }

  #page-home #leadership .leader-link {
    font-size: 15px !important;
  }

  /* ============================================================
     CONTACT — same grid as every other major homepage section
     ============================================================ */
  #page-home #home-cta > .si {
    width: var(--tl-grid) !important;
    max-width: 1440px !important;
  }

  #page-home #home-cta .minimal-contact-grid {
    width: 100% !important;
    max-width: 1440px !important;
    grid-template-columns: minmax(0, 1fr) minmax(540px, 580px) !important;
    gap: 80px !important;
    align-items: center !important;
  }

  #page-home #home-cta .minimal-contact-copy {
    max-width: 720px !important;
  }

  #page-home #home-cta .minimal-contact-copy .body-lg {
    font-size: 20px !important;
    line-height: 1.7 !important;
  }

  #page-home #home-cta .office-strip {
    font-size: 15px !important;
    line-height: 1.7 !important;
    gap: 10px !important;
  }

  #page-home #home-cta .minimal-form-card {
    width: 100% !important;
    min-height: 500px !important;
    padding: 34px 32px !important;
  }

  /* ============================================================
     HOW IT WORKS — full grid and readable process rows
     ============================================================ */
  #page-home #how-it-works > .si {
    width: var(--tl-grid) !important;
    max-width: 1440px !important;
  }

  #page-home #how-it-works .how-works-head {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #page-home #how-it-works .how-works-head h2 {
    font-size: clamp(42px, 3.4vw, 56px) !important;
  }

  #page-home #how-it-works .how-works-subtitle {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }

  #page-home #how-it-works .journey-progress-wrap,
  #page-home #how-it-works .journey-track {
    width: 100% !important;
    max-width: 1440px !important;
  }

  #page-home #how-it-works .journey-panel {
    min-height: 150px !important;
    padding: 32px 26px !important;
    grid-template-columns: minmax(280px, 28%) minmax(0, 1fr) 64px !important;
    gap: 40px !important;
  }

  #page-home #how-it-works .journey-panel h3 {
    font-size: 30px !important;
  }

  #page-home #how-it-works .journey-panel p {
    font-size: 17px !important;
    line-height: 1.72 !important;
  }

  /* ============================================================
     FOOTER — align footer content to the same desktop grid
     ============================================================ */
  footer {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }

  footer .ft-in {
    width: var(--tl-grid) !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  footer .ft-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(210px, .85fr) minmax(250px, .95fr) !important;
    gap: 64px !important;
  }

  footer .footer-brand-logo,
  footer .ft-brand img {
    width: min(470px, 100%) !important;
  }

  footer .ft-brand p {
    max-width: 520px !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  footer .ft-col ul li a,
  footer .ft-col ul li span {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  footer .ft-col h5 {
    font-size: 12px !important;
  }
}

/* Readable desktop body text without making display headings oversized. */
@media (min-width: 1025px) {
  body {
    font-size: 17px;
  }

  p, li {
    font-size: 17px;
    line-height: 1.72;
  }

  .body-md {
    font-size: 17px !important;
    line-height: 1.72 !important;
  }

  .body-lg {
    font-size: 19px !important;
    line-height: 1.72 !important;
  }
}

/* ================================================================
   TRUSTLINE — FINAL ALIGNMENT / READABILITY POLISH (v2)
   Scope: desktop presentation only. Keeps existing colours, branding,
   logos and content unchanged.
   ================================================================ */
@media (min-width: 1025px) {
  :root {
    --tl-grid: min(1500px, calc(100% - 8%));
  }

  /* One consistent left/right edge for the entire homepage. */
  #page-home > section > .si,
  #page-home > .sec > .si,
  #page-home .minimal-section > .si,
  #page-home .how-works-redesign > .si,
  #page-home #home-cta > .si {
    width: var(--tl-grid) !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Header/nav must start and end on the same grid as the page content. */
  nav .nav-wrap {
    width: var(--tl-grid) !important;
    max-width: 1500px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nav-links > li > a {
    font-size: 15px !important;
    padding: 9px 13px !important;
  }

  .nav-cta-btn {
    padding: 11px 18px !important;
    font-size: 15px !important;
  }

  /* ---------- Financial tools: equal cards + aligned internal controls ---------- */
  #page-home #tools .tools-grid {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch !important;
  }

  #page-home #tools .tool-card {
    height: 620px !important;
    min-height: 620px !important;
    box-sizing: border-box !important;
  }

  #page-home #tools .tool-card-head {
    min-height: 36px !important;
    align-items: center !important;
  }

  #page-home #tools .tool-card h3 {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  #page-home #tools .tool-card > p {
    font-size: 18px !important;
    line-height: 1.65 !important;
    min-height: 60px !important;
  }

  #page-home #tools .tool-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 14px !important;
  }

  #page-home #tools .tool-row .tool-fg {
    min-width: 0 !important;
  }

  #page-home #tools .tool-fg label {
    font-size: 16px !important;
    min-height: 24px !important;
    line-height: 1.35 !important;
  }

  #page-home #tools .tool-fg select,
  #page-home #tools .tool-fg input {
    min-height: 50px !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
  }

  #page-home #tools .tool-slider {
    width: 100% !important;
  }

  #page-home #tools .tool-slider-scale,
  #page-home #tools .tool-alloc-caption {
    font-size: 14px !important;
  }

  #page-home #tools .tool-btn {
    margin-top: auto !important;
    min-height: 50px !important;
    font-size: 16px !important;
  }

  /* ---------- Leadership: same grid, stronger visual hierarchy ---------- */
  #page-home #leadership .leadership-duo {
    width: 100% !important;
    max-width: none !important;
  }

  #page-home #leadership .leader-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #page-home #leadership .leader-content p,
  #page-home #leadership .leader-content .body-lead {
    font-size: 18px !important;
    line-height: 1.68 !important;
  }

  /* Tags animate into view while scrolling, and remain highlighted briefly. */
  #page-home #leadership .leader-tags span {
    font-size: 14px !important;
    padding: 8px 13px !important;
    opacity: 0;
    transform: translateY(12px) scale(.97);
    transition: opacity .45s ease, transform .45s ease, box-shadow .3s ease,
      background-color .3s ease, border-color .3s ease;
  }

  #page-home #leadership .leader-tags.tags-in-view span {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  #page-home #leadership .leader-tags.tags-in-view span:nth-child(2) { transition-delay: .06s; }
  #page-home #leadership .leader-tags.tags-in-view span:nth-child(3) { transition-delay: .12s; }
  #page-home #leadership .leader-tags.tags-in-view span:nth-child(4) { transition-delay: .18s; }
  #page-home #leadership .leader-tags.tags-in-view span:nth-child(5) { transition-delay: .24s; }

  #page-home #leadership .leader-tags.tags-in-view span.tag-scroll-highlight {
    box-shadow: 0 6px 18px rgba(1, 92, 185, .14);
    border-color: rgba(1, 92, 185, .38) !important;
    background: #f5faff !important;
  }

  /* ---------- Contact: copy starts at the top of the taller form ---------- */
  #page-home #home-cta .minimal-contact-grid {
    width: 100% !important;
    max-width: none !important;
    align-items: start !important;
  }

  #page-home #home-cta .minimal-contact-copy {
    padding-top: 0 !important;
    align-self: start !important;
  }

  #page-home #home-cta .minimal-contact-copy .ht-lg {
    margin-top: 0 !important;
  }

  #page-home #home-cta .minimal-contact-copy .body-lg {
    font-size: 20px !important;
    line-height: 1.7 !important;
  }

  #page-home #home-cta .office-strip {
    font-size: 17px !important;
    line-height: 1.75 !important;
    margin-top: 24px !important;
  }

  #page-home #home-cta .minimal-contact-bar {
    font-size: 18px !important;
    min-height: 64px !important;
    padding: 17px 24px !important;
    gap: 16px !important;
  }

  #page-home #home-cta .minimal-contact-bar a,
  #page-home #home-cta .minimal-contact-bar-label {
    font-size: 17px !important;
  }

  /* ---------- Whole-site readable text hierarchy ---------- */
  #page-home p,
  #page-home li,
  #page-home label,
  #page-home select,
  #page-home input,
  #page-home textarea,
  #page-home button {
    letter-spacing: 0 !important;
  }

  #page-home .body-md { font-size: 18px !important; line-height: 1.72 !important; }
  #page-home .body-lg { font-size: 20px !important; line-height: 1.72 !important; }
  #page-home .eyebrow { font-size: 12px !important; }

  /* Make the consultation CTA easier to notice/click. */
  #page-home .leadership-cta .btn,
  #page-home .minimal-form-card .sf-submit {
    min-height: 52px !important;
    font-size: 17px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #page-home #leadership .leader-tags span {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (min-width: 1025px) {
  #page-home #leadership .leadership-cta .btn {
    min-width: 190px !important;
    min-height: 56px !important;
    padding: 15px 30px !important;
    font-size: 17px !important;
    border-radius: 9px !important;
  }

  #page-home #home-cta .minimal-contact-copy .eyebrow {
    margin-bottom: 12px !important;
  }

  #page-home #home-cta .minimal-contact-copy .ht-lg {
    font-size: clamp(42px, 3.6vw, 58px) !important;
    line-height: 1.12 !important;
    margin-bottom: 18px !important;
  }
}

/* ================================================================
   FINAL USER REQUEST — TOOL CARD BALANCE + CTA + HERO SNAPSHOT SCALE
   Keeps existing colors, branding, content and layout style unchanged.
   ================================================================ */

@media (min-width: 1200px) {
  /* 1) Financial Tools: both cards must be exactly the same visual height.
     Keep all controls inside the card and align the primary buttons. */
  #page-home #tools .tools-grid {
    align-items: stretch !important;
  }

  #page-home #tools .tool-card {
    height: 100% !important;
    min-height: 640px !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
  }

  #page-home #tools .tool-card .tool-btn {
    margin-top: auto !important;
    min-height: 50px !important;
    font-size: 15px !important;
  }

  /* Keep hidden result areas from affecting the initial card balance. */
  #page-home #tools .tool-result:not(.is-visible) {
    display: none !important;
  }

  /* 2) Case-study CTA: make Book a Consultation visibly larger. */
  #page-home #case-study .minimal-center-cta .btn {
    min-width: 220px !important;
    min-height: 54px !important;
    padding: 14px 30px !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
  }

  /* 3) Hero Financial Structure Snapshot: enlarge the dashboard itself
     and slightly increase the information scale so it reads comfortably
     on a laptop without changing the existing design language. */
  #page-home .hero-in {
    grid-template-columns: minmax(0, 1fr) 575px !important;
    gap: 64px !important;
  }

  #page-home .hero-dash {
    width: 100% !important;
    min-height: 590px !important;
    box-sizing: border-box !important;
  }

  #page-home .hero-dash-top {
    padding: 16px 22px !important;
  }

  #page-home .hero-dash-title {
    font-size: 16px !important;
  }

  #page-home .hero-dash-tag {
    font-size: 10px !important;
    padding: 4px 11px !important;
  }

  #page-home .hero-dash-row {
    padding: 10px 0 !important;
  }

  #page-home .hero-dash-row-label {
    font-size: 13px !important;
  }

  #page-home .hero-dash-row-num {
    font-size: 17px !important;
  }

  #page-home .hero-dash-row-delta {
    font-size: 11px !important;
  }

  #page-home .hero-dash-cap {
    padding: 14px 22px 15px !important;
  }

  #page-home .hero-dash-cap-label {
    font-size: 12px !important;
  }

  #page-home .hero-dash-cap-legend {
    font-size: 12px !important;
  }

  #page-home .hero-dash-facilities {
    padding: 3px 22px 12px !important;
  }

  #page-home .hero-dash-fac-label {
    font-size: 12px !important;
    padding: 10px 0 4px !important;
  }

  #page-home .hero-dash-fac-row {
    padding: 8px 0 !important;
  }

  #page-home .hero-dash-fac-name {
    font-size: 13px !important;
  }

  #page-home .hero-dash-fac-status {
    font-size: 11px !important;
  }

  #page-home .hero-dash-chart {
    padding: 11px 22px 4px !important;
  }

  #page-home .hero-dash-chart-label {
    font-size: 12px !important;
  }

  #page-home .hero-dash-chart svg {
    height: 50px !important;
  }

  #page-home .hero-dash-foot {
    font-size: 11px !important;
    padding-bottom: 12px !important;
  }
}

/* Keep the same improvements usable on smaller desktop/laptop widths. */
@media (min-width: 1025px) and (max-width: 1199px) {
  #page-home #tools .tools-grid {
    align-items: stretch !important;
  }

  #page-home #tools .tool-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
  }

  #page-home #tools .tool-card .tool-btn {
    margin-top: auto !important;
    min-height: 48px !important;
  }

  #page-home #case-study .minimal-center-cta .btn {
    min-width: 210px !important;
    min-height: 52px !important;
    padding: 13px 28px !important;
    font-size: 15px !important;
  }
}

/* ================================================================
   TRUSTLINE — FINAL USER POLISH V4
   Requested: tighter tool sub-box balance, shift WHY sequence right,
   unified contact/footer alignment, slightly wider hero CTAs.
   ================================================================ */
@media (min-width: 1200px) {
  /* 1) Funding Requirement Planner — reduce the oversized funding
     control column slightly so the two controls feel balanced. */
  #page-home #tools .tool-row {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
    gap: 16px !important;
    align-items: start !important;
  }

  #page-home #tools .tool-row .tool-fg-slider,
  #page-home #tools .tool-row .tool-fg-slider .tool-slider {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  #page-home #tools .tool-row .tool-fg select {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2) WHY TRUSTLINE — move the six-point sequence slightly right
     while keeping the overall section on the master page grid. */
  #page-home #why-trustline .why-sequence {
    margin-left: 30px !important;
  }

  /* 3) Contact strip + footer use the exact same left/right page edge. */
  #page-home #home-cta .minimal-contact-bar {
    width: var(--tl-grid) !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  footer .ft-in {
    width: var(--tl-grid) !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* 4) Homepage hero CTA buttons — use more of the available horizontal
     space so the pair looks proportionate to the large hero copy. */
  #page-home .hero-ctas {
    gap: 12px !important;
  }

  #page-home .hero-ctas .btn {
    min-width: 190px !important;
    min-height: 56px !important;
    padding: 15px 26px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    box-sizing: border-box !important;
  }
}

/* Keep the same polish on smaller desktop widths without causing overflow. */
@media (min-width: 1025px) and (max-width: 1199px) {
  #page-home #tools .tool-row {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
    gap: 14px !important;
  }

  #page-home #why-trustline .why-sequence {
    margin-left: 18px !important;
  }

  #page-home .hero-ctas .btn {
    min-width: 180px !important;
    min-height: 54px !important;
    padding: 14px 22px !important;
    font-size: 15px !important;
  }
}

/* ================================================================
   TRUSTLINE — FINAL HEADER STICKY + HOMEPAGE GRID ALIGNMENT
   User request:
   1) Keep Home / Services / About Us / Book Consultation visible
      while the page is scrolled.
   2) Make the first-page hero use the same left/right content grid
      as the rest of the desktop website.
   ================================================================ */

/* Keep the primary navigation permanently available while scrolling. */
html {
  scroll-padding-top: 72px;
}

nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 3000 !important;
  isolation: isolate;
}

nav.nav-scrolled {
  box-shadow: 0 8px 28px rgba(12, 30, 63, 0.16) !important;
}

/* Desktop: use the same master grid as the other homepage sections. */
@media (min-width: 1200px) {
  #page-home .hero {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }

  #page-home .hero-in,
  #page-home .hero-in-minimal {
    width: var(--tl-grid) !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: minmax(0, 1fr) minmax(500px, 575px) !important;
    gap: 64px !important;
    box-sizing: border-box;
  }

  #page-home .hero-copy-minimal {
    max-width: 760px !important;
  }

  #page-home .hero-dash {
    width: 100% !important;
    max-width: 575px !important;
    justify-self: end;
  }

  /* Header edges line up with the same master grid. */
  nav .nav-wrap {
    width: var(--tl-grid) !important;
    max-width: 1500px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Medium desktop / laptop: preserve the two-column hero without overflow. */
@media (min-width: 1025px) and (max-width: 1199px) {
  #page-home .hero {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }

  #page-home .hero-in,
  #page-home .hero-in-minimal {
    width: calc(100% - 8%) !important;
    max-width: none !important;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 500px) !important;
    gap: 40px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #page-home .hero-dash {
    width: 100% !important;
    max-width: 500px !important;
    justify-self: end;
  }

  nav .nav-wrap {
    width: calc(100% - 8%) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Mobile/tablet: the nav remains sticky and the hero keeps safe side gutters. */
@media (max-width: 1024px) {
  nav {
    position: sticky !important;
    top: 0 !important;
  }

  #page-home .hero {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  #page-home .hero-in,
  #page-home .hero-in-minimal {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ================================================================
   TRUSTLINE — FINAL READABILITY + HEADER FIX (v3)
   Supporting/body text is larger and more consistent site-wide.
   Display headlines are intentionally left unchanged.
   ================================================================ */
body{font-size:18px!important;line-height:1.7!important}
p,li,label,figcaption,legend,input,textarea,select,option{font-size:18px!important;line-height:1.7!important}
.body-lg{font-size:20px!important;line-height:1.72!important}
.body-md,.body-sm{font-size:18px!important;line-height:1.7!important}
.trust-strip-line,.trust-mark-label,.editorial-item p,.why-seq-item p,.cmd-service p,.prod-item p,.prod-hdr p,.about-team-card p,.leader-content p,.leader-exp,.serve-row p,.tx-type,.tx-sector,.mandate-row,.case-list li,.case-disc,.case-col-lbl,.minimal-intro,.how-works-subtitle,.journey-panel p,.insight-featured p,.insight-list-item p,.svc-hero-in p,.prod-disc,.tag,.office-strip,.disc,.ft-brand p,.ft-col ul li a,.ft-col ul li span,.ft-copy,.ft-cin-inline,.ft-legal,.ft-legal-links a{font-size:18px!important;line-height:1.7!important}
.eyebrow,.leader-kicker,.lender-proof-label,.insight-list-tag,.insight-featured-tag,.case-col-lbl,.hero-dash-tag,.hero-dash-foot,.nav-service-copy small,.prod-disc,.tag-cloud .tag{font-size:13px!important;line-height:1.45!important}
.util-bar{font-size:13.5px!important;line-height:1.45!important}
.nav-links>li>a{font-size:15.5px!important;line-height:1.3!important}
.nav-cta-btn{font-size:15.5px!important;line-height:1.3!important}
.nav-service-copy strong{font-size:14px!important;line-height:1.35!important}
.nav-service-copy small{font-size:12.2px!important;line-height:1.45!important}
.btn,button,input,select,textarea{font-size:16px!important}
.btn-lg{font-size:16px!important}

@media (min-width:1025px){
  :root{--tl-grid-final:min(1500px,calc(100% - 8%))}
  #page-home>section>.si,#page-home .sec>.si,#page-home .minimal-section>.si,#page-home .how-works-redesign>.si,#page-home #home-cta>.si,.trust-strip-in,.svc-si,.svc-body,#page-contact .full-contact,footer .ft-in{width:var(--tl-grid-final)!important;max-width:1500px!important;margin-left:auto!important;margin-right:auto!important}
  nav .nav-wrap{width:var(--tl-grid-final)!important;max-width:1500px!important;padding-left:0!important;padding-right:0!important;margin-left:auto!important;margin-right:auto!important}
  #page-home .hero-in,#page-home .hero-in-minimal{width:var(--tl-grid-final)!important;max-width:1500px!important;margin-left:auto!important;margin-right:auto!important}
}

/* ================================================================
   HEADER — guaranteed fixed navigation after the utility bar scrolls
   ================================================================ */
html{scroll-padding-top:72px!important}
nav{z-index:10000!important;width:100%}
nav.nav-fixed-on-scroll{position:fixed!important;top:0!important;left:0!important;right:0!important;width:100%!important;box-shadow:0 8px 28px rgba(12,30,63,.16)!important}
body.nav-is-fixed #main-content{padding-top:64px!important}
@media(max-width:1024px){body.nav-is-fixed #main-content{padding-top:64px!important}}
@media(max-width:640px){body{font-size:17px!important}p,li,label,figcaption,legend{font-size:17px!important;line-height:1.68!important}.body-lg{font-size:18px!important}.nav-links>li>a,.nav-cta-btn{font-size:15px!important}}



/* ================================================================
   TRUSTLINE — INNER PAGE TYPOGRAPHY + MASTER GRID FINAL PASS
   Homepage typography/layout is intentionally untouched.
   ================================================================ */
@media (min-width: 1025px) {
  #page-wc .svc-body, #page-pe .svc-body, #page-cfo .svc-body,
  #page-builder .svc-body, #page-retail .svc-body, #page-invest .svc-body,
  #page-about .svc-body { padding-left:4% !important; padding-right:4% !important; }
  #page-wc .svc-si, #page-pe .svc-si, #page-cfo .svc-si,
  #page-builder .svc-si, #page-retail .svc-si, #page-invest .svc-si,
  #page-about .svc-si {
    width:min(1500px,calc(100% - 8%)) !important; max-width:1500px !important;
    margin-left:auto !important; margin-right:auto !important;
  }
  #page-about .about-page-hero { padding-left:4% !important; padding-right:4% !important; }
  #page-about .about-page-hero > .si, #page-about .about-page-hero > .si[style] {
    width:min(1500px,calc(100% - 8%)) !important; max-width:1500px !important;
    margin-left:auto !important; margin-right:auto !important;
  }
}

/* Supporting copy = the same clean UI font used by the Home page. */
#page-wc p,#page-wc li,#page-wc label,#page-pe p,#page-pe li,#page-pe label,
#page-cfo p,#page-cfo li,#page-cfo label,#page-builder p,#page-builder li,#page-builder label,
#page-retail p,#page-retail li,#page-retail label,#page-invest p,#page-invest li,#page-invest label,
#page-about p,#page-about li,#page-about label,#page-contact p,#page-contact li,#page-contact label,
#page-privacy p,#page-privacy li,#page-privacy label,#page-terms p,#page-terms li,#page-terms label,
#page-disclaimer p,#page-disclaimer li,#page-disclaimer label {
  font-family:"Segoe UI",Arial,Helvetica,sans-serif !important;
}

/* Every routed-page heading uses the same editorial heading face as Home. */
#page-wc h1,#page-wc h2,#page-wc h3,#page-wc h4,#page-wc h5,#page-wc h6,
#page-pe h1,#page-pe h2,#page-pe h3,#page-pe h4,#page-pe h5,#page-pe h6,
#page-cfo h1,#page-cfo h2,#page-cfo h3,#page-cfo h4,#page-cfo h5,#page-cfo h6,
#page-builder h1,#page-builder h2,#page-builder h3,#page-builder h4,#page-builder h5,#page-builder h6,
#page-retail h1,#page-retail h2,#page-retail h3,#page-retail h4,#page-retail h5,#page-retail h6,
#page-invest h1,#page-invest h2,#page-invest h3,#page-invest h4,#page-invest h5,#page-invest h6,
#page-about h1,#page-about h2,#page-about h3,#page-about h4,#page-about h5,#page-about h6,
#page-contact h1,#page-contact h2,#page-contact h3,#page-contact h4,#page-contact h5,#page-contact h6,
#page-privacy h1,#page-privacy h2,#page-privacy h3,#page-privacy h4,#page-privacy h5,#page-privacy h6,
#page-terms h1,#page-terms h2,#page-terms h3,#page-terms h4,#page-terms h5,#page-terms h6,
#page-disclaimer h1,#page-disclaimer h2,#page-disclaimer h3,#page-disclaimer h4,#page-disclaimer h5,#page-disclaimer h6 {
  font-family:var(--fd) !important;
}

/* Service points: heading clearly larger than description. */
#page-wc .prod-item h3,#page-pe .prod-item h3,#page-cfo .prod-item h3,
#page-builder .prod-item h3,#page-retail .prod-item h3,#page-invest .prod-item h3,
#page-wc .prod-hdr h3,#page-pe .prod-hdr h3,#page-cfo .prod-hdr h3,
#page-builder .prod-hdr h3,#page-retail .prod-hdr h3,#page-invest .prod-hdr h3 {
  font-family:var(--fd) !important; font-size:23px !important; line-height:1.3 !important;
  font-weight:700 !important; margin-bottom:7px !important;
}
#page-wc .prod-item p,#page-pe .prod-item p,#page-cfo .prod-item p,
#page-builder .prod-item p,#page-retail .prod-item p,#page-invest .prod-item p,
#page-wc .prod-hdr p,#page-pe .prod-hdr p,#page-cfo .prod-hdr p,
#page-builder .prod-hdr p,#page-retail .prod-hdr p,#page-invest .prod-hdr p {
  font-family:"Segoe UI",Arial,Helvetica,sans-serif !important; font-size:18px !important; line-height:1.72 !important;
}

/* About timeline: every point gets a larger serif heading. */
#page-about .tl-txt h5 { font-family:var(--fd) !important; font-size:18px !important; line-height:1.35 !important; font-weight:700 !important; margin-bottom:7px !important; }
#page-about .tl-txt p { font-family:"Segoe UI",Arial,Helvetica,sans-serif !important; font-size:18px !important; line-height:1.72 !important; }
#page-about .tl-yr { font-family:"Segoe UI",Arial,Helvetica,sans-serif !important; font-size:20px !important; font-weight:600 !important; }
#page-about .body-md,#page-about .body-lead { font-family:"Segoe UI",Arial,Helvetica,sans-serif !important; font-size:18px !important; line-height:1.72 !important; }

/* Quick Enquiry / side forms: large editorial heading. */
#page-contact .full-form h3,#page-wc .svc-sf h3,#page-pe .svc-sf h3,#page-cfo .svc-sf h3,
#page-builder .svc-sf h3,#page-retail .svc-sf h3,#page-invest .svc-sf h3 {
  font-family:var(--fd) !important; font-size:28px !important; line-height:1.2 !important; font-weight:700 !important; margin-bottom:20px !important;
}
#page-contact .ffg label,#page-wc .sf-label,#page-pe .sf-label,#page-cfo .sf-label,
#page-builder .sf-label,#page-retail .sf-label,#page-invest .sf-label {
  font-family:"Segoe UI",Arial,Helvetica,sans-serif !important; font-size:14px !important; line-height:1.4 !important;
}
#page-contact .ffg input,#page-contact .ffg select,#page-contact .ffg textarea,
#page-wc .svc-sf input,#page-wc .svc-sf select,#page-wc .svc-sf textarea,
#page-pe .svc-sf input,#page-pe .svc-sf select,#page-pe .svc-sf textarea,
#page-cfo .svc-sf input,#page-cfo .svc-sf select,#page-cfo .svc-sf textarea,
#page-builder .svc-sf input,#page-builder .svc-sf select,#page-builder .svc-sf textarea,
#page-retail .svc-sf input,#page-retail .svc-sf select,#page-retail .svc-sf textarea,
#page-invest .svc-sf input,#page-invest .svc-sf select,#page-invest .svc-sf textarea {
  font-family:"Segoe UI",Arial,Helvetica,sans-serif !important; font-size:16px !important; line-height:1.45 !important;
}

/* Services dropdown: titles are headings, descriptions are supporting copy. */
.nav-service-copy strong { font-family:var(--fd) !important; font-size:17px !important; line-height:1.3 !important; font-weight:700 !important; }
.nav-service-copy small { font-family:"Segoe UI",Arial,Helvetica,sans-serif !important; font-size:13px !important; line-height:1.45 !important; }
.nav-links > li > a,.nav-cta-btn,.util-bar,.util-bar a { font-family:"Segoe UI",Arial,Helvetica,sans-serif !important; }
nav.nav-fixed-on-scroll { z-index:10000 !important; }

@media (max-width:1024px) {
  #page-about .about-page-hero > .si[style] { max-width:100% !important; }
  #page-wc .svc-body,#page-pe .svc-body,#page-cfo .svc-body,#page-builder .svc-body,#page-retail .svc-body,#page-invest .svc-body,#page-about .svc-body { padding-left:5% !important; padding-right:5% !important; }
}

/* ================================================================
   TRUSTLINE FINAL INNER-PAGE NORMALIZATION
   Home page is the visual reference. Do not modify #page-home.
   ================================================================ */

@media (min-width: 1025px) {
  :root { --tl-master-grid: min(1500px, calc(100% - 8%)); }

  /* Same left/right page edges as Home */
  #page-wc .svc-hero,
  #page-pe .svc-hero,
  #page-cfo .svc-hero,
  #page-builder .svc-hero,
  #page-retail .svc-hero,
  #page-invest .svc-hero,
  #page-about .about-page-hero {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }

  #page-wc .svc-hero-in,
  #page-pe .svc-hero-in,
  #page-cfo .svc-hero-in,
  #page-builder .svc-hero-in,
  #page-retail .svc-hero-in,
  #page-invest .svc-hero-in {
    width: var(--tl-master-grid) !important;
    max-width: 1500px !important;
    margin: 0 auto !important;
  }

  #page-wc .svc-body,
  #page-pe .svc-body,
  #page-cfo .svc-body,
  #page-builder .svc-body,
  #page-retail .svc-body,
  #page-invest .svc-body,
  #page-about .svc-body {
    padding-left: 4% !important;
    padding-right: 4% !important;
    padding-top: 76px !important;
    padding-bottom: 88px !important;
  }

  #page-wc .svc-si,
  #page-pe .svc-si,
  #page-cfo .svc-si,
  #page-builder .svc-si,
  #page-retail .svc-si,
  #page-invest .svc-si,
  #page-about .svc-si,
  #page-about .about-page-hero > .si {
    width: var(--tl-master-grid) !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Keep two-column content aligned to the same master grid */
  #page-wc .svc-2col,
  #page-pe .svc-2col,
  #page-cfo .svc-2col,
  #page-builder .svc-2col,
  #page-retail .svc-2col,
  #page-invest .svc-2col,
  #page-about .svc-2col {
    gap: 58px !important;
    align-items: start !important;
  }

  /* Inner-page section headings: same editorial family as Home */
  #page-wc .ht,
  #page-pe .ht,
  #page-cfo .ht,
  #page-builder .ht,
  #page-retail .ht,
  #page-invest .ht,
  #page-about .ht,
  #page-contact .ht,
  #page-privacy .ht,
  #page-terms .ht,
  #page-disclaimer .ht {
    font-family: var(--fd) !important;
  }

  /* Service item headings — visibly larger than all descriptions */
  #page-wc .prod-hdr h3,
  #page-pe .prod-hdr h3,
  #page-cfo .prod-hdr h3,
  #page-builder .prod-hdr h3,
  #page-retail .prod-hdr h3,
  #page-invest .prod-hdr h3 {
    font-family: var(--fd) !important;
    font-size: 24px !important;
    line-height: 1.28 !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
  }

  #page-wc .prod-hdr p,
  #page-pe .prod-hdr p,
  #page-cfo .prod-hdr p,
  #page-builder .prod-hdr p,
  #page-retail .prod-hdr p,
  #page-invest .prod-hdr p {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  #page-wc .prod-disc,
  #page-pe .prod-disc,
  #page-cfo .prod-disc,
  #page-builder .prod-disc,
  #page-retail .prod-disc,
  #page-invest .prod-disc {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  /* About page body copy */
  #page-about .body-md,
  #page-about .body-lead,
  #page-about .about-vision-copy,
  #page-about .about-company-details p {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.72 !important;
  }

  /* Timeline: headings are headings, not body text */
  #page-about .timeline {
    padding: 8px 24px !important;
  }
  #page-about .tl-item {
    grid-template-columns: 92px 1fr !important;
    gap: 26px !important;
    padding: 27px 0 !important;
  }
  #page-about .tl-yr {
    font-family: var(--fd) !important;
    font-size: 21px !important;
    font-weight: 700 !important;
  }
  #page-about .tl-txt h5 {
    font-family: var(--fd) !important;
    font-size: 21px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
  }
  #page-about .tl-txt p {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.72 !important;
  }

  /* Quick enquiry / side form heading */
  #page-wc .svc-sf h3,
  #page-pe .svc-sf h3,
  #page-cfo .svc-sf h3,
  #page-builder .svc-sf h3,
  #page-retail .svc-sf h3,
  #page-invest .svc-sf h3,
  #page-contact .full-form h3 {
    font-family: var(--fd) !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
  }

  #page-wc .svc-sf .sf-label,
  #page-pe .svc-sf .sf-label,
  #page-cfo .svc-sf .sf-label,
  #page-builder .svc-sf .sf-label,
  #page-retail .svc-sf .sf-label,
  #page-invest .svc-sf .sf-label {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
  }

  #page-wc .svc-sf input,
  #page-wc .svc-sf select,
  #page-wc .svc-sf textarea,
  #page-pe .svc-sf input,
  #page-pe .svc-sf select,
  #page-pe .svc-sf textarea,
  #page-cfo .svc-sf input,
  #page-cfo .svc-sf select,
  #page-cfo .svc-sf textarea,
  #page-builder .svc-sf input,
  #page-builder .svc-sf select,
  #page-builder .svc-sf textarea,
  #page-retail .svc-sf input,
  #page-retail .svc-sf select,
  #page-retail .svc-sf textarea,
  #page-invest .svc-sf input,
  #page-invest .svc-sf select,
  #page-invest .svc-sf textarea {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
  }

  /* Services dropdown: same heading family, clearly larger titles */
  .nav-service-copy strong {
    font-family: var(--fd) !important;
    font-size: 18px !important;
    line-height: 1.28 !important;
    font-weight: 700 !important;
  }
  .nav-service-copy small {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}

/* Make the main navigation unambiguously fixed once the utility strip has scrolled away. */
nav.nav-fixed-on-scroll {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 10000 !important;
}

/* Mobile/tablet: same readable hierarchy without changing Home headline sizes. */
@media (max-width: 1024px) {
  #page-wc .svc-body,
  #page-pe .svc-body,
  #page-cfo .svc-body,
  #page-builder .svc-body,
  #page-retail .svc-body,
  #page-invest .svc-body,
  #page-about .svc-body { padding-left: 5% !important; padding-right: 5% !important; }

  #page-wc .prod-hdr h3,
  #page-pe .prod-hdr h3,
  #page-cfo .prod-hdr h3,
  #page-builder .prod-hdr h3,
  #page-retail .prod-hdr h3,
  #page-invest .prod-hdr h3 { font-size: 21px !important; }

  #page-wc .prod-hdr p,
  #page-pe .prod-hdr p,
  #page-cfo .prod-hdr p,
  #page-builder .prod-hdr p,
  #page-retail .prod-hdr p,
  #page-invest .prod-hdr p,
  #page-about .tl-txt p { font-size: 17px !important; line-height: 1.68 !important; }

  #page-about .tl-txt h5 { font-size: 20px !important; }
}

/* ================================================================
   TRUSTLINE — INNER PAGE MASTER GRID / CENTERED HERO FINAL FIX
   Home page is the visual reference. The inner pages use the same
   outer page edges, while their hero title/CTA is centered.
   ================================================================ */
@media (min-width: 1025px) {
  :root { --tl-home-edge-grid: min(1440px, calc(100% - 8%)); }

  /* Remove the double horizontal inset that was pushing inner-page
     content inward compared with the Home page. */
  #page-wc .svc-body,
  #page-pe .svc-body,
  #page-cfo .svc-body,
  #page-builder .svc-body,
  #page-retail .svc-body,
  #page-invest .svc-body,
  #page-about .svc-body,
  #page-contact .svc-body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Same left/right content edges as the Home page. */
  #page-wc .svc-si,
  #page-pe .svc-si,
  #page-cfo .svc-si,
  #page-builder .svc-si,
  #page-retail .svc-si,
  #page-invest .svc-si,
  #page-about .svc-si,
  #page-contact .svc-si {
    width: var(--tl-home-edge-grid) !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Service/About/Contact hero uses the full Home grid but centers
     the actual heading, description and CTA group. */
  #page-wc .svc-hero,
  #page-pe .svc-hero,
  #page-cfo .svc-hero,
  #page-builder .svc-hero,
  #page-retail .svc-hero,
  #page-invest .svc-hero,
  #page-about .about-page-hero,
  #page-contact .svc-hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #page-wc .svc-hero-in,
  #page-pe .svc-hero-in,
  #page-cfo .svc-hero-in,
  #page-builder .svc-hero-in,
  #page-retail .svc-hero-in,
  #page-invest .svc-hero-in,
  #page-about .about-page-hero > .si,
  #page-contact .svc-hero-in {
    width: var(--tl-home-edge-grid) !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  #page-wc .svc-hero-in > p,
  #page-pe .svc-hero-in > p,
  #page-cfo .svc-hero-in > p,
  #page-builder .svc-hero-in > p,
  #page-retail .svc-hero-in > p,
  #page-invest .svc-hero-in > p,
  #page-about .about-page-hero > .si > p,
  #page-contact .svc-hero-in > p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #page-wc .svc-hero-in > div,
  #page-pe .svc-hero-in > div,
  #page-cfo .svc-hero-in > div,
  #page-builder .svc-hero-in > div,
  #page-retail .svc-hero-in > div,
  #page-invest .svc-hero-in > div {
    justify-content: center !important;
  }

  /* About page hero: center the label, title and lead exactly like
     the service-page hero. */
  #page-about .about-page-hero > .si {
    max-width: 1440px !important;
  }

  /* Body columns remain left/right aligned to the same outer edges;
     no extra nested inset. */
  #page-wc .svc-2col,
  #page-pe .svc-2col,
  #page-cfo .svc-2col,
  #page-builder .svc-2col,
  #page-retail .svc-2col,
  #page-invest .svc-2col,
  #page-about .svc-2col {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Keep the contact/consultation page on exactly the same grid. */
  #page-contact .full-contact {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 1024px) {
  #page-wc .svc-hero-in,
  #page-pe .svc-hero-in,
  #page-cfo .svc-hero-in,
  #page-builder .svc-hero-in,
  #page-retail .svc-hero-in,
  #page-invest .svc-hero-in,
  #page-about .about-page-hero > .si,
  #page-contact .svc-hero-in {
    text-align: center !important;
  }

  #page-wc .svc-hero-in > p,
  #page-pe .svc-hero-in > p,
  #page-cfo .svc-hero-in > p,
  #page-builder .svc-hero-in > p,
  #page-retail .svc-hero-in > p,
  #page-invest .svc-hero-in > p,
  #page-about .about-page-hero > .si > p,
  #page-contact .svc-hero-in > p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #page-wc .svc-hero-in > div,
  #page-pe .svc-hero-in > div,
  #page-cfo .svc-hero-in > div,
  #page-builder .svc-hero-in > div,
  #page-retail .svc-hero-in > div,
  #page-invest .svc-hero-in > div {
    justify-content: center !important;
  }
}

/* FINAL USER-REQUESTED CORRECTION: centered service-page hero + visible footer logo lines */
@media (min-width: 901px) {
  #page-wc .svc-hero-in,
  #page-pe .svc-hero-in,
  #page-cfo .svc-hero-in,
  #page-builder .svc-hero-in,
  #page-retail .svc-hero-in,
  #page-invest .svc-hero-in {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #page-wc .svc-hero-in > p,
  #page-pe .svc-hero-in > p,
  #page-cfo .svc-hero-in > p,
  #page-builder .svc-hero-in > p,
  #page-retail .svc-hero-in > p,
  #page-invest .svc-hero-in > p {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #page-wc .svc-hero-in > div,
  #page-pe .svc-hero-in > div,
  #page-cfo .svc-hero-in > div,
  #page-builder .svc-hero-in > div,
  #page-retail .svc-hero-in > div,
  #page-invest .svc-hero-in > div {
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }
}

footer .footer-brand-logo {
  content: url("../assets/trustline-footer-logo-exact-blue.png") !important;
  width: min(620px, 100%) !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* FINAL VISUAL FIX — service hero CTA group and footer logo contrast */
@media (min-width: 901px) {
  #page-wc .svc-hero-in > div,
  #page-pe .svc-hero-in > div,
  #page-cfo .svc-hero-in > div,
  #page-builder .svc-hero-in > div,
  #page-retail .svc-hero-in > div,
  #page-invest .svc-hero-in > div {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 12px !important;
  }

  /* The secondary CTA was effectively invisible on the white service hero.
     Give it the same blue outline treatment as the site's visual system so
     the centered two-button group is actually visible. */
  #page-wc .svc-hero-in .btn-outline-wt,
  #page-pe .svc-hero-in .btn-outline-wt,
  #page-cfo .svc-hero-in .btn-outline-wt,
  #page-builder .svc-hero-in .btn-outline-wt,
  #page-retail .svc-hero-in .btn-outline-wt,
  #page-invest .svc-hero-in .btn-outline-wt {
    color: var(--trustline-blue) !important;
    background: #fff !important;
    border: 1.5px solid rgba(10, 102, 194, .48) !important;
  }
  #page-wc .svc-hero-in .btn-outline-wt:hover,
  #page-pe .svc-hero-in .btn-outline-wt:hover,
  #page-cfo .svc-hero-in .btn-outline-wt:hover,
  #page-builder .svc-hero-in .btn-outline-wt:hover,
  #page-retail .svc-hero-in .btn-outline-wt:hover,
  #page-invest .svc-hero-in .btn-outline-wt:hover {
    color: #fff !important;
    background: var(--trustline-blue) !important;
    border-color: var(--trustline-blue) !important;
  }
}

footer .footer-brand-logo {
  content: url("../assets/trustline-footer-logo-exact-blue.png") !important;
}


/* FINAL EXACT FOOTER LOGO — user-supplied artwork */
footer .footer-brand-logo, footer .ft-brand img {
  content: url("../assets/trustline-footer-logo-exact-blue.png");
  width: min(560px, 100%) !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}


/* =========================================================
   TRUSTLINE — PROFESSIONAL TYPOGRAPHY PASS
   Final deployment override
   ========================================================= */

/* Global reading scale */
body {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

p, li, label, figcaption, legend {
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.body-md {
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.body-lg {
  font-size: 17px !important;
  line-height: 1.65 !important;
}

/* Homepage hero */
#page-home .hero-headline,
.hero-headline {
  font-size: clamp(42px, 4.25vw, 58px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
  max-width: 760px !important;
}

#page-home .hero-sub {
  font-size: 17px !important;
  line-height: 1.65 !important;
  max-width: 650px !important;
}

/* Main section headings */
#page-home .ht-lg,
#page-home .section-title,
.ht.ht-lg {
  font-size: clamp(32px, 3vw, 44px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.018em !important;
}

#page-home .editorial-lead {
  font-size: clamp(30px, 2.7vw, 40px) !important;
  line-height: 1.15 !important;
}

/* Service cards / smaller headings */
.cmd-service h3,
.tool-card h3,
.serve-row h3,
.prod-item h3,
.case-card h3 {
  font-size: 18px !important;
  line-height: 1.3 !important;
}

.cmd-service p,
.tool-card p,
.serve-row p {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

/* All service-page hero headings */
[id^="page-"] .svc-hero-in h1,
.svc-hero-in h1 {
  font-size: clamp(40px, 3.8vw, 50px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  max-width: 850px !important;
}

[id^="page-"] .svc-hero-in .body-lg,
.svc-hero-in .body-lg {
  font-size: 17px !important;
  line-height: 1.65 !important;
}

/* About page */
#page-about .about-page-hero h1,
#page-about .ht.ht-lg {
  font-size: clamp(40px, 3.8vw, 50px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

#page-about .about-page-hero .body-lg,
#page-about .body-lead,
#page-about .body-md {
  font-size: 17px !important;
  line-height: 1.65 !important;
}

/* Contact page */
#page-contact .svc-hero-in h1 {
  font-size: clamp(40px, 3.8vw, 50px) !important;
  line-height: 1.1 !important;
}

/* Navigation and buttons — restrained corporate scale */
.nav-links > li > a,
.nav-cta-btn {
  font-size: 15px !important;
}

.btn,
button,
input,
select,
textarea {
  font-size: 15px !important;
}

.btn-lg {
  font-size: 15.5px !important;
}

/* Keep small labels genuinely small */
.eyebrow,
.hero-badge,
.hero-dash-tag,
.hero-dash-foot,
.nav-service-copy small {
  font-size: 11px !important;
  line-height: 1.35 !important;
}

/* Prevent oversized headings on intermediate widths */
@media (max-width: 900px) {
  #page-home .hero-headline,
  .hero-headline {
    font-size: clamp(38px, 7vw, 50px) !important;
  }

  #page-home .ht-lg,
  #page-home .section-title,
  .ht.ht-lg {
    font-size: clamp(30px, 5vw, 40px) !important;
  }

  [id^="page-"] .svc-hero-in h1,
  .svc-hero-in h1,
  #page-about .about-page-hero h1 {
    font-size: clamp(36px, 6vw, 46px) !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  body {
    font-size: 16px !important;
  }

  p, li, label, figcaption, legend {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
  }

  #page-home .hero-headline,
  .hero-headline {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.06 !important;
  }

  #page-home .ht-lg,
  #page-home .section-title,
  .ht.ht-lg {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  [id^="page-"] .svc-hero-in h1,
  .svc-hero-in h1,
  #page-about .about-page-hero h1 {
    font-size: clamp(32px, 8vw, 40px) !important;
  }

  #page-home .hero-sub,
  [id^="page-"] .svc-hero-in .body-lg {
    font-size: 16px !important;
  }

  .cmd-service h3,
  .tool-card h3,
  .serve-row h3 {
    font-size: 17px !important;
  }
}

/* USER-REQUESTED FINAL SERVICE HERO ALIGNMENT ONLY
   No colors, fonts, sizes, backgrounds, content, or service-card styling changed. */
#page-wc .svc-hero-in,
#page-pe .svc-hero-in,
#page-cfo .svc-hero-in,
#page-builder .svc-hero-in,
#page-retail .svc-hero-in,
#page-invest .svc-hero-in {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

#page-wc .svc-hero-in h1,
#page-pe .svc-hero-in h1,
#page-cfo .svc-hero-in h1,
#page-builder .svc-hero-in h1,
#page-retail .svc-hero-in h1,
#page-invest .svc-hero-in h1 {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
