/* ============================================================
   nventiv.ai — Main Stylesheet
   Navy/blue palette, Inter-style system font, clean B2B layout
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900: #021E3A;
  --navy-800: #042C53;
  --navy-700: #0C447C;
  --navy-600: #185FA5;
  --blue-400: #378ADD;
  --blue-200: #85B7EB;
  --blue-100: #B5D4F4;
  --blue-50:  #E6F1FB;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --surface: #F9FAFB;
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --font: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--blue-400);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--navy-600); color: var(--white) !important; }

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--blue-100);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(181,212,244,0.45);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline-light:hover { border-color: var(--blue-100); color: var(--white); }

.btn-dark {
  display: inline-block;
  background: var(--navy-800);
  color: var(--blue-100);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-dark:hover { background: var(--navy-900); }

.btn-nav {
  display: inline-block;
  background: var(--blue-400);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s;
}
.btn-nav:hover { background: var(--navy-600); }

/* --- Nav --- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo span { color: var(--blue-200); }

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--blue-100);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Replace with your actual image path once deployed: */
  background-image: url('../images/resize-crowd-image-oct25.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4,44,83,0.92) 0%,
    rgba(4,44,83,0.78) 50%,
    rgba(4,44,83,0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 40px;
  max-width: 680px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue-200);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero h1 em {
  color: var(--blue-200);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: var(--blue-50);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Client strip --- */
.clients-strip {
  background: var(--navy-700);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.clients-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-200);
  white-space: nowrap;
  flex-shrink: 0;
}
.client-names {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.client-names span {
  font-size: 13px;
  color: var(--blue-100);
  white-space: nowrap;
}

/* --- Sections --- */
.section {
  padding: 72px 0;
}

.section-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

/* --- Solutions grid --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.sol-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.sol-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 4px 16px rgba(55,138,221,0.08);
}

.sol-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.sol-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
  flex: 1;
}

.sol-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.sol-arrow {
  font-size: 16px;
  color: var(--blue-400);
  align-self: flex-end;
  transition: transform 0.15s;
}
.sol-card:hover .sol-arrow { transform: translateX(3px); }

.solutions-more {
  margin-top: 32px;
}

/* --- Event strip --- */
.event-strip {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}
.event-eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 6px;
}
.event-text h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 4px;
}
.event-text p {
  font-size: 13px;
  color: var(--navy-600);
}

/* --- About strip --- */
.about-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  margin-top: 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.about-copy p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 10px;
}

.stat-num {
  font-size: 26px;
  font-weight: 600;
  color: var(--blue-400);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.focus-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.focus-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 15px;
  color: var(--text-secondary);
}
.focus-pill svg { color: var(--blue-400); flex-shrink: 0; }

/* --- CTA strip --- */
.cta-strip {
  background: var(--navy-800);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--white);
  max-width: 440px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.cta-strip p {
  font-size: 15px;
  color: var(--blue-200);
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--navy-900);
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--blue-200);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 12px;
  color: var(--blue-100);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

/* ============================================================
   Solutions Page
   ============================================================ */
.page-hero {
  background: var(--navy-800);
  padding: 64px 40px;
}
.page-hero h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 15px;
  color: var(--blue-100);
  max-width: 580px;
  line-height: 1.7;
}

.solutions-full {
  padding: 72px 0;
}

.sol-full-group {
  margin-bottom: 64px;
}

.sol-full-group h2 {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 32px;
}

.sol-detail {
  display: grid;
  grid-template-columns: 200px 180px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.sol-detail:last-child { border-bottom: none; }

.sol-detail-label { }
.sol-detail-label .sol-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-400);
  display: block;
  margin-bottom: 6px;
}
.sol-detail-label h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.sol-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--blue-400);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: background 0.15s;
}
.sol-download:hover { background: var(--blue-50); }

.sol-detail-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================================
   About Page
   ============================================================ */
.about-intro {
  padding: 72px 0;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-intro h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.about-intro p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.client-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

.leadership {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}
.leadership h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 40px;
}

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

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.team-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 12px;
  color: var(--blue-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   Blog
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 56px 0;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}
.blog-card:hover { border-color: var(--blue-400); }

