/* ============================================================
   AYUDA SOLUTIONS — GLOBAL STYLESHEET
   Brand palette from AYUDA-Logo.svg:
     Primary Blue  #0271C0
     Orange        #F05829
     Green         #89C541
     Amber         #FBAE38
   Update :root variables to retheme the entire site.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Backgrounds — deep navy derived from brand blue */
  --c-bg:        #04101d;
  --c-surface:   #071828;
  --c-surface2:  #0c2035;

  /* Borders */
  --c-border:    rgba(2, 113, 192, 0.16);
  --c-border-hi: rgba(2, 113, 192, 0.38);

  /* Text */
  --c-text:      #ddeaf8;
  --c-muted:     #6a90b0;

  /* Brand palette */
  --c-blue:      #0271C0;
  --c-blue-lt:   #2190e0;
  --c-blue-dk:   #015ea0;
  --c-orange:    #F05829;
  --c-green:     #89C541;
  --c-amber:     #FBAE38;

  /* Functional aliases */
  --c-accent:    #0271C0;
  --c-accent2:   #F05829;
  --c-gold:      #FBAE38;
  --c-danger:    #F05829;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 40px rgba(2, 113, 192, 0.25);
  --shadow-glow-orange: 0 0 32px rgba(240, 88, 41, 0.28);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Shape */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 999px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);

  --header-h:    76px;
  --max-w:       1280px;
  --gutter:      clamp(20px, 5vw, 80px);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--c-muted); line-height: 1.75; }

.text-accent { color: var(--c-accent); }
.text-gold   { color: var(--c-gold); }
.text-muted  { color: var(--c-muted); }
.text-orange { color: var(--c-orange); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section    { padding: clamp(60px, 8vw, 120px) 0; }
.section-sm { padding: clamp(40px, 5vw, 80px) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 640px)  { .grid-4 { grid-template-columns: 1fr; } }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s var(--ease-out); white-space: nowrap;
}
.btn-primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(2, 113, 192, 0.4);
}
.btn-primary:hover {
  background: var(--c-blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(2, 113, 192, 0.55);
}
.btn-outline {
  border: 1.5px solid var(--c-border-hi);
  color: var(--c-text);
  background: rgba(2, 113, 192, 0.06);
}
.btn-outline:hover {
  border-color: var(--c-blue);
  color: var(--c-blue-lt);
  background: rgba(2, 113, 192, 0.12);
}
.btn-orange {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(240, 88, 41, 0.35);
}
.btn-orange:hover {
  background: #ff6a3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(240, 88, 41, 0.5);
}
.btn-ghost { color: var(--c-blue-lt); padding-left: 0; }
.btn-ghost:hover { gap: 12px; }
.btn-ghost::after { content: '→'; }

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-border-hi);
  box-shadow: var(--shadow-glow);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(2, 113, 192, 0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  color: var(--c-blue-lt);
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p  { font-size: 0.9rem; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 14px;
  padding: 5px 14px; border-radius: var(--radius-full);
  background: rgba(240, 88, 41, 0.1);
  border: 1px solid rgba(240, 88, 41, 0.25);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; }

/* ── ACCENT LINE ──────────────────────────────────────────── */
.accent-line {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-orange));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── STAT BADGE ───────────────────────────────────────────── */
.stat-badge {
  text-align: center; padding: 24px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
}
.stat-badge .num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--c-blue-lt); line-height: 1;
}
.stat-badge .label { font-size: 0.85rem; color: var(--c-muted); margin-top: 6px; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-bg) 60%);
  border-bottom: 1px solid var(--c-border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(2,113,192,0.09) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-blue), var(--c-orange), transparent);
  opacity: 0.4;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--c-blue-lt); }
.breadcrumb span::before { content: ' / '; }

/* ── TAG ──────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 500; color: var(--c-muted);
  padding: 4px 12px; border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
}

/* ────────────────────────────────────────────────────────────
   HEADER
──────────────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(4, 16, 29, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(2, 113, 192, 0.15);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(4, 16, 29, 0.97);
  border-bottom-color: rgba(2, 113, 192, 0.25);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
/* Blue accent stripe at very top */
#site-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-orange), var(--c-green), var(--c-amber));
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%; display: flex; align-items: center; gap: 40px;
}

