
:root{
  --ink:#0b1f3a;
  --text:#334155;
  --muted:#475569;
  --border:#e2e8f0;
  --border-strong:#cbd5e1;
  --bg:#ffffff;
  --alt:#f8fafc;
  --shadow:rgba(0,0,0,0.05);
  --radius:16px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

/* Header */
.site-header{
  position:sticky; top:0;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--border);
  z-index:10;
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  gap:18px;
}
.brand img{height:44px;width:auto;max-width:320px;object-fit:contain;display:block;filter:none;}
.nav{display:flex;flex-wrap:wrap;gap:14px;justify-content:flex-end}
.nav a{
  text-decoration:none;
  color:var(--ink);
  font-weight:650;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{background:var(--alt)}
.nav a.is-active{background:var(--alt); border:1px solid var(--border)}

/* Hero */
.hero{
  padding:56px 0 28px;
  border-bottom:1px solid var(--border);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:18px;
  align-items:start;
}
.hero-subtext {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.eyebrow{
  margin:0 0 10px;
  color:var(--muted);
  font-weight:650;
  letter-spacing:0.2px;
}
h1{
  margin:0;
  color:var(--ink);
  font-size:42px;
  line-height:1.08;
  letter-spacing:-0.3px;
}
.lead{
  margin:14px 0 0;
  color:var(--text);
  max-width:70ch;
  font-size:16px;
  line-height:1.55;
}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  text-decoration:none;font-weight:700;
  border:1px solid var(--border-strong);
}
.btn-primary{background:var(--ink); color:white; border-color:var(--ink)}
.btn-primary:hover{opacity:0.92}
.btn-secondary{background:white; color:var(--ink)}
.btn-secondary:hover{background:var(--alt)}
.link{color:var(--ink); text-decoration:none; font-weight:650}
.link:hover{text-decoration:underline}

/* Trust strip */
.trust-strip{
  margin-top:18px;
  display:flex;flex-wrap:wrap;gap:8px;
  align-items:center;
  color:var(--muted);
  font-size:13px;
}
.trust-pill{
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:white;
  color:var(--ink);
  font-weight:650;
}

/* Cards */
.hero-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 1px 2px var(--shadow);
  background:white;
}
.card-title{margin:0 0 10px;color:var(--ink);font-size:16px}
.checklist{margin:0;padding-left:18px}
.checklist li{margin:7px 0; color:var(--text)}

