:root {
  --navy:       #090E27;
  --navy-mid:   rgba(0, 0, 32, 0.6);
  --navy-card:  rgba(22, 30, 58, 0.6);
  --navy-light: rgba(30, 42, 80, 0.6);
  --gold:       #B8952A;
  --gold-light: #D4AF50;
  --gold-pale:  #E8D08A;
  --gold-small-text: #E8D08A;
  --gold-rgb:   184,149,42;
  --white:      #FFFFFF;
  --off-white:  #E6ECF8;
  --muted:      #7A90C0;
  --border:     rgba(var(--gold-rgb),0.25);
  --ink:        #090E27;   /* text-on-gold (badges/buttons) — stays constant across themes */
  --nav-backdrop:   rgba(9,14,39,0.92);
  --dropdown-backdrop: rgba(9,14,39,0.97);
  --modal-backdrop: rgba(9, 14, 39, 0.85);
  --bg-image:   url('../images/background.png');
  --hero-mark-fill: #f4f4f4;
}

:root[data-theme="light"] {
  --navy:       #F7F5EF;   /* warm ivory base — not clinical white */
  --navy-mid:   rgba(238, 235, 225, 0.55);   /* alternating section bg — translucent, mirrors dark theme's navy-mid so the background image bleeds through */
  --navy-card:  rgba(255, 255, 255, 0.65);
  --navy-light: rgba(255, 255, 255, 0.8);
  --gold:       #8A6B1F;   /* darkened for ~4.5:1 AA text contrast on ivory */
  --gold-light: #6E551A;
  --gold-pale:  #B8952A;   /* large-text/decorative gold only, not small body text */
  --gold-small-text: #8A6B1F;   /* AA-contrast substitute for --gold-pale in small-text contexts */
  --gold-rgb:   138,107,31;
  --white:      #0D1330;   /* primary heading text */
  --off-white:  #232B45;   /* body text */
  --muted:      #5A6B8C;
  --border:     rgba(var(--gold-rgb), 0.25);
  --nav-backdrop:   rgba(247,245,239,0.92);
  --dropdown-backdrop: rgba(247,245,239,0.97);
  --modal-backdrop: rgba(9, 14, 39, 0.55);
  --bg-image:   url('../images/background-white.png');
  --hero-mark-fill: var(--ink);   /* near-white fill reads invisible on a light base — use theme-invariant navy instead */
  /* --ink intentionally not overridden — stays #090E27 in both themes */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

body {
  background: var(--navy);
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 4rem;
  background: var(--nav-backdrop);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

nav.nav-scrolled { padding: 0.5rem 4rem; }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-full {
  height: 52px;
  width: auto;
  transition: height 0.3s ease;
}

nav.nav-scrolled .nav-logo-full { height: 40px; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

/* ── THEME TOGGLE ── */
.nav-theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-theme-toggle:hover { color: var(--gold-light); }

.nav-theme-toggle .icon-sun,
.nav-theme-toggle .icon-moon {
  position: absolute;
  inset: 0;
  margin: auto;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.nav-theme-toggle .icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

[data-theme="light"] .nav-theme-toggle .icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

[data-theme="light"] .nav-theme-toggle .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .nav-theme-toggle .icon-sun,
  .nav-theme-toggle .icon-moon {
    transition: none;
  }
}

/* ── LOGO THEME SWAP ── */
/* .logo-standard = images/rossnet.png (default/dark theme); .logo-light = images/rossnet-dark.png (light theme, darker mark for contrast on a light background) */
/* img.* specificity needed to beat .hero-logo/.footer-logo's own unconditional `display: block` rules further down the file */
img.logo-light { display: none; }
[data-theme="light"] img.logo-standard { display: none; }
[data-theme="light"] img.logo-light { display: block; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ── NAV DROPDOWN ── */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--dropdown-backdrop);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 200;
  backdrop-filter: blur(12px);
}

.nav-has-dropdown.open .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.nav-dropdown li a:hover { color: var(--gold-light); background: rgba(var(--gold-rgb),0.06); }

.nav-dropdown-arrow {
  display: inline-block;
  font-size: 0.6rem;
  margin-left: 0.3rem;
  transition: transform 0.2s;
  vertical-align: middle;
}

.nav-dropdown-divider {
  height: 1px;
  margin: 0.5rem 1.25rem;
  background: var(--border);
  padding: 0;
  list-style: none;
}

.nav-has-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

/* house icon */
.nav-home-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  fill: currentColor;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── COPY TO CLIPBOARD (reusable — pair any value with a .copy-btn[data-copy]) ── */
.copy-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--gold);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.copy-btn:hover { border-color: var(--gold); color: var(--gold-light); }

.copy-btn .icon-check { display: none; }
.copy-btn.copied {
  color: var(--gold);
  border-color: var(--gold);
}
.copy-btn.copied .icon-copy { display: none; }
.copy-btn.copied .icon-check { display: block; }

/* ── SECTIONS ── */
section {
  padding: 6rem 4rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--white);
  margin: 0.5rem 0 1rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
}

