@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TOKENS ── */
:root {
  --ink:       #0A0A0A;
  --ink-80:    #1A1A1A;
  --ink-60:    #3A3A3A;
  --ink-40:    #6A6A6A;
  --ink-20:    #AAAAAA;
  --ink-10:    #E5E5E5;
  --paper:     #FAFAF8;
  --paper-dk:  #F2F2EF;
  --blue:      #0B2D6E;
  --blue-deep: #071D4A;
  --blue-mid:  #1A4BA0;
  --blue-lt:   #2B6CB0;
  --blue-pale: #EFF4FF;
  --gold:      #C9A84C;
  --gold-lt:   #F5E6C0;
  --font-disp: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Helvetica Neue, sans-serif;
  --font-lbl:  'Barlow Condensed', sans-serif;
  --max-w:     1240px;
  --radius:    0px;
}

::selection { background: var(--blue); color: var(--paper); }

/* ── BASE ── */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

/* ── LAYOUT ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; }

/* ── TYPOGRAPHY ── */
.disp-xl  { font-family: var(--font-disp); font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.05; letter-spacing: -0.02em; }
.disp-lg  { font-family: var(--font-disp); font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.08; letter-spacing: -0.02em; }
.disp-md  { font-family: var(--font-disp); font-size: clamp(1.8rem, 3vw, 2.75rem); line-height: 1.1; letter-spacing: -0.015em; }
.disp-sm  { font-family: var(--font-disp); font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.15; letter-spacing: -0.01em; }
.head-lg  { font-family: var(--font-disp); font-size: 1.5rem; line-height: 1.3; letter-spacing: -0.01em; }
.lbl      { font-family: var(--font-lbl); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.body-lg  { font-size: 1.125rem; line-height: 1.75; }
.body-md  { font-size: 1rem; line-height: 1.65; }
.body-sm  { font-size: 0.875rem; line-height: 1.6; }

/* ── COLOUR UTILITIES ── */
.c-ink     { color: var(--ink); }
.c-ink60   { color: var(--ink-60); }
.c-ink40   { color: var(--ink-40); }
.c-paper   { color: var(--paper); }
.c-blue    { color: var(--blue); }
.c-blue-lt { color: var(--blue-lt); }
.c-gold    { color: var(--gold); }
.bg-paper  { background: var(--paper); }
.bg-pdk    { background: var(--paper-dk); }
.bg-ink    { background: var(--ink); }
.bg-blue   { background: var(--blue); }
.bg-bdeep  { background: var(--blue-deep); }
.bg-bpale  { background: var(--blue-pale); }

/* ── RULE LINES ── */
.rule      { width: 3rem; height: 1px; background: var(--ink); display: inline-block; }
.rule-blue { width: 3rem; height: 1px; background: var(--blue); display: inline-block; }
.rule-gold { width: 3rem; height: 1px; background: var(--gold); display: inline-block; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.01em; transition: all 0.2s ease; cursor: pointer;
  white-space: nowrap;
}
.btn-primary   { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-blue      { background: var(--blue); color: var(--paper); border: 1px solid var(--blue); }
.btn-blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn-outline-w { background: transparent; color: var(--paper); border: 1px solid rgba(250,250,248,0.4); }
.btn-outline-w:hover { border-color: rgba(250,250,248,0.8); background: rgba(250,250,248,0.08); }
.btn-paper     { background: var(--paper); color: var(--ink); border: 1px solid var(--paper); }
.btn-paper:hover { background: rgba(250,250,248,0.9); }

/* ── SECTION LABELS ── */
.section-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.section-label span { font-family: var(--font-lbl); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-40); }
.section-label.blue span { color: var(--blue-lt); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}
.nav.scrolled {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-10);
  padding: 1rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-mark {
  width: 2rem; height: 2rem;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark span { font-family: var(--font-disp); color: var(--paper); font-weight: 600; font-size: 0.8rem; }
.nav-logo-text .name { font-family: var(--font-lbl); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink); line-height: 1; }
.nav-logo-text .sub  { font-family: var(--font-lbl); font-size: 0.65rem; color: var(--ink-40); line-height: 1; margin-top: 0.2rem; letter-spacing: 0.1em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.875rem; color: var(--ink-60);
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--blue); transition: width 0.25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-ctas { display: flex; align-items: center; gap: 0.75rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 24px; height: 1px; background: var(--ink); transition: all 0.2s; display: block; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--paper); z-index: 99; padding: 5rem 1.5rem 2rem;
  flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-body); font-size: 1.125rem; color: var(--ink-60); padding: 0.5rem 0; border-bottom: 1px solid var(--ink-10); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 6rem 0 4rem; background: var(--paper); position: relative; overflow: hidden;
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid-overlay::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  border-left: 1px solid rgba(0,0,0,0.06);
}
.hero-grid-overlay::after {
  content: ''; position: absolute;
  top: 0; right: 0; width: 33%; height: 40%;
  background: var(--blue-pale); opacity: 0.7;
}
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 7fr 5fr; gap: 3rem; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-title { margin-bottom: 1.5rem; }
.hero-title em { font-style: normal; color: var(--blue); }
.hero-sub { color: var(--ink-60); max-width: 600px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--ink-10); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hero-trust-item .lbl { color: var(--ink-40); margin-bottom: 0.25rem; }
.hero-trust-item .val { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.hero-card {
  background: var(--blue-deep); color: var(--paper);
  padding: 2.5rem; position: relative;
}
.hero-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
}
.hero-card blockquote { font-family: var(--font-disp); font-size: 1.4rem; font-style: italic; font-weight: 300; line-height: 1.5; color: rgba(250,250,248,0.9); margin-bottom: 2rem; }
.hero-card-points { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-card-point { display: flex; align-items: center; gap: 0.75rem; }
.hero-card-dot { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }
.hero-card-point span { font-size: 0.875rem; color: rgba(250,250,248,0.8); }
.hero-card-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(250,250,248,0.1); font-family: var(--font-lbl); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,250,248,0.4); }