/* Sections */
.section{padding:44px 0}
.section-alt{background:var(--alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section-head h2{margin:0;color:var(--ink);font-size:26px}
.section-head .muted{margin:8px 0 0}

h2{color:var(--ink)}
h3{color:var(--ink)}
.muted{color:var(--muted)}

/* Grids */
.grid-2{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.grid-3{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media(min-width:900px){
  .grid-2{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:1fr 1fr 1fr}
}
@media(max-width:980px){
  .hero-inner{grid-template-columns:1fr}
  h1{font-size:36px}
}

/* Generic card */
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 1px 2px var(--shadow);
  background:white;
}
.bullets{margin:10px 0 0; padding-left:18px}
.bullets li{margin:7px 0}
.bullets-tight li{margin:6px 0}
.section-cta{margin-top:18px}

/* Callout */
.callout{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:white;
  box-shadow:0 1px 2px var(--shadow);
}

/* Mini cards */
.mini{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:white;
  box-shadow:0 1px 2px var(--shadow);
}
.mini h3{margin:0 0 10px;font-size:16px}

/* Page hero */
.page-hero{
  padding:38px 0 10px;
  border-bottom:1px solid var(--border);
}
.page-hero h1{font-size:34px; margin:0; color:var(--ink)}
.page-hero .muted{margin:10px 0 0}

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  padding:20px 0;
  background:white;
}
.footer-inner{
  display:flex;justify-content:space-between;align-items:center;
  gap:12px;flex-wrap:wrap;
}
.footer-brand{margin:0;color:var(--ink);font-weight:800}
.footer-muted{margin:6px 0 0;color:var(--muted);font-size:13px}
.footer-links{display:flex;gap:10px;align-items:center;color:var(--muted);font-size:13px}
.footer-links a{color:var(--ink);text-decoration:none;font-weight:650}
.footer-links a:hover{text-decoration:underline}
.footer-sep{color:var(--border-strong)}


/* Icon-first branding */
.brand-icon{
  height:32px;
  width:auto;
  max-width:48px;
  object-fit:contain;
}

/* Icon accents */
.brand-logo{height:64px;width:auto;display:block;object-fit:contain}
@media(max-width:600px){.brand-logo{height:48px}}


/* Remove decorative bullets from section headers */
.section-title,
.section-heading,
h2.section-title,
h2.section-heading{
  list-style: none;
  padding-left: 0;
}

.section-title::before,
.section-heading::before{
  content: none !important;
}


/* Remove the dot before 'What We Do' (exact selector) */
.section-head h2::before{
  content: none !important;
  display: none !important;
}




.social-links{
  display:flex;
  gap:12px;
  align-items:center;
}

.social-links a{
  color: var(--ink);
  opacity:0.85;
  line-height:0;
  transition:opacity .15s ease, transform .15s ease;
}

.social-links a:hover{
  opacity:1;
  transform:translateY(-1px);
}

.social-icon{
  width:18px;
  height:18px;
  fill:currentColor;
}

@media (max-width: 768px){
  .social-links{ display:none; }
}




.social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:10px;
  background:#f1f4f9;
  color: var(--ink);
  opacity:0.95;
  transition:transform .15s ease, background .15s ease, opacity .15s ease;
}

.social-links a:hover{
  background:#e6ecf7;
  transform:translateY(-1px);
  opacity:1;
}

.social-icon{
  width:18px;
  height:18px;
  fill:currentColor;
}

@media (max-width: 768px){
  .social-links{ display:none; }
}







/* LinkedIn: brand blue */
.social-links a[aria-label="LinkedIn"]{
  color:#0A66C2; /* Official LinkedIn Blue */
}

/* Icon sizes */
.social-links .social-icon{
  width:18px;
  height:18px;
}

/* LinkedIn icon larger inside same bubble */
.social-links a[aria-label="LinkedIn"] .social-icon{
  width:30px;
  height:30px;
}


/* Footer social icons */
.footer-social{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:12px;
}


/* === Social Icons (Header + Footer) === */
.social-links{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Bubble size (34px -> 42px, ~25%) */
.social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:#f1f4f9;
  color: var(--ink);
  opacity:0.95;
  line-height:0;
  transition:transform .15s ease, background .15s ease, opacity .15s ease;
}

.social-links a:hover{
  background:#e6ecf7;
  transform:translateY(-1px);
  opacity:1;
}

/* Base icon size */
.social-icon{
  width:18px;
  height:18px;
  fill:currentColor;
}

/* LinkedIn: brand blue + bigger glyph */
.social-links a[aria-label="LinkedIn"]{
  color:#0A66C2;
}
.social-links a[aria-label="LinkedIn"] .social-icon{
  width:30px;
  height:30px;
}

/* Layout: footer center */
.footer-social{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Responsive: hide header icons on small screens, keep footer icons visible */
@media (max-width: 768px){
  .social-links--header{ display:none; }
  .social-links--footer{ display:flex; }
}


/* Footer: place social bubbles inline with contact info on the right */
.site-footer .footer-inner{
  align-items: center;
}

.social-links--footer{
  display:inline-flex;
  vertical-align: middle;
  margin-right: 10px;
}

/* Ensure footer right area keeps items in one row on wider screens */
.site-footer .footer-right,
.site-footer .footer-contact{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

/* On small screens, allow wrapping but keep icons visible */
@media (max-width: 768px){
  .social-links--footer{
    margin-right: 0;
  }
}


/* Footer links layout: icons + email + phone in one row */
.site-footer .footer-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.site-footer .footer-links .social-links--footer{
  display:flex;
  gap:10px;
  align-items:center;
  margin-right: 4px;
}

/* Keep footer icons visible on mobile (header may hide) */
@media (max-width: 768px){
  .social-links--footer{ display:flex; }
}


/* Footer cleanup: keep only footer-links on the right */
.site-footer .footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.site-footer .footer-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}

.site-footer .footer-sep{
  opacity:0.6;
}

/* =============================
   Next-level Header + Hero
   (Overrides)
   ============================= */

.site-header{
  background: linear-gradient(90deg, #071a2f 0%, #0b2a4a 60%, #0b1f3a 100%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: none;
}

/* Logo tuned for dark header (no white badge) */
.site-header .brand img{height:44px;width:auto;max-width:320px;object-fit:contain;display:block;filter:none;}

.nav a{
  color: rgba(255,255,255,0.92);
}
.nav a:hover{
  background: rgba(255,255,255,0.10);
}
.nav a.is-active{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

/* CTA-style nav link (Contact) */
.nav a.nav-cta{
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.85);
  padding: 10px 14px;
  border-radius: 14px;
}
.nav a.nav-cta:hover{
  background: #ffffff;
}

/* Header social buttons on dark background */
.social-links--header a{
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
}
.social-links--header a:hover{
  background: rgba(255,255,255,0.18);
}

/* Hero with background image (home page) */
.hero--image{
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(7,26,47,0.92) 0%, rgba(11,42,74,0.70) 55%, rgba(11,31,58,0.40) 100%),
    url('assets/images/consulting-team.jpg');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 76px 0 40px;
}
.hero--image h1,
.hero--image .eyebrow,
.hero--image .lead{
  color: rgba(255,255,255,0.95);
}
.hero--image .trust-strip{ color: rgba(255,255,255,0.78); }
.hero--image .trust-pill{ background: rgba(255,255,255,0.92); }

/* Keep right-side card readable on the image hero */
.hero--image .hero-card{
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.40);
}

/* Footer: ensure clean alignment */
.site-footer .footer-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
.site-footer .footer-left{ max-width: 520px; }


/* Services: feature split with image */
.feature-split{
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--alt);
}
.feature-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items:center;
}
.feature-media{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  background: white;
}
.feature-media img{ width:100%; height:auto; display:block; }

