/* ============================================================
   styles.css — LEGACY SHARED BASE (transitional)
   ------------------------------------------------------------
   STATUS per DEVELOPMENT-STANDARD.md retrofit:
   Most content pages now use page-shared.css (industry) or
   page-shared-solutions.css (solution/editorial), which load AFTER
   this file and override the overlapping rules below.

   STILL A LIVE DEPENDENCY for: contact-us.html (uses .page-hero,
   .page-hero-inner, .btn-primary, .hero-ctas from THIS file) and the
   page-specific exception pages.

   DO NOT delete the overlapping selectors (.page-hero, .btn-primary,
   .hero-ctas, .q-grid, .nav-*) until contact-us.html is migrated or
   rebuilt on the shared system. Removing them now WILL break contact-us.
   Tracked as Stage 3 in DUPLICATION-AUDIT.md.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #001B5A; --blue: #2563EB; --orange: #2563EB; --orange-dark: #1d4fd0;
  --white: #ffffff; --off-white: #f7f8fc; --gray: #5e779b; --gray-dark: #5e779b; --text: #001B5A;
}
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; max-width: 100%; overflow-x: hidden; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--navy); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

nav { background: var(--navy); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 140px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 134px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-family: 'Montserrat', sans-serif; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 19px; font-weight: 600; letter-spacing: 0.05em; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-cta { background: var(--orange) !important; color: white !important; padding: 13px 26px; border-radius: 6px; font-weight: 700 !important; white-space: nowrap; transition: background 0.2s !important; text-transform: uppercase; letter-spacing: 0.06em !important; font-size: 17px !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }

.watermark-section { position: relative; overflow: hidden; }
.watermark-section::before {
  content: '';
  position: absolute;
  width: 720px; height: 720px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('images/asset-5-watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.watermark-section > * { position: relative; z-index: 1; }
.watermark-light::before { opacity: 0.05; filter: invert(1) brightness(0.4); }

.hero { background: var(--navy); padding: 120px 32px 80px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.32fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-flex; background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3); color: var(--orange); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; padding: 6px 16px; border-radius: 999px; margin-bottom: 24px; text-transform: uppercase; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 700; color: white; line-height: 1.15; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; }
.btn-primary { font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; background: var(--orange); color: white; padding: 13px 28px; border-radius: 8px; font-size: 14px; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s, box-shadow 0.25s; box-shadow: 0 8px 22px -8px rgba(37,99,235,.55); animation: ctaGlow 3.4s ease-in-out infinite; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(37,99,235,.75); animation: none; }
@keyframes ctaGlow { 0%,100% { box-shadow: 0 8px 22px -8px rgba(37,99,235,.45); } 50% { box-shadow: 0 10px 30px -8px rgba(37,99,235,.75); } }
@media (prefers-reduced-motion: reduce) { .btn-primary { animation: none; } }
.btn-secondary { font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.8); font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.btn-secondary:hover { color: white; }
.btn-secondary::after { content: '→'; }
.hero-tagline { display: flex; margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.tagline-word { flex: 1; padding-right: 16px; }
.tagline-word .word { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.tagline-word .desc { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.5; }

.video-placeholder { background: #010a18; border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; aspect-ratio: 16/10; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.video-placeholder::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,47,92,0.9), rgba(58,143,232,0.2)); }
.video-overlay-text { position: relative; z-index: 1; text-align: center; padding: 0 24px; }
.play-btn { width: 76px; height: 76px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; transition: transform 0.2s, background 0.2s; border: 3px solid rgba(255,255,255,0.2); }
.play-btn:hover { transform: scale(1.08); background: var(--orange-dark); }
.play-btn svg { width: 30px; height: 30px; fill: white; margin-left: 4px; }
.video-overlay-text h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: white; letter-spacing: 0.03em; margin-bottom: 8px; line-height: 1.2; }
.video-overlay-text p { font-size: 13px; color: rgba(255,255,255,0.5); }
.video-coming-badge { position: absolute; top: 14px; right: 14px; background: var(--orange); color: white; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; z-index: 2; }

.problem { background: var(--off-white); padding: 80px 32px; }
.problem-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.problem h2 { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--navy); }
.problem p { font-size: 16px; color: var(--gray-dark); line-height: 1.75; margin-bottom: 16px; }
.have-vs-need { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.have-box { background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; }
.need-box { background: var(--navy); border-radius: 12px; padding: 20px; }
.box-label { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.have-box .box-label { color: var(--gray); }
.need-box .box-label { color: var(--orange); }
.box-item { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 14px; }
.have-box .box-item { color: var(--gray-dark); }
.need-box .box-item { color: rgba(255,255,255,0.85); }
.box-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.have-box .box-item::before { background: #cbd5e1; }
.need-box .box-item::before { background: var(--orange); }

.services { padding: 100px 32px; background: white; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.section-header p { font-size: 17px; color: var(--gray-dark); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { background: var(--off-white); border-radius: 14px; padding: 28px; border: 1px solid transparent; transition: border-color 0.2s, transform 0.2s; }
.service-card:hover { border-color: rgba(37,99,235,0.25); transform: translateY(-2px); }
.service-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }

.how { background: var(--navy); padding: 100px 32px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how .section-header h2 { color: white; }
.how .section-header p { color: rgba(255,255,255,0.6); }
.how .section-eyebrow { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.step { text-align: center; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: rgba(37,99,235,0.15); border: 2px solid rgba(37,99,235,0.4); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: var(--orange); margin: 0 auto 20px; }
.step h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

.deliverable { padding: 100px 32px; background: var(--off-white); }
.deliverable-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.deliverable h2 { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.deliverable p { font-size: 16px; color: var(--gray-dark); line-height: 1.75; margin-bottom: 28px; }
.report-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.report-item { background: white; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px; display: flex; align-items: flex-start; gap: 10px; }
.report-item-num { width: 28px; height: 28px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; color: white; flex-shrink: 0; }
.report-item-text .title { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; letter-spacing: 0.02em; }
.report-item-text .desc { font-size: 11px; color: var(--gray); }

.about { background: var(--navy); padding: 100px 32px; }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photo-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.about-photo-wrap img { width: 100%; display: block; filter: grayscale(100%) contrast(1.05); border-radius: 16px; }
.about-photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,47,92,0.85) 0%, rgba(13,47,92,0.2) 50%, transparent 100%); border-radius: 16px; pointer-events: none; }
.about-photo-overlay { position: absolute; bottom: 24px; left: 24px; z-index: 2; }
.about-photo-overlay .pname { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 800; color: white; letter-spacing: 0.02em; }
.about-photo-overlay .ptitle { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.about h2 { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 700; color: white; margin-bottom: 20px; line-height: 1.2; }
.about p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; }
.cred-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cred-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 8px 16px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.04em; }

.industries { padding: 100px 32px; background: white; }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.industry-card { border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.industry-card:hover { border-color: var(--orange); transform: translateY(-3px); }
a.industry-card { text-decoration: none; display: block; }
a.industry-card h3, a.industry-card p { text-decoration: none; }
.industry-icon { font-size: 28px; margin-bottom: 14px; }
.industry-card h3 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.industry-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

.testimonials { background: var(--off-white); padding: 100px 32px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.testimonial-card { background: white; border-radius: 14px; padding: 28px; border: 1px solid #e2e8f0; }
.testimonial-stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 14px; color: var(--gray-dark); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; color: white; flex-shrink: 0; }
.author-name { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.author-role { font-size: 11px; color: var(--gray); }

.cta-banner { background: var(--orange); padding: 80px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); background-image: url('images/asset-5-watermark.png'); background-size: contain; background-repeat: no-repeat; background-position: center; opacity: 0.1; pointer-events: none; filter: brightness(10); }
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.2; position: relative; z-index: 1; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.btn-white { font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: white; color: var(--orange); padding: 15px 36px; border-radius: 8px; font-size: 15px; text-decoration: none; display: inline-block; transition: transform 0.15s; position: relative; z-index: 1; }
.btn-white:hover { transform: translateY(-2px); }

footer { background: var(--navy); padding: 60px 32px 32px; color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 68px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 280px; margin-bottom: 16px; }
.footer-email { color: var(--orange); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.footer-tagline { display: flex; gap: 16px; }
.footer-tagline span { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-tagline span:nth-child(3), .footer-tagline span:nth-child(4) { color: var(--orange); }

.pricing { padding: 100px 32px; background: var(--off-white); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.pricing-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; padding: 36px 28px; display: flex; flex-direction: column; position: relative; transition: transform 0.2s; }
.pricing-card:hover { transform: translateY(-3px); }
.pricing-featured { border: 2px solid var(--orange); }
.pricing-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 16px; border-radius: 999px; white-space: nowrap; }
.pricing-tier { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.pricing-price { font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--gray); }
.pricing-ideal { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #e2e8f0; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; color: var(--gray-dark); padding: 7px 0; border-bottom: 1px solid #f0f2f8; display: flex; align-items: center; gap: 10px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.pricing-btn { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.07em; text-transform: uppercase; text-align: center; padding: 13px 24px; border-radius: 8px; text-decoration: none; display: block; background: var(--off-white); color: var(--navy); border: 1.5px solid #e2e8f0; transition: background 0.2s, border-color 0.2s; }
.pricing-btn:hover { background: var(--gray-light); border-color: #c5cdd8; }
.pricing-btn-featured { background: var(--orange); color: white; border-color: var(--orange); }
.pricing-btn-featured:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.pricing-assessment { background: var(--navy); border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.assessment-left { display: flex; align-items: center; gap: 20px; }
.assessment-icon { font-size: 32px; flex-shrink: 0; }
.assessment-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; }
.assessment-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 520px; }
.assessment-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.assessment-price { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; color: var(--orange); white-space: nowrap; }
.assessment-right .pricing-btn { background: var(--orange); color: white; border-color: var(--orange); white-space: nowrap; padding: 13px 28px; }
.assessment-right .pricing-btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

/* ============================================
   INTERIOR PAGE COMPONENTS
   (Meet the Team, Industry pages, BPR landing)
   Reuses existing tokens for full brand consistency
   ============================================ */