.blog-date {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.blog-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-read {
  font-size: 13px;
  color: var(--blue-400);
  font-weight: 500;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-section {
  padding: 72px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.contact-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-info .linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--blue-400);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-400);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.calendly-strip {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
  text-align: center;
}
.calendly-strip h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.calendly-strip p {
  font-size: 14px;
  color: var(--navy-600);
  margin-bottom: 20px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: var(--navy-800);
    padding: 16px 20px;
    gap: 16px;
    z-index: 99;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 56px 20px; }
  .hero h1 { font-size: 26px; }
  .clients-strip { padding: 14px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .sol-detail { grid-template-columns: 1fr; }
  .event-strip { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 48px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* ============================================================
   IMAGE ADDITIONS
   ============================================================ */

/* Logo image in nav */
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* makes it white on dark nav */
}
.logo-img-link { display: flex; align-items: center; }

/* Footer logo */
.footer-logo-img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}

/* Hero — reduced height to show more of the crowd */
.hero { min-height: 300px; }

/* Solution card images */
.sol-card-img {
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 14px;
  background: var(--surface);
}
.sol-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.sol-card:hover .sol-card-img img { transform: scale(1.04); }

/* Event strip with image */
.event-strip { gap: 20px; }
.event-img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Accent quote strip */
.accent-strip {
  position: relative;
  height: 180px;
  overflow: hidden;
  margin-top: 56px;
  background-image: url('images/adobe-crowds-walking.jpeg');
  background-size: cover;
  background-position: center 85%;
}
.accent-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,44,83,0.78);
}
.accent-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accent-quote {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  text-align: center;
  letter-spacing: -0.2px;
}

/* How we work image in about section */
.about-right { display: flex; flex-direction: column; gap: 16px; }
.howwework-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Certification badges on about page */
.cert-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cert-badge {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.cert-badge:hover { opacity: 1; }

/* Solutions page — detail image */
.sol-detail-img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: block;
}

@media (max-width: 768px) {
  .event-img { display: none; }
  .accent-strip { height: 130px; }
  .accent-quote { font-size: 16px; padding: 0 20px; }
  .howwework-img { display: none; }
}

/* ============================================================
   SOLUTIONS FRAMEWORK OVERVIEW
   ============================================================ */
.framework-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.framework-text h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.framework-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.framework-napkin img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

/* Group headers styled by axis */
.sol-full-group h2 {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-400);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .framework-overview { grid-template-columns: 1fr; }
  .framework-napkin { order: -1; }
}

/* ============================================================
   HEADSHOTS & SOLUTIONS TEASER
   ============================================================ */

/* Team headshots */
.team-headshot {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 16px;
  border: 3px solid var(--blue-50);
}

/* Homepage solutions teaser */
.solutions-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.solutions-teaser-text h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.solutions-teaser-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.solutions-teaser-text .btn-primary {
  margin-top: 8px;
}
.solutions-teaser-napkin a {
  display: block;
}
.solutions-teaser-napkin img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}
.solutions-teaser-napkin a:hover img {
  box-shadow: 0 8px 32px rgba(55,138,221,0.15);
}

@media (max-width: 768px) {
  .solutions-teaser-inner { grid-template-columns: 1fr; }
  .solutions-teaser-napkin { order: -1; }
}

/* Demoted axis labels on solutions page */
.axis-label {
  font-size: 10px !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid var(--border) !important;
  padding-bottom: 8px !important;
  margin-bottom: 32px !important;
  font-weight: 400 !important;
}

/* ============================================================
   SOLUTIONS PAGE UPDATES — 3-column layout + compact hero
   ============================================================ */

.page-hero-compact { padding: 32px 40px !important; }
.page-hero-compact h1 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 0; }

/* sol-detail 3-col now defined above */
.sol-download { margin-top: 10px; display: inline-block; }

/* Verticals strip */
.verticals-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .sol-detail { grid-template-columns: 1fr; }
  .page-hero-compact { padding: 24px 20px !important; }
  .verticals-strip { padding: 12px 20px; }
}

/* ============================================================
   DOWNLOADS PAGE
   ============================================================ */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.download-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.download-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 4px 16px rgba(55,138,221,0.08);
}
.download-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.download-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
  margin-bottom: 12px;
}
.download-cta {
  font-size: 12px;
  color: var(--blue-400);
  font-weight: 500;
  margin-top: auto;
}

/* Focus area cards with images */
.focus-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 16px;
  display: block;
}
.focus-card { padding-top: 0 !important; overflow: hidden; }

/* Industries strip — darker text */
.verticals-strip .clients-label,
.verticals-strip .client-names span {
  color: var(--text-secondary) !important;
}

/* TM superscript on logo */
.logo-tm {
  font-size: 10px;
  color: var(--blue-200);
  vertical-align: super;
  margin-left: 1px;
  font-weight: 400;
  line-height: 1;
}

/* ============================================================
   GLOBAL FONT SIZE OVERRIDES
   ============================================================ */
body { font-size: 17px; }

.hero-sub { font-size: 16px !important; }

.section-lead { font-size: 16px !important; }

.sol-card h3 { font-size: 15px !important; }
.sol-card p { font-size: 14px !important; }

.sol-detail-body p { font-size: 15px !important; }

.about-copy p { font-size: 15px !important; }
.team-card p { font-size: 14px !important; }

.focus-pill { font-size: 15px !important; }

.cta-strip h2 { font-size: clamp(20px, 2.5vw, 28px) !important; }
.cta-strip p { font-size: 15px !important; }

.blog-card h3 { font-size: 16px !important; }
.blog-card p { font-size: 14px !important; }