/* Logo */
.logo {
  display: flex; align-items: center;
  flex-shrink: 0; text-decoration: none;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  /* White version used on dark header */
}

.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--c-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--c-text);
  background: rgba(2, 113, 192, 0.1);
}
.chevron { font-size: 0.65rem; transition: transform 0.2s; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border-hi);
  border-radius: var(--radius-md);
  padding: 8px;
  padding-top: 16px; /* visual space from nav item */
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  /* extend hit area upward so mouse crossing gap doesn't close menu */
  margin-top: 0;
}
/* Invisible bridge fills the gap between nav-link and dropdown */
.dropdown::before,
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown,
.has-dropdown:hover .mega-menu,
.has-dropdown.is-open .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
/* Also keep open when hovering the dropdown itself */
.dropdown:hover,
.mega-menu:hover {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.drop-link {
  display: block; padding: 9px 14px;
  font-size: 0.875rem; color: var(--c-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.drop-link:hover, .drop-link.active {
  color: var(--c-text);
  background: rgba(2, 113, 192, 0.1);
}

/* Mega-menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%; transform: translateX(-50%) translateY(4px);
  width: 700px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border-hi);
  border-radius: var(--radius-md);
  padding: 28px;
  padding-top: 36px; /* visual space + extends hit area */
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.has-dropdown:hover .mega-menu,
.has-dropdown.is-open .mega-menu { transform: translateX(-50%) translateY(0); }
.mega-menu:hover { transform: translateX(-50%) translateY(0); }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mega-group { display: flex; flex-direction: column; gap: 2px; }
.mega-heading {
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-orange); margin-bottom: 8px; padding: 4px 0;
  border-bottom: 1px solid var(--c-border);
}
.mega-link {
  display: block; padding: 7px 10px;
  font-size: 0.875rem; color: var(--c-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.mega-link:hover, .mega-link.active {
  color: var(--c-text);
  background: rgba(2, 113, 192, 0.1);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  font-size: 0.85rem; color: var(--c-muted);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--c-blue-lt); }
.btn-cta {
  background: var(--c-orange);
  color: #fff;
  padding: 10px 22px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(240, 88, 41, 0.35);
}
.btn-cta:hover {
  background: #ff6a3d;
  box-shadow: 0 4px 20px rgba(240, 88, 41, 0.5);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--c-text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--c-surface2);
    border-bottom: 1px solid var(--c-border-hi);
    padding: 20px; overflow-y: auto;
    max-height: calc(100vh - var(--header-h));
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: transform 0.3s var(--ease-out), opacity 0.3s, visibility 0.3s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .has-dropdown .dropdown, .has-dropdown .mega-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; box-shadow: none; border: none;
    background: transparent; padding: 0 0 0 16px; margin-top: 4px;
    display: none;
  }
  .has-dropdown:hover .dropdown, .has-dropdown:hover .mega-menu { display: block; }
  .mega-inner { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
}

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
  position: relative;
}
#site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-orange), var(--c-green), var(--c-amber));
}
.footer-top {
  max-width: var(--max-w); margin: 0 auto; padding: 64px var(--gutter);
  display: grid; grid-template-columns: 340px 1fr; gap: 60px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; margin-bottom: 18px;
}
.footer-logo-img {
  height: 32px; width: auto;
  display: block;
  /* White SVG — no filter needed */
  opacity: 0.92;
  transition: opacity 0.2s;
}
.footer-logo:hover .footer-logo-img { opacity: 1; }
.footer-tagline {
  font-size: 0.95rem; color: var(--c-muted); margin-bottom: 24px; line-height: 1.6;
}
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--c-muted); transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--c-blue-lt); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: var(--radius-md);
  background: var(--c-surface2); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted); transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-socials a:hover {
  color: var(--c-blue-lt);
  border-color: var(--c-blue);
  background: rgba(2, 113, 192, 0.1);
}
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: var(--c-muted);
  padding: 5px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--c-blue-lt); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 20px var(--gutter);
  border-top: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--c-muted); margin: 0; }
