/* ========= WCG Design Tokens ========= */
:root {
  /* Brand colours */
  --color-primary:       #28A0CF;
  --color-primary-dark:  #1e85b0;
  --color-primary-light: #e8f6fc;
  --color-secondary:     #0f172a;
  --color-accent:        #FFB800;

  /* Text */
  --color-text:          #1e293b;
  --color-text-muted:    #64748b;
  --color-text-light:    #94a3b8;

  /* Surfaces */
  --color-bg:            #ffffff;
  --color-bg-subtle:     #f8fafc;
  --color-bg-dark:       #0f172a;
  --color-border:        #e2e8f0;

  /* Typography */
  --font-sans:    'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Ubuntu', sans-serif;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.16);

  /* Transitions */
  --transition:      all .2s ease;
  --transition-slow: all .4s ease;

  /* Layout */
  --container-max: 1200px;
  --section-py:    80px;
  --section-py-sm: 48px;
}

/* ── Global accessibility ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Shared section styles ─────────────────────────── */
.section-py   { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm { padding-top: var(--section-py-sm); padding-bottom: var(--section-py-sm); }
.section-bg-subtle { background: var(--color-bg-subtle); }

/* ── Page header banner ────────────────────────────── */
.wcg-page-header {
  position: relative;
  background: var(--color-secondary);
  padding: 72px 0 56px;
  overflow: hidden;
}
.wcg-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.82) 0%, rgba(40,160,207,.35) 100%);
  z-index: 1;
}
.wcg-page-header-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .35;
}
.wcg-page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.wcg-page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}
.wcg-page-header p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0;
  line-height: 1.7;
}
.wcg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}
.wcg-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.wcg-breadcrumb a:hover { color: #fff; }
.wcg-breadcrumb span { color: rgba(255,255,255,.4); }
.wcg-breadcrumb .current { color: rgba(255,255,255,.95); font-weight: 500; }

/* ── Legacy hero banners: button spacing ────────────────── */
.servicesbamnerheight .hero__caption .hero__btn,
.full-banner-video .banner-inner-text .hero__btn { margin-top: 28px; }

/* ── Legacy hero banners: force white on all text children ── */
/* Covers plain-text divs (dangerouslySetInnerHTML) and any nested elements */
.servicesbamnerheight .hero__caption { color: #fff; }
.servicesbamnerheight .hero__caption h1,
.servicesbamnerheight .hero__caption h2,
.servicesbamnerheight .hero__caption h3,
.servicesbamnerheight .hero__caption p,
.servicesbamnerheight .hero__caption div,
.servicesbamnerheight .hero__caption span,
.servicesbamnerheight .hero__caption li { color: #fff !important; }

.full-banner-video .banner-inner-text { color: #fff; }
.full-banner-video .banner-inner-text h1,
.full-banner-video .banner-inner-text h2,
.full-banner-video .banner-inner-text p,
.full-banner-video .banner-inner-text div,
.full-banner-video .banner-inner-text span,
.full-banner-video .banner-inner-text li { color: #fff !important; }

/* ── Section title ─────────────────────────────────── */
.wcg-section-title {
  margin-bottom: 48px;
}
.wcg-section-title .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.wcg-section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 16px;
}
.wcg-section-title p {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
}
.wcg-section-title.center { text-align: center; }
.wcg-section-title.center p { margin-left: auto; margin-right: auto; }

/* ── Blog card ─────────────────────────────────────── */
.wcg-blog-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wcg-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.wcg-blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-subtle);
}
.wcg-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.wcg-blog-card:hover .wcg-blog-card-img img { transform: scale(1.05); }
.wcg-blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.wcg-blog-card-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-decoration: none;
}
.wcg-blog-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0 0 10px;
}
.wcg-blog-card h3 a { color: inherit; text-decoration: none; }
.wcg-blog-card h3 a:hover { color: var(--color-primary); }
.wcg-blog-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}
.wcg-blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  margin-top: auto;
}
.wcg-blog-card-meta a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}
.wcg-blog-card-meta a:hover { text-decoration: underline; }

/* ── Shared CTA button ─────────────────────────────── */
.wcg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.wcg-btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.wcg-btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}
.wcg-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.wcg-btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.wcg-btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.wcg-btn-white:hover {
  background: transparent;
  color: #fff;
}