/* ── TICKER STRIP ── */
.ticker-strip { background: var(--ink); padding: 1.25rem 0; }
.ticker-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.ticker-text { font-family: var(--font-disp); font-size: 1.2rem; font-style: italic; color: rgba(250,250,248,0.8); }
.ticker-link { font-family: var(--font-lbl); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,250,248,0.5); transition: color 0.2s; }
.ticker-link:hover { color: var(--paper); }

/* ── WHO WE HELP ── */
.who-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ink-10); }
.who-card { background: var(--paper); padding: 2rem; transition: background 0.3s; }
.who-card:hover { background: var(--blue-pale); }
.who-icon {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s; color: var(--blue);
}
.who-card:hover .who-icon { border-color: var(--blue); background: var(--blue); color: var(--paper); }
.who-card .lbl { color: var(--ink); margin-bottom: 0.5rem; display: block; }
.who-card p { font-size: 0.875rem; color: var(--ink-60); line-height: 1.6; }

/* ── SERVICES ── */
.services-list { display: flex; flex-direction: column; gap: 1px; }
.service-row {
  display: flex; align-items: flex-start; gap: 2rem;
  background: var(--paper); padding: 2rem;
  border: 1px solid var(--ink-10);
  transition: all 0.3s;
}
.service-row:hover { background: var(--blue-pale); border-color: rgba(43,108,176,0.3); }
.service-num { font-family: var(--font-disp); font-size: 3.5rem; font-weight: 300; color: var(--ink-10); line-height: 1; flex-shrink: 0; width: 4rem; transition: color 0.3s; }
.service-row:hover .service-num { color: rgba(11,45,110,0.15); }
.service-body { flex: 1; }
.service-body .lbl { color: var(--ink); margin-bottom: 0.5rem; display: block; }
.service-body p { font-size: 0.875rem; color: var(--ink-60); max-width: 540px; line-height: 1.65; }
.service-link { flex-shrink: 0; font-family: var(--font-lbl); font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-40); transition: color 0.2s; align-self: center; }
.service-row:hover .service-link { color: var(--blue); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(250,250,248,0.1); }
.why-card { padding: 2.5rem; background: var(--blue-deep); }
.why-card .contrast { font-size: 0.875rem; font-style: italic; color: rgba(250,250,248,0.45); margin-bottom: 1rem; }
.why-card .statement { font-family: var(--font-disp); font-size: 1.5rem; color: var(--paper); margin-bottom: 1.25rem; line-height: 1.3; }
.why-card .detail { font-size: 0.875rem; color: rgba(250,250,248,0.65); line-height: 1.7; }

