/* ═══════════════════════════════════════════════
   RLM Solutions — Shared Styles (Light-First Redesign)
   Inspired by BlueMantis.com — clean, modern enterprise
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary palette */
  --royal:      #0033A0;
  --royal-dark: #002580;
  --royal-mid:  #0047CC;
  --accent:     #2563EB;
  --accent-lt:  #3B82F6;

  /* Backgrounds */
  --bg-white:   #ffffff;
  --bg-light:   #f5f7fa;
  --bg-subtle:  #eef1f6;
  --bg-dark:    #0b1a2e;
  --bg-dark2:   #0f2240;
  --bg-dark3:   #162c52;

  /* Text */
  --text-dark:  #1a1a2e;
  --text-mid:   #374151;
  --text-light: #6b7280;
  --text-muted: #9ca3af;

  /* Accents */
  --orange:     #e06c3a;
  --orange-h:   #c75a28;
  --green:      #16a34a;

  /* Borders & Shadows */
  --border:     rgba(0,0,0,.08);
  --border2:    rgba(0,0,0,.05);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.1);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.12);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 8px 28px;
  display: flex; align-items: center; justify-content: flex-end; gap: 24px;
}
.topbar a { color: var(--text-light); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
.topbar a:hover { color: var(--royal); }
.topbar-sep { color: var(--border); }

/* ── NAV ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 28px; height: 72px; gap: 4px;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; margin-right: 32px; flex-shrink: 0;
}
.nav-logo svg { height: 44px; width: auto; }
.nav-logo img { height: 44px; width: auto; }
/* Light-first: show blue logo by default */
.nav-logo-light { display: block; }
.nav-logo-dark { display: none; }

nav ul { list-style: none; display: flex; align-items: stretch; gap: 2px; margin-left: auto; }
nav ul li { display: flex; align-items: stretch; }
nav ul li a {
  display: flex; align-items: center;
  text-decoration: none; color: var(--text-mid);
  padding: 0 18px; font-size: 15px; font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
nav ul li a:hover,
nav ul li.active a { color: var(--royal); border-bottom-color: var(--royal); }
.nav-cta a {
  background: var(--orange) !important; color: white !important;
  border-bottom-color: transparent !important;
  margin: 14px 0 14px 12px; border-radius: var(--radius-sm);
  padding: 0 24px !important; font-size: 14px !important;
}
.nav-cta a:hover { background: var(--orange-h) !important; }

/* ── SECTION HEADER BAR ── */
.sec-hdr { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 28px; }
.sec-hdr-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.sec-hdr-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--royal); flex-shrink: 0; }
.sec-hdr h2 { font-size: 20px; font-weight: 700; color: var(--text-dark); }

