/* Fonts */
@font-face { font-family: InterVar, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; src: local(""); }

:root {
  --bg: #f0f8ff;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #4cc9f0;
  --accent: #80ffdb;
  --link: #0076BE;
  --shadow: rgba(2, 6, 23, 0.08);
  --radius: 14px;
  --container: min(1100px, 92vw);
  --header-h: 96px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font: 16px/1.6 InterVar, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, #e6f4ff 0%, transparent 60%),
              radial-gradient(1600px 900px at 120% 10%, #e5fff5 0%, transparent 60%),
              var(--bg);
}

.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(12px, 3vw, 24px);
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.7);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(2,6,23,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: 0.2px; }
.brand-logo { width: clamp(72px, 8vw, 96px); height: clamp(72px, 8vw, 96px); object-fit: contain; border-radius: 8px; box-shadow: 0 3px 12px var(--shadow); background: #fff; }
.brand-text { white-space: nowrap; font-size: clamp(20px, 2.4vw, 30px); line-height: 1; }

.nav-toggle { display:none; background:none; border: 1px solid rgba(2,6,23,0.2); color: var(--text); border-radius: 10px; padding: 8px 10px; font-size: 20px; }
.site-nav { display:flex; gap: 8px; align-items:center; }
.site-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(2,6,23,0.06); }

main { padding-block: clamp(24px, 5vw, 56px); }

.hero {
  display: grid; gap: 22px;
  background: var(--panel);
  border: 1px solid rgba(2,6,23,0.08);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 54px);
  box-shadow: 0 10px 40px var(--shadow);
}
.hero h1 { font-size: clamp(28px, 4.5vw, 48px); line-height: 1.1; margin: 0; }
.hero p { color: var(--muted); margin: 0; font-size: clamp(16px, 2.6vw, 18px); }
.cta-row { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.btn {
  appearance: none; border: 0; cursor: pointer; border-radius: 12px; padding: 12px 16px; font-weight: 600;
  color: #ffffff; background: var(--link); text-decoration: none; box-shadow: 0 6px 16px var(--shadow);
}
.btn.ghost { background: transparent; color: var(--link); border: 1px solid rgba(0,118,190,0.4); }
.btn:hover { filter: brightness(1.04); }
.btn:focus-visible { outline: 3px solid rgba(37,99,235,0.35); outline-offset: 2px; }

.grid { display:grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.offerings-grid .card { height: 100%; display: grid; align-content: start; }
.offerings-grid .card h3 { margin-bottom: 6px; }

/* On-brand offering tiles */
.offer-card { border: none; box-shadow: 0 12px 34px var(--shadow); }
.offer-card p { color: inherit; }
.offer-card.card-link:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--shadow); }