.alt-bg {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── HOME HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 4rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-mark path {
  fill: var(--hero-mark-fill);
}

.hero-mark {
  position: fixed;
  top: -55px;
  right: -105px;
  width: 560px;
  height: auto;
  opacity: 0.2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-logo {
  display: block;
  width: clamp(200px, 35vw, 380px);
  height: auto;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.gold {
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-number {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.stat-source {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.25rem 0.6rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-badge {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--white);
  margin: 0.5rem 0;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
}

/* ── CARD BASE ──
   Shared base for every card component that uses the standard
   navy-card background / border / 3px radius combination. Each
   individual class below keeps only its distinguishing properties
   (padding, border-left accents, hover transforms, layout, etc). */
.problem-stat-card,
.problem-card,
.reg-card,
.service-card,
.audience-card,
.related-card,
.team-card,
.partner-card,
.insight-card,
.article-sidebar-card,
.credential-card,
.testimonial-card,
.case-study-card,
.tool-hub-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
}

/* ── PROBLEM ── */
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.problem-stat-card {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  transition: border-color 0.3s;
}

.problem-stat-card:hover { border-color: rgba(var(--gold-rgb),0.5); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.problem-card {
  padding: 1.75rem;
  transition: border-color 0.3s;
}

.problem-card:hover { border-color: rgba(var(--gold-rgb),0.5); }

.problem-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── REGULATORY ── */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.reg-card {
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.reg-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--gold-rgb),0.5);
}

.reg-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.reg-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.reg-full {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 1.5rem;
}

.reg-full:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--gold-rgb),0.5);
}

.reg-full h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.reg-full p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── SERVICES OVERVIEW ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none;
  display: block;
}

.sme-tier-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sme-tier-divider::before,
.sme-tier-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--gold-rgb),0.5);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
  border-radius: 3px 3px 0 0;
}

.service-badge {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}

.service-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.service-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.service-body {
  padding: 1.5rem 1.75rem;
}

.service-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.service-card-wide { grid-column: 1 / -1; }

/* ── DELIVERABLES ── */
.deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deliverables li {
  font-size: 0.875rem;
  color: var(--off-white);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.65;
}

.deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.05rem;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── TWO COLUMN LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-block p {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.content-block p:last-child { margin-bottom: 0; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 3px;
}

.highlight-box p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── WHO ITS FOR CARDS ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  padding: 1.75rem;
}

.audience-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.audience-card p {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.65;
}

.audience-card p a {
  color: var(--gold-light);
  text-decoration: none;
}

.audience-card p a:hover {
  text-decoration: underline;
}

.audience-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── ABOUT ── */
.about-name-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.about-intro {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--off-white);
}

.cred-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.cred-list li strong {
  color: var(--gold-small-text);
  font-weight: 500;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 1.1rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1.05rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin-top: 0.85rem;
  color: var(--off-white);
  font-size: 0.9rem;
  line-height: 1.7;
}

.experience-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(var(--gold-rgb),0.12);
}

.experience-item:last-child { border-bottom: none; }

.exp-org {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.exp-detail {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--gold-light); }

/* ── FORM ── */
.form-panel {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
}

.form-panel h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-panel > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--gold-light); }

/* ── CTA BAND ── */
.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 4rem;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
}

.cta-band p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ── RELATED SERVICES ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.related-card {
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s, border-color 0.3s;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--gold-rgb),0.5);
}

.related-badge {
  width: 2rem;
  height: 2rem;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.related-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.2rem;
}

.related-sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}