/* ── Prose content (CMS HTML) ──────────────────────── */
.wcg-prose {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  max-width: 760px;
}
.wcg-prose h1, .wcg-prose h2, .wcg-prose h3, .wcg-prose h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 1.4em 0 .5em;
  color: var(--color-secondary);
}
.wcg-prose h2 { font-size: 1.6em; }
.wcg-prose h3 { font-size: 1.3em; }
.wcg-prose p { margin: 0 0 1em; }
.wcg-prose a { color: var(--color-primary); }
.wcg-prose ul, .wcg-prose ol { padding-left: 1.5em; margin-bottom: 1em; }
.wcg-prose li { margin-bottom: .4em; }
.wcg-prose blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: var(--color-primary-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-text-muted);
  font-style: italic;
}
.wcg-prose img { max-width: 100%; border-radius: var(--radius-md); margin: 1em 0; }
.wcg-prose table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.wcg-prose th, .wcg-prose td { padding: 10px 14px; border: 1px solid var(--color-border); text-align: left; }
.wcg-prose th { background: var(--color-bg-subtle); font-weight: 600; }

@media (max-width: 768px) {
  :root { --section-py: 52px; }
  .wcg-page-header { padding: 52px 0 40px; }
}

/* Footer */
.footer-social-icon {
  font-size: 16px;
  color: #444;
  transition: color .2s;
  text-decoration: none;
}
.footer-social-icon:hover { color: var(--color-primary); }

/* Footer link hover */
.footer-link-hover:hover { color: var(--color-primary) !important; }

/* ── CAREERS (cr-*) ────────────────────────────────────── */
.cr-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.cr-section-header { text-align: center; margin-bottom: 52px; }
.cr-eyebrow {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-primary); margin-bottom: 12px;
}
.cr-h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #111827;
  margin: 0; letter-spacing: -.02em;
}