.tone-blue { background-color: #0076BE !important; color: #ffffff !important; }
.tone-blue .muted { color: rgba(255,255,255,0.95) !important; }
.card { background: var(--panel); border: 1px solid rgba(2,6,23,0.08); border-radius: var(--radius); padding: 18px; box-shadow: 0 10px 30px var(--shadow); }
.card h3 { margin-top: 0; }
.muted { color: var(--muted); }

/* Home capabilities highlight */
.cap-card { background: var(--panel); border: 1px solid rgba(2,6,23,0.08); border-radius: var(--radius); padding: clamp(18px, 3vw, 28px); box-shadow: 0 8px 28px var(--shadow); }
.cap-grid { display: block; }
.cap-grid h2 { margin: 0 0 6px; font-size: clamp(22px, 3.2vw, 32px); }
.cap-lede { color: var(--muted); margin-top: 4px; }
.cap-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cap-item { display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: 10px; }
.cap-icon { width: 22px; height: 22px; color: var(--link); margin-top: 2px; }
.cap-cta { margin-top: 12px; display: inline-flex; gap: 10px; align-items: center; }
@media (max-width: 900px) { .cap-list { grid-template-columns: 1fr; } }

.card-link { display:block; text-decoration: none; color: inherit; transition: transform 180ms ease, box-shadow 180ms ease; }
.card-link:hover { transform: translateY(-2px); box-shadow: 0 14px 36px var(--shadow); }

.kpis { display:flex; gap: 14px; flex-wrap: wrap; }
.kpi { flex: 1 1 160px; background: linear-gradient(180deg, rgba(2,6,23,0.02), rgba(2,6,23,0.01)); border: 1px solid rgba(2,6,23,0.08); border-radius: var(--radius); padding: 14px; }
.kpi strong { font-size: 22px; display:block; }

.section { margin-top: clamp(24px, 6vw, 64px); }
.section h2 { margin: 0 0 6px; font-size: clamp(22px, 3.2vw, 32px); }
.section p { margin: 0; }
/* Larger display heading to match About hero */
.display-h2 { font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 6px; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.action-card { padding: 18px; }
.action-card .btn { width: 100%; text-align: center; }
.action-card .btn + .btn { margin-top: 10px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* About page */
.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; align-items: start; }
.about-hero { background: var(--panel); border: 1px solid rgba(2,6,23,0.08); border-radius: var(--radius); padding: clamp(20px, 3.4vw, 36px); box-shadow: 0 8px 28px var(--shadow); }
.about-hero h2 { font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 6px; }
.about-hero p { color: var(--muted); }
.pills { display:flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius: 999px; background: rgba(2,6,23,0.06); color: var(--text); font-weight: 600; }
.stats { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 16px; }
.stat { background: #0076BE; color: #ffffff; border: none; border-radius: 16px; padding: 16px; text-align: center; box-shadow: 0 8px 22px var(--shadow); }
.stat strong { display:block; font-size: clamp(16px, 1.8vw, 20px); line-height: 1.35; font-weight: 700; color: inherit; }
.callout { background: var(--panel); border: 1px solid rgba(2,6,23,0.08); border-radius: var(--radius); padding: 18px; box-shadow: 0 6px 24px var(--shadow); }
.quote { font-style: italic; color: var(--muted); position: relative; padding-left: 22px; }
.quote:before { content: '“'; position: absolute; left: 0; top: -6px; font-size: 40px; color: rgba(2,6,23,0.2); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

/* Services (Value Pillars) */
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
.feature { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: center; background: var(--panel); border: 1px solid rgba(2,6,23,0.08); border-radius: 16px; padding: 18px; box-shadow: 0 8px 24px var(--shadow); }
.feature h3 { margin: 0 0 2px; }
.feature p { margin: 0; color: var(--muted); }
.feature-badge { width: 56px; height: 56px; border-radius: 12px; display:grid; place-items:center; font-weight: 800; color: #ffffff; box-shadow: 0 8px 22px var(--shadow); background: #0076BE; }
.feature-badge svg { width: 28px; height: 28px; display:block; }
.badge-blue { background: #0076BE; color: #ffffff; }
.badge-navy { background: #0076BE; color: #ffffff; }
.badge-light { background: #0076BE; color: #ffffff; }
.badge-gray { background: #0076BE; color: #ffffff; }

@media (min-width: 900px) {
  .pillars-grid { gap: 18px; }
  .feature--alt { grid-template-columns: 1fr 72px; text-align: right; }
  .feature--alt .feature-badge { order: 2; justify-self: end; }
}

/* Tool expertise */
.tools-section { margin-top: clamp(16px, 4vw, 28px); }
.logo-grid { display: none; }
.tools-table-wrapper { margin-top: 14px; overflow-x: auto; }
.tools-table { width: 100%; border-collapse: separate; border-spacing: 12px; }
-.tools-table td { background: var(--panel); border: 1px solid rgba(2,6,23,0.08); border-radius: 14px; padding: 18px; box-shadow: 0 6px 20px var(--shadow); text-align: center; }
.tools-table td { background: var(--panel); border: 1px solid rgba(2,6,23,0.08); border-radius: 14px; padding: 18px; box-shadow: 0 6px 20px var(--shadow); text-align: center; }
.tools-table img { width: 120px; height: 56px; object-fit: contain; display: block; margin-inline: auto; background: #ffffff; border-radius: 8px; }
.tools-table svg { width: 120px; height: 56px; display: block; margin-inline: auto; }

/* Logo tuning */
.logo-img { width: 120px; height: 56px; }
.logo--scale-115 { transform: scale(1.15); }
.logo--scale-120 { transform: scale(1.2); }
.logo--scale-130 { transform: scale(1.3); }

.site-footer { border-top: 1px solid rgba(2,6,23,0.06); padding: 18px 0; background: rgba(255,255,255,0.7); }
.footer-inner { display:flex; align-items:center; justify-content:center; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  :root { --header-h: 84px; }
  .grid.cols-3 { grid-template-columns: 1fr; }
  .grid.cols-2 { grid-template-columns: 1fr; }
  .site-nav { display:none; }
  .nav-toggle { display:inline-block; }
  .site-nav.open {
    display:flex;
    position: absolute;
    right: clamp(12px, 3vw, 24px);
    top: var(--header-h);
    flex-direction: column;
    gap: 6px;
    background: var(--panel);
    border: 1px solid rgba(2,6,23,0.1);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 12px 40px var(--shadow);
  }
}

/* Utilities */
.visually-hidden { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Assessment page styles */
.assessment-card {
  background: var(--panel);
  border: 1px solid var(--shadow);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.assessment-card h3 {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: 1.5rem;
}

.assessment-card p {
  margin: 0 0 2rem 0;
  color: var(--muted);
}

.assessment-embed {
  margin-top: 1.5rem;
}

.assessment-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .assessment-embed iframe {
    min-height: 500px;
  }
  
  .assessment-card {
    padding: 1.5rem;
  }
}