/* --- Interior page hero / header --- */
.page-hero { background: linear-gradient(160deg,var(--navy),#0a2245); padding: 0; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    repeating-linear-gradient(-13deg, rgba(192,198,208,.06) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(77deg, rgba(192,198,208,.06) 0 1px, transparent 1px 58px);
  -webkit-mask-image:radial-gradient(ellipse 85% 85% at 50% 50%,#000 55%,transparent 100%);
          mask-image:radial-gradient(ellipse 85% 85% at 50% 50%,#000 55%,transparent 100%);
  animation: pageHeroGrid 70s linear infinite; }
@keyframes pageHeroGrid { from{background-position:0 0,0 0} to{background-position:58px 58px,-58px 58px} }
@media (prefers-reduced-motion:reduce){ .page-hero::after{animation:none} }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 100px 28px 84px; text-align: left; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.page-hero .section-eyebrow { color: var(--blue); text-align: left; text-transform:uppercase; letter-spacing:.18em; font-weight:600; font-size:.72rem; margin-bottom:14px; }
.page-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 46px; font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 20px; }
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero .page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.6; max-width: 34em; margin: 0; }
/* default right-column visual (pages with no bespoke visual get this) */
.page-hero-inner::after { content:""; display:block; align-self:center; aspect-ratio:16/10;
  background:url('images/asset-9-hero-dashboard.png') center/cover no-repeat;
  border-radius:14px; border:1px solid rgba(255,255,255,.12); box-shadow:0 40px 90px -36px rgba(0,0,0,.7); }
/* if a page provides its own .page-hero-visual, hide the default */
.page-hero-inner:has(.page-hero-visual)::after{ display:none; }
.page-hero-visual{ align-self:center; }
.page-hero-visual img{ width:100%; border-radius:14px; border:1px solid rgba(255,255,255,.12); box-shadow:0 40px 90px -36px rgba(0,0,0,.7); display:block; }
.breadcrumb { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* --- Generic content section wrapper --- */
.page-section { padding: 88px 32px; }
.page-section.bg-white { background: white; }
.page-section.bg-light { background: var(--off-white); }
.page-section.bg-navy { background: var(--navy); }
.page-section-inner { max-width: 1100px; margin: 0 auto; }
.page-section.bg-navy h2 { color: white; }
.page-section.bg-navy p { color: rgba(255,255,255,0.7); }

/* --- Branded NG visual block (replaces Marc photo on homepage About) --- */
.brand-visual { position: relative; border-radius: 16px; overflow: hidden; background:
   radial-gradient(circle at 30% 25%, rgba(58,143,232,0.25), transparent 55%),
   radial-gradient(circle at 80% 80%, rgba(37,99,235,0.22), transparent 55%),
   var(--navy);
   border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 4/5; display: flex; flex-direction: column;
   align-items: center; justify-content: center; padding: 40px; text-align: center; }
.brand-visual::before { content: ''; position: absolute; inset: 0;
   background: url('images/asset-5-watermark.png') center/72% no-repeat; opacity: 0.12; }
.brand-visual-logo { width: 200px; max-width: 70%; position: relative; z-index: 1; margin-bottom: 28px; }
.brand-visual-tag { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.brand-visual-tag span { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.brand-visual-tag span:nth-child(2) { color: var(--orange); }
.brand-visual-tag span:nth-child(4) { color: var(--blue); }

/* --- Three centered pillar tags (homepage About) --- */
.cred-bar.cred-centered { justify-content: center; gap: 14px; }
.cred-bar.cred-centered .cred-chip { font-size: 14px; padding: 10px 22px; }

/* --- Team grid --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.team-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.team-card:hover { transform: translateY(-3px); border-color: rgba(37,99,235,0.3); }
.team-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; filter: grayscale(100%) contrast(1.05); display: block; }
.team-card-body { padding: 24px 26px 28px; }
.team-card-name { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.team-card-title { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin: 4px 0 16px; }
.team-card-bio { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }
.team-card-bio p { margin-bottom: 12px; }
.team-card-bio p:last-child { margin-bottom: 0; }
.team-join { background: var(--off-white); border: 1.5px dashed #cbd5e1; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 30px; min-height: 200px; }
.team-join .ji { font-size: 32px; margin-bottom: 14px; opacity: 0.6; }
.team-join h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.team-join p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* --- Questions / "what we answer" cards --- */
.q-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.q-card { background: white; border: 1px solid #e2e8f0; border-left: 3px solid var(--orange); border-radius: 12px; padding: 24px 26px; }
.page-section.bg-light .q-card { background: white; }
.q-card .q-mark { font-family: 'Montserrat', sans-serif; font-size: 30px; color: var(--orange); line-height: 1; margin-bottom: 10px; }
.q-card p { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.45; }

/* --- KPI chips --- */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.kpi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 22px 24px; }
.page-section.bg-white .kpi-card, .page-section.bg-light .kpi-card { background: var(--off-white); border-color: #e2e8f0; }
.kpi-card .kpi-label { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.kpi-card .kpi-text { font-size: 14px; line-height: 1.65; }
.page-section.bg-navy .kpi-card .kpi-text { color: rgba(255,255,255,0.75); }
.page-section.bg-white .kpi-card .kpi-text, .page-section.bg-light .kpi-card .kpi-text { color: var(--gray-dark); }

/* --- Dashboard / reporting example mockup --- */
.dash-mock { background: #010a18; border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 26px; }
.dash-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 14px; margin-bottom: 14px; }
.dash-row:last-child { margin-bottom: 0; }
.dash-metric { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 16px 18px; }
.dash-metric .dm-label { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.dash-metric .dm-value { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: white; }
.dash-metric .dm-delta { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; margin-top: 4px; }
.dash-metric .dm-delta.up { color: #22c55e; }
.dash-metric .dm-delta.down { color: #ef4444; }
.dash-caption { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 16px; text-align: center; }

/* --- Two-column intro with visual --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split h2 { font-family: 'Montserrat', sans-serif; font-size: 34px; font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.page-section.bg-navy .split h2 { color: white; }
.split p { font-size: 16px; line-height: 1.75; margin-bottom: 16px; color: var(--gray-dark); }
.page-section.bg-navy .split p { color: rgba(255,255,255,0.7); }

/* --- Process steps (numbered, for BPR page) --- */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.process-step { text-align: left; }
.process-step .ps-num { width: 52px; height: 52px; border-radius: 50%; background: rgba(37,99,235,0.12); border: 2px solid rgba(37,99,235,0.4); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: var(--orange); margin-bottom: 18px; }
.process-step h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.page-section.bg-navy .process-step h3 { color: white; }
.process-step p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }
.page-section.bg-navy .process-step p { color: rgba(255,255,255,0.6); }

/* --- Inline list with check marks --- */
.check-list { list-style: none; }
.check-list li { font-size: 15px; color: var(--gray-dark); line-height: 1.6; padding: 9px 0; display: flex; align-items: flex-start; gap: 12px; border-bottom: 1px solid #f0f2f8; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.page-section.bg-navy .check-list li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.08); }

/* --- Section intro (left aligned, for interior content blocks) --- */
.block-head { margin-bottom: 40px; }
.block-head h2 { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.page-section.bg-navy .block-head h2 { color: white; }
.block-head p { font-size: 16px; color: var(--gray-dark); line-height: 1.7; max-width: 700px; }
.page-section.bg-navy .block-head p { color: rgba(255,255,255,0.65); }

/* --- Related industries strip --- */
.related-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.related-chip { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.03em; color: var(--navy); background: white; border: 1px solid #e2e8f0; border-radius: 999px; padding: 9px 20px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.related-chip:hover { border-color: var(--orange); color: var(--orange); }

/* --- Responsive --- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-inner, .problem-inner, .deliverable-inner, .about-inner, .split { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .steps, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .pricing-assessment { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 30px; padding: 60px 22px; }
  .page-hero-inner::after { aspect-ratio: 16/9; }
  .hero h1 { font-size: 34px; }
}
@media (max-width: 520px) {
  .industries-grid, .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   BUILT-OUT INDUSTRY PAGES (v2)
   Rich components: question grid, KPI accordion library,
   dashboard preview, FAQ accordion, assessment form.
   All classes prefixed .iv- to avoid collision with existing
   styles. Reuses existing color/font tokens for brand match.
   ============================================================ */

/* hero CTA buttons row on page-hero */
.iv-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; margin-top: 28px; }
.iv-btn-ghost { font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0.02em; font-size: 14px; color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: 13px 26px; border-radius: 7px; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.iv-btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: white; }
.iv-pills { display: flex; flex-wrap: wrap; gap: 9px; justify-content: flex-start; margin-top: 26px; }
.iv-pills span { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.04em; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.8); padding: 7px 15px; border-radius: 999px; }

/* sub-grouped question blocks */
.iv-qblock { margin-bottom: 32px; }
.iv-qblock:last-child { margin-bottom: 0; }
.iv-qblock h3 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--orange); letter-spacing: 0.04em; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; }
.iv-qblock h3::before { content: ''; width: 22px; height: 2px; background: var(--orange); }
.page-section.bg-navy .iv-qblock h3 { color: var(--orange); }

/* KPI accordion library */
.iv-kpi-cat { border: 1px solid #e2e8f0; border-radius: 14px; background: white; overflow: hidden; margin-bottom: 14px; }
.page-section.bg-navy .iv-kpi-cat { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.iv-kpi-head { display: flex; align-items: center; gap: 15px; padding: 20px 24px; cursor: pointer; user-select: none; }
.iv-kpi-head:hover { background: rgba(58,143,232,0.04); }
.page-section.bg-navy .iv-kpi-head:hover { background: rgba(255,255,255,0.04); }
.iv-kpi-ix { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(58,143,232,0.12); color: var(--blue); flex-shrink: 0; font-family: 'Montserrat', sans-serif; font-weight: 800; }
.iv-kpi-ix.alt { background: rgba(37,99,235,0.12); color: var(--orange); }
.iv-kpi-head h4 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); flex: 1; }
.page-section.bg-navy .iv-kpi-head h4 { color: white; }
.iv-kpi-count { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.05em; color: var(--gray); }
.iv-kpi-arrow { color: var(--gray); transition: transform 0.25s; font-size: 12px; }
.iv-kpi-cat.open .iv-kpi-arrow { transform: rotate(180deg); }
.iv-kpi-body { display: none; padding: 0 24px 8px; border-top: 1px solid #e2e8f0; }
.page-section.bg-navy .iv-kpi-body { border-top-color: rgba(255,255,255,0.12); }
.iv-kpi-cat.open .iv-kpi-body { display: block; }
.iv-kpi-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 12px; padding: 20px 0 24px; }
.iv-kpi-tile { border: 1px solid #e2e8f0; border-radius: 10px; padding: 16px; background: var(--off-white); }
.page-section.bg-navy .iv-kpi-tile { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.iv-kpi-tile h5 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.page-section.bg-navy .iv-kpi-tile h5 { color: white; }
.iv-kpi-tile p { font-size: 13px; color: var(--gray-dark); line-height: 1.55; }
.page-section.bg-navy .iv-kpi-tile p { color: rgba(255,255,255,0.65); }
.iv-kpi-formula { margin-top: 9px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; color: var(--orange); background: rgba(37,99,235,0.08); padding: 5px 10px; border-radius: 7px; display: inline-block; }

/* large dashboard preview */
.iv-dash { background: #010a18; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 26px; }
.iv-dash-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.iv-dash-top .t { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: white; }
.iv-dash-top .badge { font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 999px; }
.iv-stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 12px; margin-bottom: 14px; }
.iv-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 16px 18px; }
.iv-stat .l { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.iv-stat .v { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: white; }
.iv-stat .d { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; margin-top: 4px; }
.iv-up { color: #22c55e; } .iv-down { color: #ef4444; }
.iv-dash-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.iv-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 18px; }
.iv-panel h6 { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.iv-bars { display: flex; align-items: flex-end; gap: 9px; height: 110px; }
.iv-bar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--blue), #2563EB); position: relative; }
.iv-bar:nth-child(even) { background: linear-gradient(180deg, var(--orange), #1d4fd0); }
.iv-bar span { position: absolute; bottom: -19px; left: 0; right: 0; text-align: center; font-size: 10px; color: rgba(255,255,255,0.5); font-family: 'Montserrat', sans-serif; }
.iv-health { display: flex; flex-direction: column; gap: 11px; }
.iv-hrow { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.8); }
.iv-hdot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.iv-g { background: #22c55e; } .iv-y { background: #2563EB; } .iv-r { background: #ef4444; }
.iv-meter { flex: 1; height: 6px; background: rgba(255,255,255,0.12); border-radius: 6px; overflow: hidden; }
.iv-meter i { display: block; height: 100%; border-radius: 6px; }
.iv-lrow { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.8); }
.iv-lrow:last-child { border-bottom: none; }
.iv-lrow b { color: white; font-family: 'Montserrat', sans-serif; }
.iv-dash-note { margin-top: 16px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: center; }

/* FAQ accordion */
.iv-faq { background: white; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.iv-faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; user-select: none; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: 16px; }
.iv-faq-q:hover { background: rgba(58,143,232,0.04); }
.iv-faq-pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(37,99,235,0.1); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform 0.25s; }
.iv-faq.open .iv-faq-pm { transform: rotate(45deg); }
.iv-faq-a { display: none; padding: 0 24px 22px; color: var(--gray-dark); font-size: 14px; line-height: 1.7; }
.iv-faq.open .iv-faq-a { display: block; }
.iv-faq-a ul { margin: 8px 0 0 18px; }
.iv-faq-a li { margin-bottom: 5px; }

/* assessment form */
.iv-form { background: white; border: 1px solid #e2e8f0; border-radius: 18px; padding: 36px; }
.page-section.bg-light .iv-form { background: white; }
.iv-fgroup { margin-bottom: 30px; }
.iv-fgroup:last-of-type { margin-bottom: 22px; }
.iv-fgroup h4 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.iv-fgroup h4::before { content: ''; width: 4px; height: 18px; background: var(--orange); border-radius: 3px; }
.iv-grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; }
.iv-field label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; color: var(--gray-dark); margin-bottom: 7px; }
.iv-field input, .iv-field select, .iv-field textarea { width: 100%; border: 1.5px solid #e2e8f0; border-radius: 9px; padding: 12px 14px; font-family: 'Montserrat', sans-serif; font-size: 15px; color: var(--text); background: var(--off-white); }
.iv-field textarea { min-height: 80px; resize: vertical; }
.iv-field input:focus, .iv-field select:focus, .iv-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,143,232,0.15); }
.iv-opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 10px; }
.iv-opt { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 9px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--text); transition: border-color 0.15s, background 0.15s; user-select: none; }
.iv-opt:hover { border-color: var(--blue); background: rgba(58,143,232,0.05); }
.iv-opt.on { border-color: var(--orange); background: rgba(37,99,235,0.07); }
.iv-opt input { accent-color: var(--orange); width: 16px; height: 16px; }
.iv-upload { border: 2px dashed #c3d2ea; border-radius: 14px; padding: 32px 24px; text-align: center; cursor: pointer; background: var(--off-white); transition: border-color 0.2s, background 0.2s; }
.iv-upload:hover { border-color: var(--blue); background: rgba(58,143,232,0.04); }
.iv-upload .ico { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; }
.iv-upload h5 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); }
.iv-upload .acc { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.iv-upload .acc span { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; background: rgba(13,47,92,0.06); color: var(--navy); padding: 5px 11px; border-radius: 999px; }
.iv-form-submit { text-align: center; margin-top: 8px; }

/* AI enablement cards */
.iv-ai-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.iv-ai-card { background: white; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; transition: transform 0.2s, border-color 0.2s; }
.iv-ai-card:hover { transform: translateY(-3px); border-color: rgba(37,99,235,0.3); }
.page-section.bg-light .iv-ai-card { background: white; }
.iv-ai-ico { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(135deg, var(--navy), var(--blue)); display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; margin-bottom: 14px; }
.iv-ai-card h5 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.iv-ai-card p { font-size: 13px; color: var(--gray-dark); line-height: 1.6; }

@media (max-width: 860px) {
  .iv-dash-grid { grid-template-columns: 1fr; }
}

/* --- Featured team member (Meet the Team hero block) --- */
.iv-founder { align-items: stretch; }
.iv-founder-photo { border-radius: 16px; overflow: hidden; position: relative; }
.iv-founder-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05); display: block; border-radius: 16px; }
.iv-founder-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,47,92,0.25), transparent 45%); border-radius: 16px; pointer-events: none; }
.iv-founder-body .team-card-name { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 800; color: var(--navy); }
.iv-founder-body .team-card-title { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin: 6px 0 20px; }
.iv-founder-body .team-card-bio { font-size: 15px; color: var(--gray-dark); line-height: 1.75; }
.iv-founder-body .team-card-bio p { margin-bottom: 14px; }
.iv-founder-body .team-card-bio p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .iv-founder { grid-template-columns: 1fr; } .iv-founder-photo { aspect-ratio: 1/1; } }

