/* ============================================================
   THE AUDIT HUB — styles.css
   Production stylesheet · All pages
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
/* Arial Rounded MT — system font with web fallbacks */
/* No import needed — Arial Rounded is a system font on Mac/Windows */

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

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --navy:       #0D1E3A;
  --navy-mid:   #162847;
  --navy-light: #1E3459;
  --teal:       #0B7B63;
  --teal-light: #0F9478;
  --teal-pale:  #E4F4F0;
  --slate:      #3D4F6B;
  --mist:       #F5F7FA;
  --border:     #DDE3EC;
  --text-primary:   #0D1E3A;
  --text-secondary: #4A5568;
  --text-muted:     #7B8BA0;
  --white:      #FFFFFF;

  --font-display: 'Arial Rounded MT Bold', 'Arial Rounded MT', 'Nunito', Arial, sans-serif;
  --font-body:    'Arial Rounded MT', 'Nunito', Arial, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  --shadow-sm: 0 1px 3px rgba(13,30,58,0.08);
  --shadow-md: 0 4px 16px rgba(13,30,58,0.10);
  --shadow-lg: 0 8px 32px rgba(13,30,58,0.12);

  --max-w: 1140px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-gap: clamp(60px, 8vw, 100px);
}

/* ── Base Typography ──────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 500; font-family: var(--font-body); letter-spacing: 0.04em; }
p  { color: var(--text-secondary); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-gap); }
.section--dark  { background: var(--navy); color: var(--white); }
.section--mist  { background: var(--mist); }
.section--teal  { background: var(--teal); color: var(--white); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo { width: 38px; height: 38px; flex-shrink: 0; }
.nav__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.nav__name span { display: block; font-weight: 300; font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover, .nav__link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  background: var(--teal);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--teal-light); transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px var(--gutter) 20px;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav__mobile a:hover, .nav__mobile a.active { background: rgba(255,255,255,0.08); color: var(--white); }
.nav__mobile .nav__cta { margin-top: 8px; text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border: 1.5px solid var(--teal);
}
.btn--primary:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,123,99,0.3); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--outline-dark:hover { border-color: var(--navy); background: var(--mist); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding-block: clamp(80px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(11,123,99,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30,52,89,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(11,123,99,0.4);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.hero__title { color: var(--white); margin-bottom: 22px; }
.hero__title em { font-style: normal; color: var(--teal-light); }
.hero__lead { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 520px; }
.hero__stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.hero__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero__card-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero__trust-item:last-child { border-bottom: none; }
.hero__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}
.hero__trust-text { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding-block: clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(11,123,99,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.page-hero__title { color: var(--white); margin-bottom: 16px; }
.page-hero__lead { font-size: 1.05rem; color: rgba(255,255,255,0.68); }

/* ── Section labels ───────────────────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-label--light { color: rgba(255,255,255,0.5); }

/* ── Section header block ─────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-secondary); max-width: 580px; }
.section-header--center p { margin-inline: auto; }

/* ── Problem cards ────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.problem-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 16px;
  color: var(--border);
}
.problem-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.problem-card p { font-size: 0.9rem; }

/* ── Services grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal); }
.service-card__pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 10px;
  border-radius: 99px;
  align-self: flex-start;
}
.service-card h3 { margin: 0; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; flex: 1; }
.service-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 10px; }

/* ── About split ──────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
}
.about-split__content p { margin-bottom: 16px; }
.about-split__content p:last-of-type { margin-bottom: 28px; }
.about-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-avatar__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--teal-pale);
  overflow: hidden;
}
.about-avatar__initials {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--white);
}
.about-avatar__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
}
.about-avatar__role {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  text-align: center;
  margin-top: -12px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.about-stat {
  background: var(--white);
  padding: 20px;
  text-align: center;
}
.about-stat__num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.about-stat__label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.3; }

/* ── Insights cards ───────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.insight-card__tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.insight-card h3 { font-size: 1rem; line-height: 1.45; margin: 0; font-family: var(--font-body); font-weight: 500; }
.insight-card__date { font-size: 0.8rem; color: var(--text-muted); margin-top: auto; padding-top: 8px; }
.insight-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.insight-card:hover .insight-card__link { gap: 10px; }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding-block: clamp(56px, 7vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(11,123,99,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.68); font-size: 1.05rem; margin-bottom: 32px; }
.cta-band .btn-group { justify-content: center; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 56px;
  padding-bottom: 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo-mark { width: 32px; height: 32px; }
.footer__logo-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.footer__logo-name span { display: block; font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 260px; }
.footer__email {
  font-size: 0.875rem;
  color: var(--teal-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer__email:hover { color: var(--white); }
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Divider ──────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ── Services full page ───────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-full-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.service-full-card:hover { box-shadow: var(--shadow-lg); }
.service-full-card__head {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-full-card__head--teal { background: var(--teal); color: var(--white); }
.service-full-card__head--navy { background: var(--navy); color: var(--white); }
.service-full-card__head--slate { background: var(--slate); color: var(--white); }
.service-full-card__head--dark  { background: var(--navy-mid); color: var(--white); }
.service-full-card__num { font-family: var(--font-display); font-size: 2.5rem; opacity: 0.2; line-height: 1; }
.service-full-card__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--white); }
.service-full-card__subtitle { font-size: 0.875rem; color: rgba(255,255,255,0.68); }
.service-full-card__body { padding: 32px; background: var(--white); }
.service-full-card__body p { font-size: 0.925rem; margin-bottom: 20px; }
.service-bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.service-bullet::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── ECCTA page ───────────────────────────────────────────── */
.eccta-intro {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.eccta-sidebar {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.eccta-sidebar__title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.eccta-sidebar__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.eccta-sidebar__item:last-of-type { border-bottom: none; }
.eccta-sidebar__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.eccta-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.eccta-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.eccta-service-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.eccta-service-card h3 { font-size: 1rem; margin-bottom: 10px; }
.eccta-service-card p { font-size: 0.875rem; }
.warning-box {
  background: #FFF8EC;
  border: 1px solid #F5C842;
  border-left: 4px solid #F5C842;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.warning-box strong { color: #92620A; }

/* ── Insights page ────────────────────────────────────────── */
.insights-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.insights-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.insight-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.insight-full-card__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
}
.tag--regulatory { background: #EBF4FF; color: #1A56A4; }
.tag--technical  { background: var(--teal-pale); color: var(--teal); }
.tag--careers    { background: #F3EEFF; color: #6B3EBE; }
.insight-full-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 500; line-height: 1.45; }
.insight-full-card p { font-size: 0.875rem; flex: 1; }
.insight-full-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.insight-full-card__date { font-size: 0.78rem; color: var(--text-muted); }
.insight-full-card__read { font-size: 0.8rem; font-weight: 500; color: var(--teal); }
.insights-cta {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.insights-cta h3 { margin-bottom: 10px; }
.insights-cta p { margin-bottom: 24px; font-size: 0.95rem; }

/* ── Prose content blocks ─────────────────────────────────── */
.prose h3 { margin-bottom: 12px; margin-top: 36px; }
.prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; font-size: 0.95rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { margin: 16px 0; padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.prose li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--text-secondary);
}
.prose li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 9px;
}

/* ── Scroll animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__grid           { grid-template-columns: 1fr; }
  .hero__card           { display: none; }
  .about-split          { grid-template-columns: 1fr; }
  .about-split .about-avatar { order: -1; flex-direction: row; gap: 24px; justify-content: flex-start; }
  .about-avatar__img    { width: 100px; height: 100px; }
  .about-avatar__initials { font-size: 1.8rem; }
  .services-full-grid   { grid-template-columns: 1fr; }
  .eccta-intro          { grid-template-columns: 1fr; }
  .eccta-sidebar        { position: static; }
  .footer__grid         { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav__links           { display: none; }
  .nav__cta             { display: none; }
  .nav__hamburger       { display: flex; }
  .problem-grid         { grid-template-columns: 1fr; }
  .services-grid        { grid-template-columns: 1fr; }
  .insights-grid        { grid-template-columns: 1fr; }
  .insights-full-grid   { grid-template-columns: 1fr; }
  .eccta-services       { grid-template-columns: 1fr; }
  .about-stats          { grid-template-columns: 1fr; }
  .footer__grid         { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom       { flex-direction: column; align-items: flex-start; }
  .hero__stats          { gap: 24px; }
  .cta-band .btn-group  { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .about-split .about-avatar { flex-direction: column; }
}

/* ── Real logo image ──────────────────────────────────────── */
.nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
  /* Transparent PNG — no filter needed, logo is already white/cream */
}
.footer__logo-img {
  height: 26px;
  width: auto;
  display: block;
}

/* ── Kyle photo ───────────────────────────────────────────── */
.kyle-photo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--teal-pale);
  flex-shrink: 0;
  background: var(--navy-light);
}
.kyle-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

/* Insights author block photo */
.kyle-author-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--teal-pale);
  flex-shrink: 0;
  background: var(--navy-light);
}
.kyle-author-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

@media (max-width: 480px) {
  .kyle-photo-wrap { width: 120px; height: 120px; }
}