.post-body p { font-size: 16px !important; }
.post-body li { font-size: 16px !important; }

.client-names span { font-size: 13px !important; }
.clients-label { font-size: 11px !important; }

.nav-links a { font-size: 14px !important; }

.footer-links a { font-size: 13px !important; }
.footer-brand p { font-size: 13px !important; }
.footer-copy { font-size: 12px !important; }

.download-title { font-size: 15px !important; }
.event-text h3 { font-size: 16px !important; }
.event-text p { font-size: 14px !important; }

/* TM mark fix — ensure it displays inline next to logo */
.logo-img-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 2px !important;
}
.nav-logo-img {
  display: inline-block !important;
  height: 28px !important;
  width: auto !important;
}
.footer-logo-img {
  display: inline-block !important;
  height: 22px !important;
  width: auto !important;
}
.logo-tm {
  font-size: 9px !important;
  color: var(--blue-200) !important;
  vertical-align: super !important;
  margin-left: 1px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

/* Fix TM vertical alignment in footer */
.footer-brand .logo-tm {
  color: var(--blue-200) !important;
  vertical-align: top !important;
  margin-top: 2px !important;
  font-size: 8px !important;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 52px; left: 0; right: 0;
    background: var(--navy-800); padding: 16px 20px;
    gap: 16px; z-index: 99;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a { font-size: 15px; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: 340px; }
  .hero-content { padding: 40px 20px; }
  .hero h1 { font-size: 24px; }
  .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a { text-align: center; }

  /* Client strips */
  .clients-strip { padding: 12px 20px; gap: 12px; }
  .verticals-strip { padding: 12px 20px; }
  .client-names { gap: 12px; }
  .client-names span { font-size: 12px; }

  /* Container */
  .container { padding: 0 20px; }

  /* Sections */
  .section { padding: 40px 0; }
  .section h2 { font-size: 22px; }
  .section-lead { font-size: 15px; }

  /* Solutions grid - 1 column on mobile */
  .solutions-grid { grid-template-columns: 1fr; }
  .sol-card { flex-direction: row; align-items: flex-start; gap: 14px; }
  .sol-card-img { width: 80px; height: 80px; flex-shrink: 0; margin-bottom: 0; }
  .sol-card h3 { font-size: 14px; }
  .sol-card p { font-size: 13px; }

  /* Solutions detail - stack on mobile */
  .sol-detail {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .sol-detail-img { max-height: 180px !important; }

  /* Framework overview */
  .framework-overview { grid-template-columns: 1fr; gap: 24px; }
  .framework-napkin { order: -1; }

  /* Solutions teaser */
  .solutions-teaser-inner { grid-template-columns: 1fr; gap: 24px; }
  .solutions-teaser-napkin { order: -1; }

  /* Event strip */
  .event-strip { flex-direction: column; gap: 16px; margin: 0 20px; }
  .event-img { display: none; }
  .event-text h3 { font-size: 15px; }

  /* Accent strip */
  .accent-strip { height: 100px; }
  .accent-quote { font-size: 15px; padding: 0 20px; }

  /* About */
  .about-strip { padding: 40px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-copy h2 { font-size: 20px; }
  .stat-row { gap: 20px; }
  .howwework-img { display: none; }
  .focus-list { gap: 8px; }
  .focus-pill { font-size: 14px; padding: 10px 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-headshot { width: 80px; height: 80px; }
  .cert-badges { gap: 10px; }
  .cert-badge { height: 40px; }

  /* Client grid */
  .client-grid { grid-template-columns: repeat(2, 1fr); }

  /* Focus card images */
  .focus-card-img { height: 120px; }

  /* CTA */
  .cta-strip { padding: 40px 20px; }
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-btns { flex-direction: column; align-items: center; width: 100%; }
  .cta-btns a { width: 100%; text-align: center; }
  .cta-strip h2 { font-size: 20px; }

  /* Footer */
  .footer { padding: 32px 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-links { justify-content: center; gap: 14px; }
  .footer-copy { text-align: center; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; padding: 32px 0; }
  .blog-card { padding: 20px; }

  /* Blog post */
  .post-hero { padding: 40px 20px; }
  .post-body { padding: 32px 20px; }
  .post-body h2 { font-size: 18px; }
  .post-body p { font-size: 15px; }

  /* Contact */
  .contact-section { padding: 40px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Downloads */
  .downloads-grid { grid-template-columns: 1fr 1fr; }

  /* Page hero */
  .page-hero { padding: 40px 20px; }
  .page-hero h1 { font-size: 22px; }
  .page-hero-compact { padding: 24px 20px !important; }

  /* Chatbot */
  #nv-chat-window { width: calc(100vw - 24px); right: -4px; height: 480px; }
  #nv-chat-bubble { bottom: 16px; right: 16px; }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero h1 { font-size: 21px; }
  .two-col { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .sol-card { flex-direction: column; }
  .sol-card-img { width: 100%; height: 120px; }
}