@media (max-width: 900px){
  .feature-grid{ grid-template-columns: 1fr; }
}

/* =============================
   Client logos strip (home)
   ============================= */

.client-logo-strip{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.client-logo-item{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.client-logo-item img{
  height: 26px;
  width: auto;
  display:block;
  filter: none;
}

@media (max-width: 520px){
  .client-logo-item img{ height: 22px; }
}


/* Text-only client badges (when logos are not used) */
.client-logo-item.client-logo-text{
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
}
/* Client row: label + chips on one baseline */
.clients {
  display: flex;
  align-items: center;       /* vertical alignment */
  gap: 12px;                 /* spacing between label and chips */
  flex-wrap: wrap;           /* wraps nicely on narrow screens */
  margin-top: 18px;
}

.clients-label {
  margin: 0;                 /* remove default <p> margins */
  font-size: 13px;
  line-height: 1;            /* keeps baseline tight */
  color: rgba(255,255,255,0.9);
  white-space: nowrap;       /* keeps label from breaking */
}

.client-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;                 /* remove any inherited spacing */
  padding: 0;
}

.client-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  /* KEY CHANGES */
  background: rgba(255, 255, 255, 0.22);   /* brighter pill */
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;                          /* solid white text */
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);     /* subtle lift */
}

.client-badge:hover {
  background: rgba(255, 255, 255, 0.3);
}





/* =============================
   Mobile Menu Overlay
   ============================= */

.mobile-nav-toggle{
  display:none;
  background:transparent;
  border:0;
  padding:10px;
  margin-left:auto;
  cursor:pointer;
  border-radius:12px;
}
.mobile-nav-toggle:focus{outline:2px solid rgba(255,255,255,0.35); outline-offset:2px;}

.hamburger{
  width:28px;
  height:2px;
  background:rgba(255,255,255,0.92);
  display:inline-block;
  position:relative;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:28px;
  height:2px;
  background:rgba(255,255,255,0.92);
}
.hamburger::before{ top:-8px; }
.hamburger::after{ top:8px; }

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:9999;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity 200ms ease, visibility 200ms ease;
  background:rgba(7,26,47,0.94);
  backdrop-filter: blur(8px);
}

.mobile-menu.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.mobile-menu__panel{
  height:100%;
  display:flex;
  flex-direction:column;
  padding:18px 20px 22px;
}

.mobile-menu__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.mobile-menu__close{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  color:rgba(255,255,255,0.92);
  width:44px;
  height:44px;
  border-radius:14px;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}
.mobile-menu__close:hover{ background:rgba(255,255,255,0.16); }

.mobile-menu__nav{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.mobile-menu__nav a{
  color:rgba(255,255,255,0.94);
  text-decoration:none;
  font-weight:750;
  font-size:22px;
  padding:12px 10px;
  border-radius:14px;
  letter-spacing:-0.1px;
}
.mobile-menu__nav a:hover{
  background:rgba(255,255,255,0.10);
}
.mobile-menu__nav a.mobile-cta{
  margin-top:10px;
  background:rgba(255,255,255,0.92);
  color:var(--ink);
  border:1px solid rgba(255,255,255,0.85);
  text-align:center;
}
.mobile-menu__nav a.mobile-cta:hover{
  background:#fff;
}

/* Mobile behavior: hide desktop nav, show hamburger */
@media (max-width: 768px){
  .nav{ display:none; }
  .mobile-nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .header-inner{ gap:12px; }
  .brand img{ max-width: 220px; height:40px; }
}