/* ── NEWSLETTER BAND ── */
.nl-band { background: var(--bg-light); border-top: 1px solid var(--border); padding: 80px 28px; text-align: center; position: relative; overflow: hidden; }
.nl-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(0,51,160,.04) 1.5px, transparent 1.5px); background-size: 32px 32px; }
.nl-inner { max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }
.nl-inner h3 { font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.nl-inner p { font-size: 15px; color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
.nl-form { display: flex; gap: 10px; }
.nl-form input { flex: 1; padding: 14px 18px; border-radius: var(--radius-sm); background: white; border: 1.5px solid var(--border); color: var(--text-dark); font-size: 15px; font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s; }
.nl-form input:focus { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(0,51,160,.1); }
.nl-form input::placeholder { color: var(--text-muted); }
.nl-form button { background: var(--royal); color: white; border: none; padding: 14px 28px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap; transition: background .2s; }
.nl-form button:hover { background: var(--royal-dark); }

/* ── TESTIMONIALS BAND ── */
.test-band { background: var(--bg-light); border-top: 1px solid var(--border); padding: 80px 28px; }
.test-inner { max-width: 1200px; margin: 0 auto; }
.test-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--royal); margin-bottom: 8px; }
.test-head { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 40px; }
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard { background: white; border-radius: var(--radius-md); border: 1px solid var(--border); padding: 32px 28px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.tcard:hover { border-color: rgba(0,51,160,.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tcard-quote { font-size: 15px; color: var(--text-light); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-dot { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--royal), var(--accent)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.tcard-author-info strong { display: block; font-size: 14px; color: var(--text-dark); font-weight: 700; }
.tcard-author-info span { font-size: 13px; color: var(--text-light); }

/* Sub-page testimonials */
.test-band-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.test-card { background: white; border-radius: var(--radius-md); border: 1px solid var(--border); padding: 32px 28px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.test-card:hover { border-color: rgba(0,51,160,.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.test-quote { font-size: 15px; color: var(--text-light); line-height: 1.75; font-style: italic; margin: 0 0 18px; }
.test-attr { font-size: 14px; font-weight: 700; color: var(--text-dark); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, #0b1a2e 0%, #0f2240 50%, #162c52 100%); padding: 100px 28px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(37,99,235,.08) 1.5px, transparent 1.5px); background-size: 30px 30px; pointer-events: none; }
.cta-inner, .cta-band-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2, .cta-band-inner h2, .cta-band > h2 { font-size: 38px; font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.2; }
.cta-inner p, .cta-band-inner p, .cta-band > p { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 36px; }
.cta-band > h2, .cta-band > p, .cta-band > a, .cta-band > div { position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-orange { display: inline-block; text-decoration: none; background: var(--orange); color: white; padding: 16px 36px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; transition: background .2s, transform .15s; }
.btn-orange:hover { background: var(--orange-h); transform: translateY(-2px); }
.btn-outline-w { display: inline-block; text-decoration: none; border: 2px solid rgba(255,255,255,.3); color: white; padding: 15px 32px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; transition: border-color .2s, background .2s; }
.btn-outline-w:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

/* ── FOOTER ── */
footer { background: #07101d; padding: 64px 28px 32px; }
footer, footer * { color: inherit; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 240px; margin-top: 12px; }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,.55); font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(255,255,255,.35); }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none; cursor: pointer; background: none; border: none;
  padding: 8px; margin-left: auto; z-index: 301;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px; background: var(--text-dark);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.hamburger span + span { margin-top: 6px; }
.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 299; opacity: 0; transition: opacity .3s;
}
.mobile-nav-overlay.active { display: block; opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 780px) {
  .hamburger { display: flex; flex-direction: column; justify-content: center; }

  nav ul {
    position: fixed; top: 0; right: -300px; width: 300px; height: 100vh;
    background: white; z-index: 300;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 80px 0 32px; margin: 0;
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
    transition: right .3s ease;
    overflow-y: auto;
  }
  nav ul.open { right: 0; display: flex; }
  nav ul li { display: block; }
  nav ul li a {
    padding: 16px 28px; font-size: 16px; border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent; white-space: normal; color: var(--text-mid);
  }
  nav ul li a:hover,
  nav ul li.active a { border-bottom-color: var(--border); border-left-color: var(--royal); color: var(--royal); }
  .nav-cta a {
    margin: 16px 20px 0 !important; padding: 14px 20px !important;
    text-align: center; border-radius: var(--radius-sm) !important;
    border-left-color: transparent !important;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .test-band-inner { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }

  /* Stats bar: 2 columns on tablet */
  .stats-inner { grid-template-columns: 1fr 1fr !important; }
  .stat-item { padding: 12px 0; }

  /* Hero bar: 2 columns */
  .hero-bar { flex-wrap: wrap; }
  .hero-bar-item { flex: 1 1 45%; min-width: 140px; }

  /* Domain / challenge grids */
  .domain-grid { grid-template-columns: 1fr !important; }
  .challenges-grid { grid-template-columns: 1fr !important; }
  .advisory-inner { grid-template-columns: 1fr !important; gap: 36px !important; }

  /* CTA band */
  .cta-band h2 { font-size: 28px; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }

  /* Stats bar: single column on small phones */
  .stats-inner { grid-template-columns: 1fr !important; }

  /* Hero adjustments */
  .hero-bar-item { flex: 1 1 100%; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px 20px; }
  .hero-bar-item:last-child { border-bottom: none; }

  .ind-hero { min-height: 380px !important; }
  .ind-hero-inner { padding: 60px 20px 50px !important; }
  .ind-hero h1 { font-size: 28px !important; }
  .ind-hero p { font-size: 15px !important; }
  .sol-hero-actions { flex-direction: column; }
  .sol-hero-actions a { text-align: center; }

  /* Section titles */
  .section-title { font-size: 24px; }
  .cta-band h2 { font-size: 24px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Icon images ── */
.icon-img {
  display: inline-block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
  /* Recolor white PNGs to royal blue for light backgrounds */
  filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(4000%) hue-rotate(220deg) brightness(90%);
}
/* Larger icons in section heading cards */
.sol-card-icon .icon-img,
.sol-card-icon img.icon-img { width: 32px; height: 32px; }
/* Smaller inline icons */
.clink .icon-img,
.clink span img.icon-img,
span .icon-img { width: 18px; height: 18px; }
/* Service card icons — keep white inside gradient containers */
.svc-ico .icon-img { width: 22px; height: 22px; filter: none; }
/* Vendor / step icons */
.vendor-step-icon .icon-img,
.risk-icon .icon-img,
.domain-icon .icon-img { width: 26px; height: 26px; }
/* Keep icons white in dark containers */
.cta-band .icon-img,
footer .icon-img { filter: none; }

/* ══════════════════════════════════════════════════════════════
   SOL-HERO BACKGROUND IMAGE
   ══════════════════════════════════════════════════════════════ */
.sol-hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.sol-hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(100deg, rgba(11,26,46,.93) 35%, rgba(11,26,46,.72) 60%, rgba(11,26,46,.2) 100%);
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT MODAL
   ══════════════════════════════════════════════════════════════ */
.contact-modal-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: rgba(0,0,0,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.contact-modal-overlay.active { display: flex; }
.contact-modal {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px 40px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: var(--shadow-xl);
}
.contact-modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: var(--text-muted); font-size: 24px; cursor: pointer; line-height: 1;
  transition: color .15s;
}
.contact-modal-close:hover { color: var(--text-dark); }
.contact-modal h2 { font-size: 26px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.contact-modal .modal-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.contact-modal label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.contact-modal input, .contact-modal textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text-dark);
  background: var(--bg-light); font-family: inherit; outline: none;
  transition: border-color .2s, box-shadow .2s; box-sizing: border-box;
}
.contact-modal input::placeholder, .contact-modal textarea::placeholder { color: var(--text-muted); }
.contact-modal input:focus, .contact-modal textarea:focus {
  border-color: var(--royal); box-shadow: 0 0 0 3px rgba(0,51,160,.1);
  background: white;
}
.contact-modal textarea { resize: vertical; min-height: 80px; }
.contact-modal .modal-field { margin-bottom: 16px; }
.contact-modal .modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-modal .modal-submit {
  width: 100%; padding: 14px; background: var(--orange); color: white;
  border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background .2s, transform .15s;
  margin-top: 8px;
}
.contact-modal .modal-submit:hover { background: var(--orange-h); transform: translateY(-1px); }
.contact-modal .modal-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.contact-modal .captcha-row { margin: 16px 0 8px; }

@media (max-width: 600px) {
  .contact-modal { padding: 28px 20px; margin: 16px; }
  .contact-modal .modal-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SHARED COMPONENT STYLES — LIGHT-FIRST
   Used across sub-pages: cards, badges, stats, sections
   ══════════════════════════════════════════════════════════════ */

/* Buttons */
.btn-primary { display: inline-block; text-decoration: none; background: var(--orange); color: white; padding: 14px 32px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; transition: background .2s, transform .15s; }
.btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); }
.btn-secondary { display: inline-block; text-decoration: none; border: 2px solid rgba(255,255,255,.3); color: white; padding: 13px 28px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; transition: border-color .2s, background .2s; }
.btn-secondary:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

/* Section tags & titles (light background default) */
.section-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--royal); margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--text-light); max-width: 640px; line-height: 1.7; margin-bottom: 52px; }

/* Badge */
.ai-badge, .service-badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--royal); border: 1px solid rgba(0,51,160,.25); background: rgba(0,51,160,.06); border-radius: 20px; padding: 5px 16px; margin-bottom: 18px; }

/* Breadcrumb (hero context — stays white) */
.sol-breadcrumb, .breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.sol-breadcrumb a, .breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.sol-breadcrumb a:hover, .breadcrumb a:hover { color: white; }
.sol-breadcrumb span, .breadcrumb span { margin: 0 8px; }

/* Stats bar (dark, kept in heroes) */
.stats-bar { background: var(--bg-dark2); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); padding: 32px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-size: 34px; font-weight: 800; color: #4090ff; display: block; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* Domain cards (light bg) */
.domains-section { padding: 80px 28px; background: var(--bg-white); }
.domains-inner { max-width: 1200px; margin: 0 auto; }
.domain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.domain-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.domain-card:hover { border-color: rgba(0,51,160,.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.domain-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.domain-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(0,51,160,.06); border: 1px solid rgba(0,51,160,.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.domain-card-head h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.domain-card-head .domain-src { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-top: 3px; }
.domain-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.domain-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.domain-tag { background: rgba(0,51,160,.06); border: 1px solid rgba(0,51,160,.15); color: var(--royal); font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 6px; text-decoration: none; display: inline-block; }
a.domain-tag:hover { background: rgba(0,51,160,.12); border-color: rgba(0,51,160,.3); color: var(--royal-dark); transition: all .15s; cursor: pointer; }

/* Criteria cards (light bg) */
.criteria-section { padding: 80px 28px; background: var(--bg-light); }
.criteria-inner { max-width: 1200px; margin: 0 auto; }
.criteria-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.criteria-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.criteria-card:hover { border-color: rgba(0,51,160,.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.criteria-num { font-size: 12px; font-weight: 700; color: var(--royal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.criteria-card h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.criteria-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.criteria-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }

/* Advisory section (light bg) */
.advisory-section { padding: 80px 28px; background: var(--bg-white); }
.advisory-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.advisory-left h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.advisory-left p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.advisory-right { background: var(--bg-light); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 32px; }
.advisory-right h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.checklist { list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.checklist li:last-child { border-bottom: none; }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(0,51,160,.08); border: 1.5px solid var(--royal); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.check-icon svg { width: 10px; height: 10px; stroke: var(--royal); stroke-width: 2.5; fill: none; }

/* Expertise section (light bg) */
.expertise-section { padding: 80px 28px; background: var(--bg-light); }
.expertise-inner { max-width: 1200px; margin: 0 auto; }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.exp-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.exp-card:hover { border-color: rgba(0,51,160,.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.exp-card-tag { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--royal); margin-bottom: 3px; }
.exp-card-tag .exp-tag-icon { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.exp-card h4, .exp-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.exp-tag { background: rgba(0,51,160,.06); border: 1px solid rgba(0,51,160,.15); color: var(--royal); font-size: 12px; font-weight: 500; padding: 5px 11px; border-radius: 6px; text-decoration: none; display: inline-block; }
a.exp-tag:hover { background: rgba(0,51,160,.12); border-color: rgba(0,51,160,.3); color: var(--royal-dark); transition: all .15s; cursor: pointer; }

/* Vendor/process steps (light bg) */
.vendor-section { padding: 80px 28px; background: var(--bg-white); }
.vendor-inner { max-width: 1200px; margin: 0 auto; }
.vendor-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.vendor-step { text-align: center; padding: 36px 28px; background: var(--bg-light); border-radius: var(--radius-md); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.vendor-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vendor-step-num { font-size: 13px; font-weight: 700; color: var(--royal); margin-bottom: 6px; }
.vendor-step-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--royal), var(--accent)); box-shadow: 0 4px 16px rgba(0,51,160,.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 20px; }
.vendor-step h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.vendor-step p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* Challenges section (light bg) */
.challenges-section { padding: 80px 28px; background: var(--bg-light); }
.challenges-inner { max-width: 1200px; margin: 0 auto; }
.challenges-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.challenge-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.challenge-card:hover { border-color: rgba(0,51,160,.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.challenge-num { font-size: 12px; font-weight: 700; color: var(--royal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.challenge-card h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.challenge-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* Supplier logos */
.sp-logo img { filter: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES FOR SUB-PAGE COMPONENTS
   ══════════════════════════════════════════════════════════════ */
@media(max-width:900px) {
  .domain-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .advisory-inner { grid-template-columns: 1fr; gap: 36px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .vendor-steps { grid-template-columns: 1fr; }
  .challenges-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .criteria-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .challenges-grid { grid-template-columns: 1fr; }
}