/* ── HOW WE WORK ── */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--ink-10); }
.step-card { background: var(--paper); padding: 1.75rem; }
.step-num { font-family: var(--font-disp); font-size: 3rem; font-weight: 300; color: var(--ink-10); line-height: 1; margin-bottom: 1.25rem; }
.step-card .lbl { color: var(--ink); margin-bottom: 0.5rem; display: block; }
.step-card p { font-size: 0.8125rem; color: var(--ink-60); line-height: 1.65; }

/* ── ENGAGEMENTS ── */
.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.engage-card { padding: 2rem; border: 1px solid var(--ink-10); display: flex; flex-direction: column; }
.engage-card.featured { background: var(--blue); border-color: var(--blue); color: var(--paper); }
.engage-badge { font-family: var(--font-lbl); font-size: 0.65rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.engage-title { font-family: var(--font-lbl); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.25rem; }
.engage-card.featured .engage-title { color: var(--paper); }
.engage-subtitle { font-size: 0.8125rem; color: var(--ink-40); margin-bottom: 1.25rem; }
.engage-card.featured .engage-subtitle { color: rgba(250,250,248,0.55); }
.engage-desc { font-size: 0.875rem; line-height: 1.65; color: var(--ink-60); margin-bottom: 1.5rem; flex: 1; }
.engage-card.featured .engage-desc { color: rgba(250,250,248,0.75); }
.engage-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.engage-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8125rem; color: var(--ink-60); }
.engage-card.featured .engage-features li { color: rgba(250,250,248,0.65); }
.engage-feat-dot { width: 4px; height: 4px; background: var(--blue); flex-shrink: 0; margin-top: 0.45rem; }
.engage-card.featured .engage-feat-dot { background: var(--gold); }

/* ── FAQ ── */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--ink-10); }
.faq-q {
  width: 100%; text-align: left; padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-disp); font-size: 1.1rem; color: var(--ink);
  cursor: pointer; transition: color 0.2s; gap: 1.5rem;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0; width: 1.25rem; height: 1.25rem;
  border: 1px solid var(--ink-20);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.faq-icon.open { transform: rotate(45deg); }