/* ============================================================
   ROUND 2 — EXECUTIVE / DASHBOARD REFINEMENTS
   Compact questions, dashboard KPI grid w/ tap-to-reveal,
   multi-select dropdowns. All .iv2- prefixed.
   ============================================================ */

/* compact scannable questions */
.iv2-q-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 10px 28px; }
.iv2-q { display: flex; align-items: flex-start; gap: 11px; padding: 11px 0; border-bottom: 1px solid #eef1f7; font-size: 14px; line-height: 1.45; color: var(--text); }
.page-section.bg-light .iv2-q { border-bottom-color: #e2e8f0; }
.iv2-q::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; font-size: 13px; line-height: 1.5; }
.iv2-qcol-title { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--orange); letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 6px; }
.iv2-qsub { margin-bottom: 22px; }
.iv2-qsub:last-child { margin-bottom: 0; }

/* dashboard-style KPI grid */
.iv2-kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.iv2-kpi-cat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 22px; }
.page-section.bg-white .iv2-kpi-cat, .page-section.bg-light .iv2-kpi-cat { background: var(--off-white); border-color: #e2e8f0; }
.iv2-kpi-cat > .h { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.page-section.bg-white .iv2-kpi-cat > .h, .page-section.bg-light .iv2-kpi-cat > .h { border-bottom-color: #e2e8f0; }
.iv2-kpi-dot { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: rgba(58,143,232,0.15); color: var(--blue); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.iv2-kpi-dot.alt { background: rgba(37,99,235,0.15); color: var(--orange); }
.iv2-kpi-cat > .h h4 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: white; }
.page-section.bg-white .iv2-kpi-cat > .h h4, .page-section.bg-light .iv2-kpi-cat > .h h4 { color: var(--navy); }
.iv2-kpi-list { list-style: none; }
.iv2-kpi-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.page-section.bg-white .iv2-kpi-item, .page-section.bg-light .iv2-kpi-item { border-bottom-color: #eef1f7; }
.iv2-kpi-item:last-child { border-bottom: none; }
.iv2-kpi-name { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 0; cursor: pointer; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.85); user-select: none; transition: color 0.15s; }
.page-section.bg-white .iv2-kpi-name, .page-section.bg-light .iv2-kpi-name { color: var(--gray-dark); }
.iv2-kpi-name:hover { color: white; }
.page-section.bg-white .iv2-kpi-name:hover, .page-section.bg-light .iv2-kpi-name:hover { color: var(--navy); }
.iv2-kpi-name .tg { width: 16px; height: 16px; border-radius: 50%; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 12px; opacity: 0.5; flex-shrink: 0; transition: transform 0.2s, opacity 0.2s; }
.iv2-kpi-item.open .iv2-kpi-name .tg { transform: rotate(45deg); opacity: 1; }
.iv2-kpi-def { display: none; padding: 0 0 11px; font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.6); }
.page-section.bg-white .iv2-kpi-def, .page-section.bg-light .iv2-kpi-def { color: var(--gray); }
.iv2-kpi-item.open .iv2-kpi-def { display: block; }
.iv2-kpi-def .f { display: inline-block; margin-top: 6px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; color: var(--orange); background: rgba(37,99,235,0.12); padding: 3px 9px; border-radius: 6px; }

/* multi-select dropdown */
.iv2-ms { position: relative; }
.iv2-ms-toggle { width: 100%; border: 1.5px solid #e2e8f0; border-radius: 9px; padding: 12px 14px; background: var(--off-white); font-family: 'Montserrat', sans-serif; font-size: 15px; color: var(--gray); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.iv2-ms-toggle:hover { border-color: var(--blue); }
.iv2-ms.open .iv2-ms-toggle { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,143,232,0.15); }
.iv2-ms-toggle.has-sel { color: var(--text); }
.iv2-ms-toggle .car { transition: transform 0.2s; flex-shrink: 0; font-size: 11px; color: var(--gray); }
.iv2-ms.open .iv2-ms-toggle .car { transform: rotate(180deg); }
.iv2-ms-menu { display: none; position: absolute; z-index: 20; top: calc(100% + 6px); left: 0; right: 0; background: white; border: 1.5px solid #e2e8f0; border-radius: 11px; box-shadow: 0 14px 40px -16px rgba(13,47,92,0.35); padding: 6px; max-height: 260px; overflow-y: auto; }
.iv2-ms.open .iv2-ms-menu { display: block; }
.iv2-ms-opt { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; cursor: pointer; font-size: 14px; color: var(--text); }
.iv2-ms-opt:hover { background: rgba(58,143,232,0.06); }
.iv2-ms-opt input { accent-color: var(--orange); width: 16px; height: 16px; }
.iv2-ms-other { margin-top: 10px; display: none; }
.iv2-ms-other.show { display: block; }

/* ============================================================
   REVIEW SUMMARY PREVIEW (inline, no backend)
   ============================================================ */
.iv2-preview-btn-row { text-align: center; margin-top: 4px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.iv2-summary { display: none; margin-top: 26px; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 40px -18px rgba(13,47,92,0.35); }
.iv2-summary.show { display: block; animation: ivfade 0.3s ease; }
@keyframes ivfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.iv2-summary-head { background: linear-gradient(135deg, var(--navy), #001B5A); color: white; padding: 24px 28px; }
.iv2-summary-head .eyebrow { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.iv2-summary-head h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; }
.iv2-summary-head p { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; }
.iv2-summary-body { background: white; padding: 26px 28px; }
.iv2-sum-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-bottom: 22px; }
.iv2-sum-card { border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px 18px; background: var(--off-white); }
.iv2-sum-card .lab { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.iv2-sum-card .val { font-size: 14px; color: var(--text); }
.iv2-sum-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.iv2-sum-tags span { font-size: 12px; font-weight: 500; background: rgba(58,143,232,0.1); color: var(--navy); padding: 4px 10px; border-radius: 999px; }
.iv2-sum-empty { font-size: 13px; color: var(--gray); font-style: italic; }
.iv2-sum-focus { border-top: 1px solid #e2e8f0; padding-top: 20px; }
.iv2-sum-focus h4 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.iv2-sum-focus ul { list-style: none; }
.iv2-sum-focus li { font-size: 14px; color: var(--gray-dark); line-height: 1.6; padding: 7px 0; display: flex; gap: 11px; align-items: flex-start; border-bottom: 1px solid #f0f2f8; }
.iv2-sum-focus li:last-child { border-bottom: none; }
.iv2-sum-focus li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.iv2-sum-note { margin-top: 18px; font-size: 12px; color: var(--gray); line-height: 1.6; background: var(--off-white); border-radius: 10px; padding: 13px 15px; }
.iv2-sum-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   ROUND 2.1 — DENSITY PASS (reduce vertical scroll 25-40%)
   Overrides earlier spacing. Placed last so it wins.
   ============================================================ */
.page-section { padding: 54px 32px; }
.page-hero { padding: 0; }
.page-hero-inner { padding: 72px 22px 56px; }
.block-head { margin-bottom: 28px; }
.block-head h2 { font-size: 28px; margin-bottom: 10px; }
.block-head p { font-size: 15px; }
.cta-banner { padding: 56px 32px; }
.cta-banner h2 { font-size: 32px; }

/* tighter hero on interior pages */
.page-hero h1 { font-size: 40px; margin-bottom: 16px; }
.page-hero .page-hero-sub { font-size: 16px; }
.iv-hero-ctas { margin-top: 24px; }
.iv-pills { margin-top: 22px; gap: 7px; }

/* overview paragraphs tighter */
.page-section.bg-white > .page-section-inner > p { font-size: 15px; margin-bottom: 12px; }

/* KPI + dashboard density */
.iv2-kpi-grid { gap: 14px; }
.iv2-kpi-cat { padding: 18px; }
.iv-dash { padding: 22px; }
.iv-stat-row { gap: 10px; margin-bottom: 12px; }
.iv-stat { padding: 13px 15px; }
.iv-stat .v { font-size: 22px; }
.iv-dash-grid { gap: 12px; }
.iv-panel { padding: 15px; }

/* AI + questions density */
.iv-ai-grid { gap: 14px; }
.iv-ai-card { padding: 20px; }
.iv2-qsub { margin-bottom: 18px; }

/* FORM: 2-column groups to roughly halve form height */
.iv-form { padding: 30px; }
.iv-fgroup { margin-bottom: 20px; }
.iv-fgroup h4 { margin-bottom: 12px; font-size: 16px; }
.iv-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; align-items: start; }
.iv-form-2col .iv-fgroup { margin-bottom: 4px; }
@media (max-width: 760px) { .iv-form-2col { grid-template-columns: 1fr; } }

/* ============================================================
   TABBED KPI LAYOUT (one category at a time)
   ============================================================ */
.iv3-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.iv3-tab { font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.04em; font-size: 14px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: all 0.18s; white-space: nowrap; }
.iv3-tab:hover { color: white; border-color: rgba(255,255,255,0.35); }
.iv3-tab.active { background: var(--orange); border-color: var(--orange); color: white; }
.page-section.bg-white .iv3-tab, .page-section.bg-light .iv3-tab { color: var(--gray-dark); background: var(--off-white); border-color: #e2e8f0; }
.page-section.bg-white .iv3-tab.active, .page-section.bg-light .iv3-tab.active { background: var(--orange); border-color: var(--orange); color: white; }

.iv3-panel { display: none; }
.iv3-panel.active { display: block; animation: ivfade 0.25s ease; }
.iv3-kpi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 12px; }
.iv3-kpi { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; overflow: hidden; }
.page-section.bg-white .iv3-kpi, .page-section.bg-light .iv3-kpi { background: var(--off-white); border-color: #e2e8f0; }
.iv3-kpi-name { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px 17px; cursor: pointer; user-select: none; font-family: 'Montserrat', sans-serif; font-size: 14.5px; font-weight: 700; color: white; transition: color 0.15s; }
.page-section.bg-white .iv3-kpi-name, .page-section.bg-light .iv3-kpi-name { color: var(--navy); }
.iv3-kpi-name .tg { width: 18px; height: 18px; border-radius: 50%; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 13px; opacity: 0.45; flex-shrink: 0; transition: transform 0.2s, opacity 0.2s; }
.iv3-kpi.open .iv3-kpi-name .tg { transform: rotate(45deg); opacity: 1; }
.iv3-kpi-body { display: none; padding: 0 17px 16px; }
.iv3-kpi.open .iv3-kpi-body { display: block; }
.iv3-row { padding: 9px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.page-section.bg-white .iv3-row, .page-section.bg-light .iv3-row { border-top-color: #e9edf4; }
.iv3-row .rl { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 3px; }
.iv3-row .rv { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.78); }
.page-section.bg-white .iv3-row .rv, .page-section.bg-light .iv3-row .rv { color: var(--gray-dark); }
.iv3-row.formula .rv { font-family: 'Montserrat', sans-serif; font-weight: 600; color: white; }
.page-section.bg-white .iv3-row.formula .rv, .page-section.bg-light .iv3-row.formula .rv { color: var(--navy); }
.iv3-row.bench .rv { color: #22c55e; }

/* ============================================================
   CONSTRUCTION QUESTIONS — DASHBOARD TILE GRID (3x4)
   ============================================================ */
.iv4-q-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.iv4-q { background: white; border: 1px solid #e2e8f0; border-radius: 14px; padding: 22px 22px 24px; min-height: 132px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; }
.page-section.bg-light .iv4-q { background: white; }
.iv4-q:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -20px rgba(13,47,92,0.4); border-color: rgba(58,143,232,0.4); }
.iv4-q-num { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 0.04em; color: var(--orange); display: flex; align-items: center; gap: 9px; }
.iv4-q-num::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, rgba(37,99,235,0.35), transparent); }
.iv4-q-text { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.38; color: var(--navy); margin-top: auto; }
@media (max-width: 880px) { .iv4-q-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .iv4-q-grid { grid-template-columns: 1fr; } .iv4-q { min-height: 0; } }

/* ============================================================
   INDUSTRY HERO STANDARDIZATION (match homepage two-column)
   ============================================================ */
.page-hero-std { padding-top: 72px; }
.page-hero-std .breadcrumb { margin-bottom: 16px; }
.page-hero-std .hero-content { text-align: left; }
.page-hero-std .iv-pills { justify-content: flex-start; margin-top: 22px; }
.page-hero-std .hero-eyebrow { margin-bottom: 12px; }

/* ============================================================
   NAV REBALANCE — larger logo, even spacing
   ============================================================ */
.nav-inner { max-width: 1340px; height: 116px; padding: 0 40px; }
.nav-logo img { height: 150px; }
.nav-links { gap: 40px; }
.nav-links a { font-size: 18px; }
/* let the logo breathe wider without pushing nav off-screen */
@media (max-width: 1100px) {
  .nav-inner { max-width: 1200px; }
  .nav-logo img { height: 120px; }
  .nav-links { gap: 28px; }
}

/* ============================================================
   NAV REBALANCE v3 — all 5 items spread evenly end-to-end
   ============================================================ */
.nav-inner {
  max-width: 1340px;
  display: flex;
  align-items: center;
  justify-content: space-between;   /* logo at far left, links fan out, button far right */
}
.nav-links {
  flex: 1;                          /* fill all space between logo and right edge */
  display: flex;
  align-items: center;
  justify-content: space-between;   /* the 4 links + button spread end-to-end */
  gap: 24px;
  margin-left: 56px;                /* gap from the logo */
  list-style: none;
}
.nav-links .nav-cta { margin-left: 0; }  /* part of the even spread, not pinned */
@media (max-width: 1100px) {
  .nav-links { margin-left: 28px; gap: 16px; }
}

/* ============================================================
   NAV REFINEMENT v4 — premium scaling & balance
   Larger links, tighter bar, proportional logo, standout CTA
   ============================================================ */
.nav-inner { height: 96px; max-width: 1340px; padding: 0 44px; }

/* logo: scaled down to sit proportional to bigger links (kills the "disconnected" mismatch) */
.nav-logo img { height: 104px; }

/* nav links: +~12% size, a touch brighter for premium feel */
.nav-links a { font-size: 20px; color: rgba(255,255,255,0.82); font-weight: 600; }
.nav-links a:hover { color: #fff; }

/* CTA: larger, bolder, lifted — clearly the primary action */
.nav-cta {
  padding: 15px 32px !important;
  font-size: 18px !important;
  border-radius: 8px;
  box-shadow: 0 8px 20px -6px rgba(37,99,235,0.55);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(37,99,235,0.65);
}

@media (max-width: 1100px) {
  .nav-inner { height: 84px; }
  .nav-logo img { height: 88px; }
  .nav-links a { font-size: 18px; }
}

/* ============================================================
   NAV REFINEMENT v5 — bigger logo, tighter centered nav,
   balanced bookend CTA. Refinement only, no redesign.
   ============================================================ */
/* keep header height as-is; allow big logo to overflow gracefully */
.nav-inner { height: 96px; overflow: visible; }
nav { overflow: visible; }

/* LOGO: ~+50% presence. 104px -> 156px, aspect ratio preserved (width:auto) */
.nav-logo { position: relative; z-index: 2; }
.nav-logo img { height: 156px; width: auto; }

/* NAV: one tight, centered group (not spread end-to-end) */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;     /* center the group in the space between logo and CTA */
  gap: 34px;                    /* tighter than the old 52px spread (~30% less) */
  margin: 0;
}
/* CTA sits at the far right as a bookend; equal visual breathing room both sides */
.nav-links .nav-cta { margin-left: 34px; }

/* CTA: slightly larger + larger text, same design */
.nav-cta {
  padding: 16px 34px !important;
  font-size: 19px !important;
}

@media (max-width: 1100px) {
  .nav-logo img { height: 120px; }
  .nav-links { gap: 22px; }
  .nav-links .nav-cta { margin-left: 22px; }
  .nav-cta { padding: 13px 26px !important; font-size: 17px !important; }
}

/* ============================================================
   CLIENT PORTAL LINK — secondary text link left of CTA
   ============================================================ */
.nav-portal {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s;
  margin-left: auto;   /* push Client Portal to the right, after the centered nav group */
}
.nav-portal:hover { color: #fff; }
/* CTA sits right after Client Portal with a normal gap (no longer needs auto-push) */
.nav-links .nav-cta { margin-left: 28px; }
@media (max-width: 1100px) {
  .nav-portal { font-size: 17px; }
  .nav-links .nav-cta { margin-left: 18px; }
}

/* ============================================================
   SOLUTION PAGES — new section components (.sol- prefix)
   ============================================================ */
/* What We Deliver — cards */
.sol-deliver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sol-deliver { background: white; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; transition: transform 0.18s, box-shadow 0.18s; }
.sol-deliver:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -22px rgba(13,47,92,0.4); }
.sol-deliver .ico { width: 46px; height: 46px; border-radius: 11px; background: rgba(58,143,232,0.12); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.sol-deliver:nth-child(even) .ico { background: rgba(37,99,235,0.12); color: var(--orange); }
.sol-deliver h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.sol-deliver p { font-size: 13.5px; color: var(--gray-dark); line-height: 1.55; }
@media (max-width: 860px) { .sol-deliver-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .sol-deliver-grid { grid-template-columns: 1fr; } }

/* KPI / Intelligence showcase — chips on navy */
.sol-intel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.sol-intel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); border-radius: 13px; padding: 20px; }
.sol-intel h5 { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.sol-intel ul { list-style: none; }
.sol-intel li { font-size: 13.5px; color: rgba(255,255,255,0.82); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 9px; align-items: flex-start; }
.sol-intel li:last-child { border-bottom: none; }
.sol-intel li::before { content: '▪'; color: var(--blue); flex-shrink: 0; }

/* Process flow — numbered steps */
.sol-process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; counter-reset: step; }
.sol-step { text-align: center; position: relative; padding: 0 6px; }
.sol-step .num { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), #2563EB); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; position: relative; z-index: 2; }
.sol-step:nth-child(even) .num { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.sol-step h5 { font-family: 'Montserrat', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.sol-step p { font-size: 12px; color: var(--gray); line-height: 1.45; }
.sol-step:not(:last-child)::after { content: ''; position: absolute; top: 24px; left: 60%; right: -40%; height: 2px; background: #dce3ee; z-index: 1; }
@media (max-width: 900px) { .sol-process { grid-template-columns: repeat(3,1fr); gap: 22px 12px; } .sol-step::after { display: none; } }
@media (max-width: 520px) { .sol-process { grid-template-columns: repeat(2,1fr); } }

/* Who This Is For — profile chips */
.sol-who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 14px; }
.sol-who { background: var(--off-white); border: 1px solid #e2e8f0; border-radius: 13px; padding: 22px 18px; text-align: center; }
.sol-who .ico { font-size: 28px; margin-bottom: 10px; }
.sol-who h5 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }

/* ============================================================
   NAV DROPDOWN MENUS (Industries / Solutions)
   ============================================================ */
.nav-dd { position: relative; }
.nav-dd > a { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dd > a .caret { font-size: 10px; opacity: 0.7; transition: transform 0.2s; }
.nav-dd:hover > a .caret, .nav-dd.open > a .caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 268px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  box-shadow: 0 18px 48px -16px rgba(13,47,92,0.4); padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity 0.18s, transform 0.18s; z-index: 200;
}
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px);
}
/* hover bridge so the menu doesn't vanish in the gap */
.nav-dd::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav-dd-menu a {
  display: block; padding: 11px 14px; border-radius: 8px; font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.02em; color: var(--navy) !important;
  text-decoration: none; white-space: nowrap; transition: background 0.15s, color 0.15s;
}
.nav-dd-menu a:hover { background: rgba(58,143,232,0.1); color: var(--blue) !important; }
@media (max-width: 1100px) {
  .nav-dd-menu { min-width: 230px; }
}

/* ============================================================
   ABOUT US PAGES (.ab- prefix)
   ============================================================ */
/* mission band */
.ab-mission { background: var(--off-white); border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px 32px; }
.ab-mission .lead { font-family: 'Montserrat', sans-serif; font-size: 22px; color: var(--navy); line-height: 1.4; margin-bottom: 14px; }
.ab-mission ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.ab-mission li { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); background: white; border: 1px solid #e2e8f0; border-radius: 999px; padding: 9px 18px; }

/* comparison two-column */
.ab-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ab-col { border-radius: 16px; padding: 26px; }
.ab-col.trad { background: var(--off-white); border: 1px solid #e2e8f0; }
.ab-col.ng { background: linear-gradient(150deg, var(--navy), #001B5A); color: #fff; }
.ab-col h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.ab-col.trad h4 { color: var(--gray-dark); }
.ab-col ul { list-style: none; }
.ab-col li { padding: 9px 0; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.ab-col.trad li { color: var(--gray-dark); border-bottom: 1px solid #e9edf4; }
.ab-col.ng li { color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.12); }
.ab-col li:last-child { border-bottom: none; }
.ab-col.trad li::before { content: '•'; color: var(--gray); }
.ab-col.ng li::before { content: '✓'; color: var(--orange); font-weight: 700; }
@media (max-width: 760px){ .ab-compare { grid-template-columns: 1fr; } }

/* vision pillars */
.ab-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ab-pillar { background: white; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; text-align: center; }
.ab-pillar .ico { font-size: 30px; margin-bottom: 12px; }
.ab-pillar h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.ab-pillar p { font-size: 13.5px; color: var(--gray-dark); line-height: 1.55; }
@media (max-width: 760px){ .ab-pillars { grid-template-columns: 1fr; } }

/* founder layout reuse iv-founder; add credentials list */
.ab-creds { list-style: none; margin-top: 16px; }
.ab-creds li { padding: 8px 0; font-size: 14.5px; color: var(--gray-dark); display: flex; gap: 11px; align-items: flex-start; border-bottom: 1px solid #f0f2f8; }
.ab-creds li:last-child { border-bottom: none; }
.ab-creds li::before { content: '▪'; color: var(--orange); flex-shrink: 0; }

/* contact layout */
.ab-contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 820px){ .ab-contact { grid-template-columns: 1fr; } }
.ab-contact-side { background: var(--off-white); border: 1px solid #e2e8f0; border-radius: 16px; padding: 26px; }
.ab-contact-side h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.ab-contact-side a { color: var(--blue); text-decoration: none; }
.ab-contact-side a:hover { text-decoration: underline; }
.ab-contact-row { padding: 11px 0; border-bottom: 1px solid #e9edf4; font-size: 14.5px; color: var(--gray-dark); }
.ab-contact-row:last-child { border-bottom: none; }
.ab-contact-row .lab { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 3px; }

/* ============================================================
   HERO REFINEMENT (eyebrow tri-phrase, bigger video, pillar cards)
   ============================================================ */
/* tri-phrase eyebrow: allow wrap on mobile, keep premium outlined pill */
@media (max-width: 600px){
}

/* video card ~18% larger: right column widened in base .hero-inner rule above.
   Mobile collapses to single column via the existing 980px breakpoint. */

/* bottom hero pillar cards: four equal-width premium blocks */
.hero-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-pillar { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-top: 2px solid rgba(37,99,235,0.55); border-radius: 10px; padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; transition: background 0.2s, border-color 0.2s; }
.hero-pillar:hover { background: rgba(255,255,255,0.06); border-top-color: var(--orange); }
.hero-pillar .word { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-pillar .desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
@media (max-width: 680px){
  .hero-pillars { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; padding-top: 28px; }
}
@media (max-width: 380px){
  .hero-pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   BPR CTA — two-button group (Book a Free Call + Contact Us)
   ============================================================ */
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white-outline { font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: transparent; color: #fff; padding: 15px 36px; border-radius: 8px; font-size: 15px; text-decoration: none; display: inline-block; border: 2px solid rgba(255,255,255,0.7); transition: transform 0.15s, background 0.15s, border-color 0.15s; }
.btn-white-outline:hover { transform: translateY(-2px); background: rgba(255,255,255,0.12); border-color: #fff; }

/* Pricing & Engagement Models — factor pills */
.price-factors { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.price-factors li { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); background: white; border: 1px solid #e2e8f0; border-left: 3px solid var(--orange); border-radius: 8px; padding: 12px 18px; }

/* ============================================================
   HERO REFINEMENT v2 — three pills, headline wrap, tighter
   spacing, slimmer pillar cards. Refinement only.
   ============================================================ */
/* three separate pills in a horizontal row */
.hero-eyebrow-group { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hero-eyebrow-group .hero-eyebrow { margin-bottom: 0; }   /* override the baked-in 24px */

/* headline: prevent "Era" orphan + give it room, balanced sizing */
.hero h1 { font-size: 46px; line-height: 1.18; margin-bottom: 18px; max-width: 24ch; }
.hero h1 .nowrap { white-space: nowrap; }

/* tighten vertical rhythm so the hero reads as one cohesive block */
.hero-sub { margin-bottom: 16px; }
.hero-sub + .hero-sub { margin-bottom: 24px; }   /* gap before buttons */
.hero-ctas { margin-bottom: 0; }

/* pillars: ~25-30% shorter, less padding, still brand pillars not cards */
.hero-pillars { margin-top: 30px; padding-top: 26px; gap: 12px; }
.hero-pillar { padding: 11px 13px 12px; gap: 3px; border-radius: 9px; }
.hero-pillar .word { font-size: 14px; }
.hero-pillar .desc { font-size: 11.5px; line-height: 1.45; }

@media (max-width: 600px){
  .hero-eyebrow-group .hero-eyebrow { font-size: 10px; padding: 5px 12px; letter-spacing: 0.1em; }
  .hero h1 { max-width: none; }
}

/* ============================================================
   NAV REFINEMENT v6 — definitive header layout
   DOM: nav-inner > [ .nav-logo , ul.nav-links(last li = CTA) ]
   Goal: logo far-left, nav links centered, CTA bookended far-right.
   Supersedes earlier nav blocks. Refinement only, no redesign.
   ============================================================ */
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr;   /* logo | everything else */
  align-items: center;
  column-gap: 40px;
  overflow: visible;
}
/* nav-links fills column 2 and lays out: [centered links] ........ [CTA] */
.nav-links {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;   /* link cluster centered in the available space */
  gap: 34px;
  margin: 0;
  width: 100%;
}
/* CTA is the last <li>; auto margin pins it to the far right as a bookend */
.nav-links > li:last-child { margin-left: auto; }
.nav-links .nav-cta {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .nav-inner { column-gap: 24px; }
  .nav-links { gap: 22px; }
}