.footer-bottom a { color: var(--c-muted); margin: 0 4px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--c-blue-lt); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── PAGE WRAPPER ─────────────────────────────────────────── */
.page-wrapper { padding-top: var(--header-h); min-height: 100vh; display: flex; flex-direction: column; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes pulse   { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
@keyframes shimmer { from { transform:translateX(-100%); } to { transform:translateX(100%); } }
@keyframes float   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }

.fade-up  { animation: fadeUp  0.7s var(--ease-out) both; }
.fade-in  { animation: fadeIn  0.6s var(--ease-out) both; }
.delay-1  { animation-delay: 0.1s; }
.delay-2  { animation-delay: 0.2s; }
.delay-3  { animation-delay: 0.35s; }
.delay-4  { animation-delay: 0.5s; }
.delay-5  { animation-delay: 0.65s; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg,
    rgba(2, 113, 192, 0.12) 0%,
    rgba(240, 88, 41, 0.08) 100%);
  border-top: 1px solid rgba(2, 113, 192, 0.2);
  border-bottom: 1px solid rgba(2, 113, 192, 0.2);
  padding: 72px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%,
    rgba(2, 113, 192, 0.07), transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p  {
  margin-bottom: 32px; font-size: 1.05rem;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ── BOOTSTRAP ICONS ──────────────────────────────────────────── */
/* Base sizing — icons inherit colour from parent */
.bi { display: inline-flex; align-items: center; justify-content: center; line-height: 1; vertical-align: middle; }

/* Icon inside .card-icon container */
.card-icon .bi { font-size: 1.5rem; }

/* Section eyebrow / inline text icons */
.section-eyebrow .bi { font-size: 0.85em; }

/* Large decorative icons (ss-icon, ind-emoji, etc.) */
.ss-icon .bi,
.ind-emoji .bi,
.mv-icon .bi,
.edge-icon .bi,
.perk-icon .bi,
.tl-icon .bi,
.wi-icon .bi,
.why-item .bi,
.diff-item .di-icon .bi,
.facility-item .fi-icon .bi,
.reason-card .rc-icon .bi,
.topic-pill .tp-icon .bi,
.lt-icon .bi,
.vp-icon .bi,
.value-pill .vp-icon .bi { font-size: 2rem; color: var(--c-blue-lt); }

/* Standalone icon wrappers */
.ss-icon,
.ind-emoji,
.mv-icon,
.edge-icon,
.perk-icon,
.wi-icon { display: block; margin-bottom: 16px; }

/* Contact / footer SVG inline icons */
.footer-contact-item .bi,
.ci-item .ci-icon .bi { font-size: 1rem; color: var(--c-muted); }

/* Cert badges */
.cert-badge .cb-icon .bi { font-size: 1.4rem; }

/* Nav / UI small icons */
.svc-arrow .bi,
.ind-arrow .bi,
.article-read .bi { font-size: 0.9rem; }

/* Job tag hot icon */
.job-tag.hot .bi { font-size: 0.85rem; }

/* Advisor / leader avatars — hide bi icons inside avatar circles */
.leader-avatar .bi,
.advisor-avatar .bi { display: none; }

/* Quick links in 404 */
.quick-link .bi { font-size: 1rem; }

/* Hero section stat icons */
.ihs-item .bi { font-size: 1.2rem; }

/* Impact/proof numbers section */
.impact-icon .bi,
.proof-icon .bi { font-size: 2rem; color: var(--c-orange); }

/* Services page svc-icon */
.svc-icon .bi { font-size: 1.6rem; color: var(--c-blue-lt); }

/* loc-icon */
.loc-icon .bi { font-size: 2.5rem; color: var(--c-blue-lt); }

/* advisor avatar */
.advisor-avatar .bi { font-size: 1.1rem; }

/* CTA band */
.cta-band .bi { font-size: 1.2rem; }

/* inline paragraph icons */
p .bi, li .bi { font-size: 1em; vertical-align: -0.1em; margin-right: 2px; }