.faq-a { padding-bottom: 1.25rem; font-size: 0.9375rem; color: var(--ink-60); line-height: 1.75; display: none; }
.faq-a.open { display: block; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: var(--font-lbl); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-40); }
.form-input {
  border: 1px solid var(--ink-10); background: var(--paper);
  padding: 0.75rem 1rem; font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--ink); transition: border-color 0.2s; width: 100%;
}
.form-input::placeholder { color: var(--ink-40); }
.form-input:focus { outline: none; border-color: var(--blue); }
select.form-input { appearance: none; cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-submit { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-note { font-size: 0.8125rem; color: var(--ink-40); }
.form-success { text-align: center; padding: 3rem 0; }
.form-success-icon { width: 3rem; height: 3rem; background: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.form-success-icon svg { color: var(--paper); }

/* ── CTA BANNER ── */
.cta-banner { padding: 5rem 0; text-align: center; }
.cta-banner .lbl { color: var(--blue-lt); margin-bottom: 1.5rem; display: block; }
.cta-banner.dark { background: var(--blue-deep); }
.cta-banner.dark .lbl { color: var(--blue-lt); }
.cta-banner .disp-md { margin-bottom: 1rem; }
.cta-banner.dark .disp-md { color: var(--paper); }
.cta-banner-sub { margin-bottom: 2.5rem; }
.cta-banner.dark .cta-banner-sub { color: rgba(250,250,248,0.65); }
.cta-ctas { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── ASSESSMENT SECTION ── */
.assess-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.assess-left .disp-md { margin-bottom: 1.25rem; }
.assess-left p { margin-bottom: 2rem; }
.assess-points { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.assess-point { display: flex; align-items: center; gap: 0.75rem; }
.assess-dot { width: 6px; height: 6px; background: var(--blue); flex-shrink: 0; }
.assess-note { padding: 1.5rem; background: var(--blue-pale); border: 1px solid rgba(43,108,176,0.15); }
.assess-note p { font-size: 0.875rem; color: var(--blue-deep); margin: 0; }
.assess-note a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--paper); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding: 4rem 0; }
.footer-brand p { font-size: 0.875rem; color: rgba(250,250,248,0.55); line-height: 1.7; margin: 1.5rem 0 2rem; max-width: 280px; }
.footer-col-title { font-family: var(--font-lbl); font-size: 0.67rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: rgba(250,250,248,0.55); transition: color 0.15s; }
.footer-links a:hover { color: var(--paper); }
.footer-contact-item { margin-bottom: 1rem; }
.footer-contact-item .lbl { color: rgba(250,250,248,0.35); font-size: 0.6rem; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.875rem; color: rgba(250,250,248,0.65); }
.footer-contact-item a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(250,250,248,0.08); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom span, .footer-bottom a { font-size: 0.8125rem; color: rgba(250,250,248,0.35); }
.footer-bottom a:hover { color: rgba(250,250,248,0.65); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ── SEO PAGES ── */
.page-hero { padding: 8rem 0 3.5rem; background: var(--paper); border-bottom: 1px solid var(--ink-10); }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.breadcrumb a { font-family: var(--font-lbl); font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-40); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--ink-20); font-size: 0.75rem; }
.breadcrumb span { font-family: var(--font-lbl); font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.page-hero-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 3rem; align-items: start; }
.page-sidebar-cta { background: var(--ink); color: var(--paper); padding: 2rem; }
.page-sidebar-cta .lbl { color: rgba(250,250,248,0.4); margin-bottom: 1rem; display: block; }
.page-sidebar-cta h3 { font-family: var(--font-disp); font-size: 1.5rem; color: var(--paper); margin-bottom: 1rem; }
.page-sidebar-cta p { font-size: 0.875rem; color: rgba(250,250,248,0.65); margin-bottom: 1.5rem; }
.page-sidebar-cta .btns { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-box { border: 1px solid var(--ink-10); padding: 1.5rem; }
.sidebar-box .lbl { color: var(--ink-40); margin-bottom: 1rem; display: block; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a { font-size: 0.875rem; color: var(--ink-60); display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.sidebar-links a::before { content: ''; width: 4px; height: 4px; background: var(--ink-20); flex-shrink: 0; }
.sidebar-links a:hover { color: var(--blue); }
.content-area { padding: 3.5rem 0; }
.content-layout { display: grid; grid-template-columns: 8fr 4fr; gap: 3rem; align-items: start; }
.prose h2 { font-family: var(--font-disp); font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--ink); margin: 3rem 0 1rem; }
.prose h3 { font-family: var(--font-disp); font-size: 1.35rem; color: var(--ink); margin: 2rem 0 0.75rem; }
.prose p { font-size: 0.9375rem; color: var(--ink-60); margin-bottom: 1.25rem; line-height: 1.75; }
.prose ul { list-style: none; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose ul li { font-size: 0.9375rem; color: var(--ink-60); padding-left: 1.25rem; position: relative; line-height: 1.65; }
.prose ul li::before { content: '--'; position: absolute; left: 0; color: var(--blue); font-weight: 500; }
.prose .inline-cta { background: var(--blue-pale); border: 1px solid rgba(43,108,176,0.18); padding: 2rem; margin: 2.5rem 0; }
.prose .inline-cta h3 { font-family: var(--font-disp); font-size: 1.4rem; margin-bottom: 0.75rem; margin-top: 0; }
.prose .inline-cta p { margin-bottom: 1.25rem; }
.prose .inline-cta .btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.prose .item-list { display: flex; flex-direction: column; gap: 0; margin: 1.5rem 0; }
.prose .item-list-row { padding: 1rem 0; border-bottom: 1px solid var(--ink-10); }
.prose .item-list-row:first-child { border-top: 1px solid var(--ink-10); }
.prose .item-list-row strong { font-weight: 600; color: var(--ink); display: block; margin-bottom: 0.25rem; font-size: 0.9375rem; }
.sidebar-sticky { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; }

/* ── BORDER ── */
.border-t { border-top: 1px solid var(--ink-10); }
.border-b { border-bottom: 1px solid var(--ink-10); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.in > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.in > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.stagger.in > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.stagger.in > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .engage-grid { grid-template-columns: 1fr 1fr; }
  .hero-content, .page-hero-grid, .content-layout, .assess-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .who-cards { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .engage-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 4rem 0; }
  .service-row { flex-wrap: wrap; }
  .service-link { display: none; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .who-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   UPGRADE: FLOATING CTA PANEL
══════════════════════════════════════════ */
.float-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.float-cta a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 0.9rem 1rem 0.9rem 1.25rem;
  font-family: var(--font-lbl);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
  writing-mode: horizontal-tb;
  min-width: 170px;
}
.float-cta a:nth-child(1) { background: var(--ink); color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.1); }
.float-cta a:nth-child(1):hover { background: var(--blue-deep); }
.float-cta a:nth-child(2) { background: var(--blue); color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.1); }
.float-cta a:nth-child(2):hover { background: var(--blue-deep); }
.float-cta a:nth-child(3) { background: var(--gold); color: var(--ink); }
.float-cta a:nth-child(3):hover { background: #b8943e; }
.float-cta-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile sticky bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.6rem 1rem;
  gap: 0.5rem;
}
.mobile-sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0.5rem;
  font-family: var(--font-lbl);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.mobile-sticky-bar a:nth-child(1) { background: var(--paper); color: var(--ink); }
.mobile-sticky-bar a:nth-child(2) { background: var(--blue); color: var(--paper); }
.mobile-sticky-bar a:nth-child(3) { background: var(--gold); color: var(--ink); }

/* ══════════════════════════════════════════
   UPGRADE: SOCIAL PROOF STRIP
══════════════════════════════════════════ */
.proof-strip {
  background: var(--paper-dk);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  padding: 1.25rem 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 2rem 0.5rem 0;
  border-right: 1px solid var(--ink-10);
  margin-right: 2rem;
}
.proof-group:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.proof-label {
  font-family: var(--font-lbl);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
  flex-shrink: 0;
}
.proof-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.proof-tag {
  font-family: var(--font-lbl);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(11,45,110,0.12);
}

/* ══════════════════════════════════════════
   UPGRADE: WHY COMPANIES HIRE US
══════════════════════════════════════════ */
.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-10);
}
.hire-card {
  background: var(--paper);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.25s;
  cursor: default;
}
.hire-card:hover { background: var(--blue-pale); }
.hire-num {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink-10);
  line-height: 1;
  transition: color 0.25s;
}
.hire-card:hover .hire-num { color: rgba(11,45,110,0.12); }
.hire-title {
  font-family: var(--font-lbl);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.hire-desc { font-size: 0.875rem; color: var(--ink-60); line-height: 1.65; }
.hire-arrow {
  margin-top: auto;
  font-family: var(--font-lbl);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  transition: color 0.2s;
}
.hire-card:hover .hire-arrow { color: var(--blue); }

/* ══════════════════════════════════════════
   UPGRADE: ASSESSMENT & ENGAGEMENT PAGES
══════════════════════════════════════════ */
.pricing-hero {
  padding: 8rem 0 4rem;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-10);
}
.price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1.5rem 0;
}
.price-currency {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  color: var(--ink-60);
}
.price-amount {
  font-family: var(--font-disp);
  font-size: 4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-period {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-40);
}
.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--ink-60);
  line-height: 1.5;
}
.check-icon {
  width: 18px;
  height: 18px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { color: var(--paper); }
.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-pale);
  border: 1px solid rgba(11,45,110,0.15);
  padding: 0.5rem 1rem;
  font-family: var(--font-lbl);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
}
.engagement-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.tier-card {
  border: 1px solid var(--ink-10);
  padding: 2rem;
}
.tier-card.featured {
  border-color: var(--blue);
  background: var(--blue-pale);
}
.tier-name {
  font-family: var(--font-lbl);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.tier-card.featured .tier-name { color: var(--blue); }
.tier-min {
  font-family: var(--font-disp);
  font-size: 1.75rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.tier-desc { font-size: 0.875rem; color: var(--ink-60); line-height: 1.65; }

/* ══════════════════════════════════════════
   UPGRADE: TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--ink);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-lbl);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.5);
}
.trust-dot { width: 4px; height: 4px; background: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   UPGRADE: HERO OVERRIDES
══════════════════════════════════════════ */
.hero-micro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hero-micro span {
  font-family: var(--font-lbl);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-micro span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--blue);
  display: inline-block;
}

/* ══════════════════════════════════════════
   RESPONSIVE UPGRADES
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .float-cta { display: none; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 60px; }
  .hire-grid { grid-template-columns: 1fr 1fr; }
  .engagement-tiers { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hire-grid { grid-template-columns: 1fr; }
  .proof-group { padding-right: 0; border-right: none; margin-right: 0; width: 100%; padding-bottom: 0.75rem; border-bottom: 1px solid var(--ink-10); }
  .proof-group:last-child { border-bottom: none; }
  .engagement-tiers { grid-template-columns: 1fr; }
}

/* ── IMAGES ── */
.hero-img-panel {
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
}
.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  display: block;
}
.page-img-banner {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.85);
}
.brand-img-block {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .page-img-banner { height: 200px; }
}

/* ── XRAY FLOAT PILL ── */
.xray-pill {
  position: fixed;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xray-pill-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  border: 3px solid var(--gold);
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  animation: xray-pulse 2.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.5);
  cursor: pointer;
}
.xray-pill-inner:hover {
  background: var(--blue-deep);
  animation: none;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.25);
}
.xray-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: xray-dot-blink 2.8s ease-in-out infinite;
}
.xray-pill-text {
  font-family: var(--font-lbl);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}

@keyframes xray-pulse {
  0%   { opacity: 1;    box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50%  { opacity: 0.72; box-shadow: 0 0 0 8px rgba(201,168,76,0); }
  100% { opacity: 1;    box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
@keyframes xray-dot-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ── XRAY PILL HIDE ON XRAY PAGE ── */
body.page-xray .xray-pill { display: none; }

/* ── MOBILE: pill moves to bottom-center, unrotated ── */
@media (max-width: 768px) {
  .xray-pill {
    right: auto;
    bottom: 56px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .xray-pill-inner {
    padding: 0.55rem 1.25rem;
  }
  .xray-pill-text {
    font-size: 0.65rem;
  }
}