/* Benefits */
.cr-benefits { background: #fff; padding: 96px 24px; }
.cr-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cr-benefit-card {
  padding: 32px 24px; border: 1px solid var(--color-border); border-radius: 8px;
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.cr-benefit-card:hover {
  box-shadow: 0 8px 32px rgba(4,77,105,.1);
  border-color: var(--color-primary); transform: translateY(-3px);
}
.cr-benefit-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(40,160,207,.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.cr-benefit-icon i { font-size: 20px; color: var(--color-primary); }
.cr-benefit-title { font-size: 16px; font-weight: 700; color: #111827; margin: 0 0 8px; }
.cr-benefit-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; margin: 0; }

/* Job listings */
.cr-jobs { background: var(--color-bg-subtle); padding: 96px 24px; }
.cr-jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cr-job-card {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px 28px; background: #fff;
  border: 1px solid var(--color-border); border-radius: 8px; text-decoration: none;
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.cr-job-card:hover {
  box-shadow: 0 8px 32px rgba(4,77,105,.1);
  border-color: var(--color-primary); transform: translateY(-3px);
}
.cr-job-top { flex: 1; }
.cr-job-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.cr-badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 3px;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
.cr-badge--exp { background: rgba(40,160,207,.1); color: #044D69; }
.cr-badge--openings { background: rgba(16,185,129,.1); color: #065f46; }
.cr-job-title { font-size: 17px; font-weight: 700; color: #111827; margin: 0 0 12px; line-height: 1.3; }
.cr-job-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.65; margin: 0 0 20px; overflow: hidden; max-height: 66px; }
.cr-job-desc * { font-size: 13px !important; color: var(--color-text-muted) !important; margin: 0 !important; }
.cr-job-link { font-size: 13px; font-weight: 700; color: var(--color-primary); display: block; padding-top: 4px; }

/* Empty state */
.cr-empty {
  text-align: center; padding: 64px 32px;
  background: #fff; border: 1px solid var(--color-border); border-radius: 8px;
  max-width: 520px; margin: 0 auto;
}
.cr-empty-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(40,160,207,.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.cr-empty-icon i { font-size: 26px; color: var(--color-primary); }
.cr-empty-title { font-size: 20px; font-weight: 700; color: #111827; margin: 0 0 12px; }
.cr-empty-desc { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin: 0 0 28px; }
.cr-empty-cta {
  display: inline-flex; align-items: center;
  background: var(--color-primary); color: #fff;
  padding: 13px 28px; border-radius: 4px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .15s;
}
.cr-empty-cta:hover { background: #1d8ab5; color: #fff; transform: translateY(-1px); }

/* CTA band */
.cr-cta { background: #044D69; padding: 72px 24px; }
.cr-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cr-cta-h2 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; color: #fff; margin: 0 0 8px; line-height: 1.3; }
.cr-cta-sub { font-size: 15px; color: rgba(255,255,255,.72); margin: 0; line-height: 1.6; }
.cr-cta-email { color: #28A0CF; text-decoration: none; }
.cr-cta-email:hover { text-decoration: underline; }
.cr-cta-btn {
  flex-shrink: 0; display: inline-flex; align-items: center;
  background: #28A0CF; color: #fff;
  padding: 14px 28px; border-radius: 4px;
  font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.cr-cta-btn:hover { background: #1d8ab5; color: #fff; transform: translateY(-1px); }

@media (max-width: 1024px) {
  .cr-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-jobs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cr-benefits, .cr-jobs { padding: 64px 20px; }
  .cr-cta { padding: 56px 20px; }
  .cr-benefits-grid, .cr-jobs-grid { grid-template-columns: 1fr; }
  .cr-cta-inner { flex-direction: column; align-items: flex-start; }
  .cr-cta-btn { width: 100%; justify-content: center; }
}

/* ── LISTING PAGES (lp-*) ──────────────────────────────── */
.lp-section { background: #fff; padding: 96px 24px; }
.lp-section--alt { background: var(--color-bg-subtle); }
.lp-inner { max-width: 1160px; margin: 0 auto; }

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

/* Card shell */
.lp-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--color-border); border-radius: 8px;
  overflow: hidden; background: #fff; text-decoration: none;
  transition: box-shadow .25s, border-color .25s, transform .2s;
}
.lp-card:hover {
  box-shadow: 0 8px 36px rgba(4,77,105,.1);
  border-color: var(--color-primary); transform: translateY(-4px);
}

/* Card image */
.lp-card-img { height: 200px; overflow: hidden; flex-shrink: 0; }
.lp-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.lp-card:hover .lp-card-img img { transform: scale(1.05); }

/* Card icon (publications, info sheets without image) */
.lp-card-icon-wrap {
  height: 156px; display: flex; align-items: center; justify-content: center;
  background: rgba(40,160,207,.05); flex-shrink: 0;
  border-bottom: 1px solid var(--color-border);
}
.lp-card-icon {
  width: 64px; height: 64px; border-radius: 12px;
  background: rgba(40,160,207,.12);
  display: flex; align-items: center; justify-content: center;
}
.lp-card-icon i { font-size: 26px; color: var(--color-primary); }

/* Card body */
.lp-card-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.lp-card-badge {
  display: inline-block; align-self: flex-start;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-primary); background: rgba(40,160,207,.1);
  padding: 3px 9px; border-radius: 3px; margin-bottom: 10px;
}
.lp-card-title {
  font-size: 16px; font-weight: 700; color: #111827;
  margin: 0 0 10px; line-height: 1.4; flex: 1;
}
.lp-card-desc {
  font-size: 13px; color: var(--color-text-muted); line-height: 1.65;
  margin: 0 0 18px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lp-card-link {
  font-size: 13px; font-weight: 700; color: var(--color-primary);
  text-decoration: none; display: inline-flex; align-items: center;
  align-self: flex-start; margin-top: auto; transition: color .2s;
}
.lp-card-link:hover { color: #1d8ab5; }

/* Video thumbnail */
.lp-video-thumb { position: relative; overflow: hidden; flex-shrink: 0; background: #000; }
.lp-video-thumb img { width: 100%; display: block; transition: transform .4s ease, opacity .3s; }
.lp-card:hover .lp-video-thumb img { transform: scale(1.04); opacity: .88; }
.lp-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; transition: transform .2s;
}
.lp-play-btn i { font-size: 17px; color: var(--color-primary); margin-left: 3px; }
.lp-card:hover .lp-play-btn { transform: translate(-50%, -50%) scale(1.1); }

/* Empty state */
.lp-empty { text-align: center; padding: 80px 24px; color: var(--color-text-muted); }
.lp-empty i { font-size: 44px; color: #D1D5DB; display: block; margin-bottom: 16px; }
.lp-empty p { font-size: 16px; margin: 0; }

/* CTA band */
.lp-cta { background: #044D69; padding: 72px 24px; text-align: center; }
.lp-cta-h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 700; color: #fff; margin: 0 0 10px; }
.lp-cta-sub { font-size: 16px; color: rgba(255,255,255,.72); margin: 0 0 30px; max-width: 560px; margin-left: auto; margin-right: auto; }
.lp-cta-btn {
  display: inline-flex; align-items: center;
  background: #28A0CF; color: #fff;
  padding: 14px 32px; border-radius: 4px;
  font-size: 15px; font-weight: 700; text-decoration: none; font-family: 'Poppins', sans-serif;
  transition: background .2s, transform .15s;
}
.lp-cta-btn:hover { background: #1d8ab5; color: #fff; transform: translateY(-1px); }

@media (max-width: 900px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) {
  .lp-section { padding: 64px 20px; }
  .lp-grid { grid-template-columns: 1fr; }
  .lp-cta { padding: 56px 20px; }
}

/* ── CMS page banner overlays ──────────────────────────── */
.services-banner .servicesbamnerheight {
  position: relative;
}
.services-banner .servicesbamnerheight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.68) 0%, rgba(0,56,80,.55) 100%);
  z-index: 0;
}
.services-banner .servicesbamnerheight .container {
  position: relative;
  z-index: 1;
}

/* Full-banner-video overlay boost */
.full-banner-video .shadow {
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.6) 100%);
}

/* ── CONTACT US (cu-*) ─────────────────────────────────── */
.cu-wrap { background: #F4F6F9; padding: 72px 24px; }
.cu-panel {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 3fr;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 20px 64px rgba(0,0,0,.1);
}

/* Left info panel */
.cu-info {
  background: #044D69; padding: 56px 44px;
  display: flex; flex-direction: column;
}
.cu-info-tagline {
  font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.75;
  margin: 0 0 36px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.cu-info-items { display: flex; flex-direction: column; gap: 26px; flex: 1; }
.cu-info-item { display: flex; gap: 14px; align-items: flex-start; }
.cu-info-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cu-info-icon i { font-size: 13px; color: #28A0CF; }
.cu-info-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.45); margin: 0 0 4px;
}
.cu-info-text { font-size: 14px; color: rgba(255,255,255,.82); margin: 0; line-height: 1.5; }
.cu-info-link { text-decoration: none; color: rgba(255,255,255,.82); transition: color .2s; }
.cu-info-link:hover { color: #28A0CF; }

.cu-social {
  display: flex; gap: 10px; margin-top: 36px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.cu-social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 13px; text-decoration: none;
  transition: background .2s, color .2s;
}
.cu-social-icon:hover { background: #28A0CF; color: #fff; }

/* Right form panel */
.cu-form-panel { background: #fff; padding: 56px 52px; }
.cu-form-title { font-size: 24px; font-weight: 700; color: #111827; margin: 0 0 6px; }
.cu-form-sub { font-size: 14px; color: #6B7280; margin: 0 0 32px; }
.cu-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cu-field { display: flex; flex-direction: column; margin-bottom: 18px; }
.cu-label { font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.cu-required { color: #EF4444; margin-left: 2px; }
.cu-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #D1D5DB; border-radius: 4px;
  font-size: 14px; font-family: 'Poppins', sans-serif; color: #111827;
  background: #F9FAFB; outline: none; box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.cu-input:focus { border-color: #28A0CF; background: #fff; box-shadow: 0 0 0 3px rgba(40,160,207,.1); }
.cu-input--error { border-color: #EF4444; }
.cu-input--error:focus { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.cu-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.cu-textarea { resize: vertical; min-height: 130px; }
.cu-error { font-size: 12px; color: #EF4444; margin-top: 4px; }
.cu-error--form { font-size: 14px; margin-bottom: 14px; }
.cu-submit {
  width: 100%; padding: 14px 32px;
  background: #28A0CF; color: #fff;
  border: none; border-radius: 4px;
  font-size: 15px; font-weight: 700; font-family: 'Poppins', sans-serif;
  cursor: pointer; margin-top: 6px;
  transition: background .2s, transform .15s;
}
.cu-submit:hover:not(:disabled) { background: #1d8ab5; transform: translateY(-1px); }
.cu-submit:disabled { opacity: .65; cursor: not-allowed; }

@media (max-width: 900px) {
  .cu-panel { grid-template-columns: 1fr; }
  .cu-info { padding: 40px 32px; }
  .cu-form-panel { padding: 40px 32px; }
}
@media (max-width: 580px) {
  .cu-wrap { padding: 0; }
  .cu-panel { border-radius: 0; box-shadow: none; }
  .cu-info, .cu-form-panel { padding: 40px 20px; }
  .cu-form-row { grid-template-columns: 1fr; gap: 0; }
}
.full-banner-video .banner-inner-text { position: relative; z-index: 2; }
.banner-inner-text h1,
.banner-inner-text p { color: #fff !important; text-shadow: 0 2px 6px rgba(0,0,0,.5); }

/* ── About Us (au-*) ─────────────────────────────────────────── */
.au-page { font-family: var(--font-sans); }
.au-page * { box-sizing: border-box; }

.au-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #28A0CF;
  margin-bottom: 10px;
}
.au-section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 18px;
}

/* ── Stats strip (full-width is fine here) ── */
.au-stats { background: #044D69; padding: 52px 24px; }
.au-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.au-stat {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.au-stat:last-child { border-right: none; }
.au-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #28A0CF;
  line-height: 1;
  margin-bottom: 8px;
}
.au-stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Contained split sections ── */
.au-split { padding: 72px 24px; }
.au-split--light { background: #fff; }
.au-split--dark  { background: #f8fafc; }
.au-split-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.au-split--reverse .au-split-inner { direction: rtl; }
.au-split--reverse .au-split-text  { direction: ltr; }
.au-split-img {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.au-split-text { display: flex; flex-direction: column; }
.au-split-text p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 14px;
}
.au-split-text p:last-child { margin-bottom: 0; }

/* ── Mission & Vision ── */
.au-mv { background: #f8fafc; padding: 72px 24px; }
.au-mv-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.au-mv-img-wrap {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.au-mv-cards-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.au-mv-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #28A0CF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.au-mv-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.au-mv-icon--mission { background: #e8f6fc; color: #28A0CF; }
.au-mv-icon--vision  { background: #fff8e6; color: #FFB800; }
.au-mv-h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}
.au-mv-p {
  color: #64748b;
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Outcomes section ── */
.au-outcomes { background: #044D69; padding: 72px 24px; }
.au-outcomes-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.au-outcomes-text { display: flex; flex-direction: column; }
.au-outcomes-text .au-eyebrow { color: rgba(255,255,255,0.7); }
.au-outcomes-text .au-section-h2 { color: #fff; }
.au-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.au-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.au-check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(40,160,207,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28A0CF;
  margin-top: 1px;
}
.au-outcomes-img {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── Executive Team ── */
.au-team { background: #fff; padding: 72px 24px; }
.au-team-inner { max-width: 1160px; margin: 0 auto; }
.au-team-header { text-align: center; margin-bottom: 48px; }
.au-team-sub {
  color: #64748b;
  font-size: 1rem;
  max-width: 560px;
  margin: 8px auto 0;
  line-height: 1.7;
}
.au-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.au-bio-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 32px;
  border-top: 4px solid #28A0CF;
}
.au-bio-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}
.au-bio-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #28A0CF;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 16px;
}
.au-bio-text {
  color: #64748b;
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
}

/* ── CTA ── */
.au-cta {
  background: linear-gradient(135deg, #044D69 0%, #28A0CF 100%);
  padding: 80px 24px;
  text-align: center;
}
.au-cta-inner { max-width: 680px; margin: 0 auto; }
.au-cta-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}
.au-cta-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin: 0 0 32px;
  line-height: 1.7;
}
.au-cta-btn {
  display: inline-block;
  background: #fff;
  color: #044D69;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.au-cta-btn:hover {
  background: #FFB800;
  color: #0f172a;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .au-split-inner,
  .au-mv-inner,
  .au-outcomes-inner { grid-template-columns: 1fr; gap: 36px; }
  .au-split--reverse .au-split-inner { direction: ltr; }
  .au-split-img,
  .au-mv-img-wrap,
  .au-outcomes-img { height: 280px; }
  .au-team-grid { grid-template-columns: 1fr; }
  .au-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .au-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .au-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .au-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .au-split,
  .au-mv,
  .au-outcomes,
  .au-team { padding: 52px 20px; }
  .au-stats-inner { grid-template-columns: 1fr 1fr; }
  .au-mv-card { flex-direction: column; }
}

/* ── Our Services v2 (os-*) ──────────────────────────────────── */
.os-page { font-family: var(--font-sans); }
.os-page * { box-sizing: border-box; }

.os-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #28A0CF;
  margin-bottom: 10px;
}

/* ── Hero ── */

/* ── Services Explorer ── */
.os-explorer { background: #f8fafc; padding: 80px 24px; }
.os-explorer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.os-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.os-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  width: 100%;
  font-family: var(--font-sans);
}
.os-sidebar-btn:last-child { border-bottom: none; }
.os-sidebar-btn:hover { background: #f8fafc; }
.os-sidebar-btn--active { background: #EBF7FE; }
.os-sidebar-icon-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: background 0.15s, color 0.15s;
}
.os-sidebar-btn--active .os-sidebar-icon-wrap {
  background: #28A0CF;
  color: #fff;
}
.os-sidebar-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.3;
  flex: 1;
}
.os-sidebar-btn--active .os-sidebar-label { color: #044D69; }
.os-sidebar-chevron { flex-shrink: 0; color: #28A0CF; }

.os-content { display: flex; flex-direction: column; gap: 20px; }
.os-content-header { display: flex; align-items: center; justify-content: space-between; }
.os-content-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #044D69;
  text-decoration: none;
}
.os-content-cat-link:hover { color: #28A0CF; }

.os-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.os-svc-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.os-svc-card:hover {
  box-shadow: 0 8px 24px rgba(40,160,207,0.15);
  transform: translateY(-3px);
  border-color: #28A0CF;
}
.os-svc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EBF7FE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28A0CF;
  flex-shrink: 0;
}
.os-svc-card:hover .os-svc-card-icon { background: #28A0CF; color: #fff; }
.os-svc-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}
.os-svc-card-watermark {
  position: absolute;
  bottom: -8px;
  right: -8px;
  opacity: 0.05;
  color: #044D69;
  transform: scale(2.5);
  pointer-events: none;
}

/* ── Testimonials ── */
.os-testi { background: #fff; padding: 80px 24px; }
.os-testi-inner { max-width: 1160px; margin: 0 auto; }
.os-testi-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin: 0 0 48px;
}
.os-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.os-testi-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid #28A0CF;
}
.os-testi-quote { flex-shrink: 0; }
.os-testi-text {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}
.os-testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.os-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #044D69;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.os-testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1e293b;
  margin: 0;
}
.os-testi-org {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}
.os-stars { display: flex; gap: 2px; margin-left: auto; }

/* ── Contact CTA section ── */
.os-cta-section { background: #044D69; padding: 80px 24px; }
.os-cta-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.os-cta-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.os-cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin: 0 0 28px;
  line-height: 1.6;
}
.os-cta-quote {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid #28A0CF;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.65;
}
.os-cta-quote-attr {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin: 0 0 12px;
}

/* Contact form */
.os-contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.os-cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.os-cf-input,
.os-cf-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.os-cf-input:focus,
.os-cf-textarea:focus { border-color: #28A0CF; }
.os-cf-textarea { resize: vertical; }
.os-cf-legal {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}
.os-cf-legal a { color: #28A0CF; text-decoration: none; }
.os-cf-submit {
  background: #28A0CF;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  font-family: var(--font-sans);
}
.os-cf-submit:hover { background: #044D69; }
.os-cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.os-cf-success {
  background: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: #475569;
  font-size: 1rem;
}
.os-cf-error { color: #ef4444; font-size: 0.85rem; margin: 0; }

/* Download strip */
.os-download-strip {
  background: #f8fafc;
  padding: 32px 24px;
  border-top: 1px solid #e2e8f0;
}
.os-download-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.os-download-text {
  color: #475569;
  font-size: 0.95rem;
  margin: 0;
}
.os-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #044D69;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.os-download-btn:hover { background: #28A0CF; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .os-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .os-hero-inner,
  .os-cta-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .os-hero-card { left: 0; bottom: -16px; }
  .os-explorer-inner { grid-template-columns: 1fr; }
  .os-sidebar { flex-direction: row; flex-wrap: wrap; }
  .os-sidebar-btn { flex: 1 1 45%; border-right: 1px solid #f1f5f9; }
  .os-testi-grid { grid-template-columns: 1fr; }
  .os-download-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 580px) {
  .os-hero, .os-explorer, .os-testi, .os-cta-section { padding: 52px 20px; }
  .os-hero-img-wrap { height: 280px; }
  .os-cards-grid { grid-template-columns: 1fr; }
  .os-cf-row { grid-template-columns: 1fr; }
  .os-sidebar-btn { flex: 1 1 100%; }
}

.nl-footer-input::placeholder { color: rgba(255,255,255,0.75); }

/* ─────────────────────────────────────────────────
   BLOG LISTING PAGE  (bl-*)
───────────────────────────────────────────────── */
.bl-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.bl-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.bl-count {
  font-size: 14px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.bl-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: 60px 0;
}

/* Pagination */
.bl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.bl-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  transition: var(--transition);
}
.bl-page-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.bl-page-btn--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.bl-page-btn--active:hover { color: #fff; }

.bl-page-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  transition: var(--transition);
}
.bl-page-nav:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* Category filter pills */
.bl-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bl-filter-label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.bl-filter-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  transition: var(--transition);
}
.bl-filter-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.bl-filter-pill--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.bl-filter-pill--active:hover { color: #fff; }

/* Blog responsive */
@media (max-width: 768px) {
  .bl-controls { flex-direction: column; align-items: flex-start; }
  .bl-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .bl-container { padding: 48px 16px 60px; }
}

/* ─────────────────────────────────────────────────
   SEARCH PAGE  (srch-*)
───────────────────────────────────────────────── */
.srch-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.srch-box-wrap {
  max-width: 600px;
  margin: 0 auto 48px;
}
.srch-summary {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.srch-prompt {
  text-align: center;
  color: var(--color-text-muted);
  padding: 40px 0;
}
.srch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.srch-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.srch-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.srch-card-img {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.srch-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.srch-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
}
.srch-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.srch-card-title a { color: var(--color-text); text-decoration: none; }
.srch-card-title a:hover { color: var(--color-primary); }
.srch-card-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.srch-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.srch-card-date { font-size: 12px; color: var(--color-text-light); }
.srch-card-read { font-size: 13px; font-weight: 600; color: var(--color-primary); text-decoration: none; }
.srch-card-read:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .srch-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .srch-container { padding: 48px 16px 60px; }
}

/* ─────────────────────────────────────────────────
   THANK YOU PAGE  (ty-*)
───────────────────────────────────────────────── */
.ty-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-subtle);
  padding: 80px 24px;
}
.ty-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  padding: 64px 56px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.ty-icon {
  width: 72px;
  height: 72px;
  background: rgba(40,160,207,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.ty-h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
}
.ty-message {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 36px;
}
.ty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}
.ty-btn:hover { background: #1d8ab5; color: #fff; transform: translateY(-1px); }
.ty-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.ty-link {
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.ty-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .ty-card { padding: 48px 28px; }
}

/* ─────────────────────────────────────────────────
   INDUSTRY SECTORS PAGE  (isp-*)
───────────────────────────────────────────────── */

/* Differentiator bar */
.isp-diffbar {
  background: #044D69;
}
.isp-diffbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.isp-diff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.isp-diff-item:last-child { border-right: none; }
.isp-diff-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.isp-diff-icon i { font-size: 18px; color: #28A0CF; }
.isp-diff-stat {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.isp-diff-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Intro */
.isp-intro {
  background: var(--color-bg-subtle);
  padding: 72px 24px 60px;
  text-align: center;
}
.isp-intro-inner { max-width: 720px; margin: 0 auto; }
.isp-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.isp-intro-h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 18px;
  line-height: 1.2;
}
.isp-intro-sub {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Grid section */
.isp-grid-section {
  background: var(--color-bg-subtle);
  padding: 0 24px 88px;
}
.isp-grid-inner { max-width: 1160px; margin: 0 auto; }
.isp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.isp-card {
  position: relative;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.isp-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  transform: translateY(-4px);
}

.isp-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.isp-card:hover .isp-card-img { transform: scale(1.07); }

.isp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(4,77,105,0.45) 45%,
    rgba(0,0,0,0.82) 100%
  );
  transition: background 0.35s ease;
}
.isp-card:hover .isp-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(4,77,105,0.55) 40%,
    rgba(0,0,0,0.90) 100%
  );
}

.isp-card-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.isp-card-icon-wrap {
  width: 38px; height: 38px;
  background: rgba(40,160,207,0.85);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background 0.25s;
}
.isp-card:hover .isp-card-icon-wrap { background: #28A0CF; }
.isp-card-icon-wrap i { font-size: 15px; color: #fff; }

.isp-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Description — hidden by default, slides up on hover */
.isp-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.35s ease;
}
.isp-card:hover .isp-card-desc {
  max-height: 90px;
  opacity: 1;
  margin-top: 10px;
}

/* Tags */
.isp-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease 0.05s, opacity 0.3s ease 0.05s, margin 0.35s ease;
}
.isp-card:hover .isp-card-tags {
  max-height: 40px;
  opacity: 1;
  margin-top: 10px;
}
.isp-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #28A0CF;
  background: rgba(40,160,207,0.18);
  border: 1px solid rgba(40,160,207,0.35);
  padding: 3px 8px;
  border-radius: 4px;
}

/* CTA link */
.isp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #28A0CF;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease 0.1s, opacity 0.3s ease 0.1s, margin 0.35s ease;
}
.isp-card:hover .isp-card-cta {
  max-height: 32px;
  opacity: 1;
  margin-top: 14px;
}

/* Bottom CTA */
.isp-cta {
  background: #044D69;
  padding: 80px 24px;
}
.isp-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.isp-cta-text { flex: 1; min-width: 280px; }
.isp-cta-h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}
.isp-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}
.isp-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.isp-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
}
.isp-cta-btn:hover { transform: translateY(-2px); }
.isp-cta-btn--primary {
  background: #28A0CF;
  color: #fff;
  border: 2px solid #28A0CF;
}
.isp-cta-btn--primary:hover { background: #1d8ab5; border-color: #1d8ab5; color: #fff; }
.isp-cta-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.isp-cta-btn--ghost:hover { border-color: #28A0CF; color: #28A0CF; }

/* Responsive */
@media (max-width: 1024px) {
  .isp-grid { grid-template-columns: repeat(2, 1fr); }
  .isp-diffbar-inner { grid-template-columns: repeat(2, 1fr); }
  .isp-diff-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .isp-diff-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .isp-diff-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 700px) {
  .isp-grid { grid-template-columns: 1fr; gap: 16px; }
  .isp-card { height: 320px; }
  .isp-cta-inner { flex-direction: column; }
  .isp-cta-actions { width: 100%; }
  .isp-cta-btn { flex: 1; justify-content: center; }
  .isp-grid-section { padding-bottom: 60px; }
  .isp-diffbar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .isp-intro { padding: 52px 20px 44px; }
  .isp-card-desc, .isp-card-tags, .isp-card-cta {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 8px !important;
  }
}

/* ── Mobile header ─────────────────────────────────── */
.mean-bar {
  background: #0f172a !important;
  height: 60px !important;
  min-height: 60px !important;
}
.mean-bar .mobile-menu-nav-back::before {
  background-color: #0f172a !important;
}
.mean-bar .mobile-menu-nav-back {
  height: 60px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  align-items: center !important;
}
.mob-search-btn {
  position: absolute !important;
  right: 62px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  z-index: 1000000 !important;
}
.mob-search-btn img {
  filter: brightness(0) invert(1) !important;
  width: 20px !important;
  height: 20px !important;
  display: block !important;
}
.mean-bar .meanmenu-reveal {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 14px !important;
  padding: 0 !important;
  width: 22px !important;
  height: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.mob-search-btn {
  right: 52px !important;
}
.mean-bar #toggle {
  margin: 0 !important;
  width: 22px !important;
  height: auto !important;
}
.mean-bar #toggle div {
  background: #fff !important;
  height: 2px !important;
  margin: 4px auto !important;
  border-radius: 2px !important;
}

/* Bold nav links on homepage when not scrolled */
body:has(.home) .sticky-on .navbar-layout2:not(.active) nav.template-main-menu > ul > li > a {
  font-weight: 700 !important;
}