.footer-left {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-left strong {
  color: var(--off-white);
  font-weight: 500;
}

.footer-right {
  display: flex;
  gap: 2rem;
}

.footer-right a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--gold-light); }

/* ── UTILITY ── */
.gold-rule {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.fade-up {
  opacity: 1;
  transform: none;
}

html.js .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.team-card {
  border-left: 3px solid var(--gold);
  padding: 2rem;
}

.team-card-featured { grid-column: 1 / -1; }

.team-name {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--white);
  margin-bottom: 0.2rem;
}

.team-postnominals {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-small-text);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.75;
}

.team-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
}
.team-link:hover { color: var(--gold-light); }

/* ── CV PAGES ── */
.cv-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.cv-intro-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Hexagon-cropped team photos (joseph/andie/emma.png) already carry their own
   border/shape — no radius or border to add on top */
.team-photo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}

.team-photo--sm {
  width: 120px;
  height: 120px;
  margin-bottom: 1.25rem;
}

.cv-intro-text .about-name-title {
  margin-bottom: 1.5rem;
}

.cv-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cv-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cv-entry:first-child { padding-top: 0; }
.cv-entry:last-child { border-bottom: none; }

.cv-entry-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: 0.2rem;
}

.cv-entry-title {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cv-entry-org {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-small-text);
  margin-bottom: 0.6rem;
}

.cv-entry-desc {
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.75;
}

.cv-entry-desc p + p { margin-top: 0.6rem; }

.cv-quals {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cv-qual-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.cv-qual-item:last-child { border-bottom: none; }

.cv-qual-award {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-light);
  padding-top: 0.15rem;
}

.cv-qual-award--label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  padding-top: 0.3rem;
}

.cv-qual-detail strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cv-qual-detail span {
  font-size: 0.8rem;
  color: var(--muted);
}

.cv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.cv-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* ── PARTNERS ── */
.partner-groups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.partner-group-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.partner-card {
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.partner-card:hover { border-color: rgba(var(--gold-rgb),0.5); }

.partner-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.partner-type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.partner-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PARTNER PAGES ── */
.partner-page-logo {
  max-width: 300px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.85;
}

.partner-card-logo {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.partner-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.partner-type-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── INSIGHTS LISTING ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insight-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.insight-card:hover { border-color: rgba(var(--gold-rgb),0.5); }

.insight-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.insight-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.insight-title {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.insight-card-featured .insight-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.insight-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.insight-excerpt {
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.insight-service {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.insight-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  align-self: flex-start;
}
.insight-link:hover { color: var(--gold-light); }

/* ── ARTICLE PAGE ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.article-body p {
  font-size: 0.975rem;
  color: var(--off-white);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--white);
  margin: 2.5rem 0 0.75rem;
}

.article-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 1.75rem 0 0.5rem;
}

.article-placeholder {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(var(--gold-rgb),0.3);
  border-radius: 3px;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.article-placeholder p {
  color: var(--muted) !important;
  font-style: italic;
  margin: 0 !important;
  font-size: 0.875rem !important;
  line-height: 1.7 !important;
}

.article-sidebar-card {
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-sidebar-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.article-sidebar-card p,
.article-sidebar-card a {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  text-decoration: none;
  display: block;
}

.article-sidebar-card a:hover { color: var(--gold-light); }

/* ── INSIGHTS HUB ── */
.insight-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.insight-search-input {
  flex: 1;
  min-width: 220px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.insight-search-input:focus { border-color: var(--gold); }

.insight-filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.insight-filter-chip {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 2px;
  padding: 0.45rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.insight-filter-chip:hover { border-color: var(--gold); color: var(--off-white); }

.insight-filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.insight-empty-state {
  color: var(--muted);
  text-align: center;
  padding: 3rem 0;
  grid-column: 1 / -1;
}

/* ── CREDENTIALS ── */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.credential-card {
  border-left: 3px solid var(--gold);
  padding: 2rem;
}

.credential-name {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--white);
  margin-bottom: 0.2rem;
}

.credential-postnominals {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-small-text);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.credential-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  border-left: 3px solid var(--gold);
  padding: 2rem;
}

.testimonial-pending {
  border-left-color: rgba(var(--gold-rgb),0.25);
}

.testimonial-quote {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 0.975rem;
  color: var(--off-white);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-pending .testimonial-quote {
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonial-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-small-text);
  font-weight: 500;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-study-card {
  padding: 1.75rem;
}

.cs-pending { opacity: 0.55; }

.cs-sector {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.cs-title {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cs-service {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gold-small-text);
  margin-bottom: 0.75rem;
}

.cs-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── POLICY PAGES ── */
.policy-doc {
  max-width: 780px;
}

.policy-intro {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.policy-intro p {
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-intro a { color: var(--gold); }

.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2px;
  flex-shrink: 0;
}

.policy-section p {
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section a { color: var(--gold); }

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.policy-list li {
  color: var(--off-white);
  line-height: 1.75;
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(var(--gold-rgb),0.1);
  font-size: 0.9rem;
}

.policy-list li:last-child { border-bottom: none; }

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.policy-list strong { color: var(--gold-small-text); }

/* ── TOOLS HUB ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tool-hub-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.2s;
}

.tool-hub-card:hover {
  border-color: rgba(var(--gold-rgb),0.55);
  transform: translateY(-2px);
}

.tool-hub-num {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(var(--gold-rgb),0.35);
  line-height: 1;
}

.tool-hub-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.tool-hub-title {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
}

.tool-hub-card p.tool-hub-desc {
  font-size: 0.845rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

.tool-hub-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.tool-hub-meta span {
  font-size: 0.7rem;
  color: var(--muted);
  background: rgba(var(--gold-rgb),0.07);
  border: 1px solid rgba(var(--gold-rgb),0.2);
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
}

.tool-hub-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  margin-top: 0.25rem;
}

.tool-hub-card:hover .tool-hub-link { color: var(--gold-light); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0.375rem 1.5rem; }
  nav.nav-scrolled { padding: 0.5rem 1.5rem; }
  .nav-theme-toggle { margin-left: auto; }
  .nav-hamburger {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dropdown-backdrop);
    border-top: 1px solid var(--border);
    padding: 0.5rem 1.5rem 1rem;
    gap: 0;
    text-align: center;
    z-index: 99;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }
  nav.nav-open .nav-links li { border-bottom: 1px solid rgba(var(--gold-rgb),0.1); }
  nav.nav-open .nav-links li:last-child { border-bottom: none; }
  nav.nav-open .nav-links a { display: block; padding: 0.7rem 0; }
  nav.nav-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.nav-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  /* Mobile dropdown — expand inline */
  .nav-dropdown {
    display: none;
    position: static;
    transform: none;
    background: none;
    border: none;
    border-top: 1px solid rgba(var(--gold-rgb),0.1);
    padding: 0;
    margin-top: 0.25rem;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { padding: 0.55rem 1rem; font-size: 0.8rem; color: var(--muted); text-align: center; }
  .nav-dropdown-arrow { display: inline-block; }
  section { padding: 4rem 1.5rem; }
  #hero { padding: 7rem 1.5rem 4rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-mark { width: clamp(200px, 55vw, 560px); top: -20px; right: -40px; }
  .problem-stats { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .partner-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-featured { grid-column: auto; }
  .cv-intro { grid-template-columns: 1fr; }
  .cv-intro-photo { width: 140px; height: 140px; }
  .cv-entry { grid-template-columns: 1fr; gap: 0.4rem; }
  .cv-qual-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card-featured { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 3rem 1.5rem; }
  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}

/* ── SME MODAL ── */
.sme-modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--modal-backdrop);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}
.sme-modal-overlay.open { display: flex; }
.sme-modal {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
}
.sme-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.sme-modal-close:hover, .sme-modal-close:focus-visible { color: var(--gold); }
.sme-card-cta {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  color: var(--gold-light);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  margin-top: 1rem;
  text-align: left;
  text-decoration: underline;
}
.sme-card-cta:hover, .sme-card-cta:focus-visible { color: var(--gold); }
.sme-price {
  font-family: 'Georgia Pro', 'Georgia', 'PT Serif', serif;
  font-size: 1.3rem;
  color: var(--gold-small-text);
  margin-top: 0.75rem;
}
.sme-beyond-list {
  list-style: none;
  columns: 2;
  gap: 2rem;
  margin-top: 1rem;
}
.sme-beyond-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  break-inside: avoid;
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .sme-beyond-list { columns: 1; }
}
