/* ============================================================
   VERSETAL — Shared Stylesheet  |  Proof-of-Concept v1
   ============================================================ */

/* 1. Variables + Reset */
:root {
  --accent:       #2872B9;
  --accent-h:     #1D5A9A;
  --accent-lt:    rgba(40,114,185,.18);
  --green:        #84C342;
  --green-lt:     rgba(132,195,66,.1);
  --logo-blue:    #2D5DBA;
  --bg:           #0B1829;
  --bg-2:         #0D1C34;
  --bg-3:         #080F1A;
  --bg-dark:      #0C1829;
  --bg-dark-2:    #111F33;
  --bg-mid:       #1A2B42;
  --bg-mid-2:     #142038;
  --bg-indigo:    #0F1330;
  --col-blue:     #7BB2D9;
  --surface:      #152035;
  --line:         rgba(255,255,255,.09);
  --text:         #EAF1FA;
  --muted:        rgba(255,255,255,.62);
  --dim:          rgba(255,255,255,.38);
  --mono:         'JetBrains Mono', 'Courier New', monospace;
  --sans:         'Outfit', 'Inter', sans-serif;
  --body:         'Inter', sans-serif;
  --r:            8px;
  --r-lg:         14px;
  --sh:           0 2px 12px rgba(0,0,0,.3);
  --sh-lg:        0 8px 28px rgba(0,0,0,.45);
  --max:          1100px;
  --nav-h:        68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); font-size: 16px; line-height: 1.7;
       color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 2. Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap');
h1,h2,h3,h4,h5 { font-family: var(--sans); font-weight: 700; line-height: 1.18; color: var(--text); }
h1   { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2   { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3   { font-size: 1.4rem; }
h4   { font-size: 1.05rem; }
p    { line-height: 1.75; }
.lede { font-size: 1.15rem; color: var(--muted); line-height: 1.7; max-width: 680px; }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: 0.7rem;
           letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
           font-weight: 600; margin-bottom: 12px; }
.eyebrow-light { color: rgba(255,255,255,.6); }

/* 3. Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section    { padding: 88px 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--bg-dark); }
.section-head { margin-bottom: 56px; }
.crumbs { font-size: .85rem; color: var(--dim); margin-bottom: 18px; }
.crumbs a { color: var(--dim); }
.crumbs a:hover { color: var(--accent); }

/* 4. Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
       background: rgba(8,15,26,.97); backdrop-filter: blur(10px);
       border-bottom: 1px solid rgba(255,255,255,.08); height: var(--nav-h); }
.nav-inner { display: flex; align-items: center; gap: 0; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--sans);
         font-size: 1.2rem; font-weight: 700; color: #fff; flex-shrink: 0; margin-right: 32px; }
.brand-mark { display: flex; align-items: center; }
.brand-logo { height: 51px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 0; flex: 1; }
.nav-links li { position: relative; }
.nav-links a, .nav-drop-btn { display: flex; align-items: center; gap: 5px;
  padding: 8px 16px; font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.6);
  background: none; border: none; cursor: pointer; font-family: var(--body);
  transition: color .15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active, .nav-drop-btn:hover { color: #fff; }
.nav-links a.active { color: var(--green); }
.nav-cta { margin-left: auto; padding: 9px 22px; background: var(--green);
           color: #0C1829; border-radius: var(--r); font-size: .9rem; font-weight: 600;
           font-family: var(--sans); transition: background .15s; white-space: nowrap; }
.nav-cta:hover { background: #95D24E; color: #0C1829; }
/* Mega-menu */
.nav-dropdown { position: relative; }
.mega-menu { display: none; position: absolute; top: 100%; margin-top: -1px; left: -16px;
             background: var(--bg); border: 1px solid var(--line); border-radius: 0 0 var(--r-lg) var(--r-lg);
             box-shadow: var(--sh-lg); min-width: 300px; padding: 28px 24px 24px;
             display: none; grid-template-columns: 1fr; gap: 0; }
.nav-dropdown:hover .mega-menu, .mega-menu:hover { display: grid; }
.nav-mini-drop { min-width: 180px !important; padding: 8px 0 !important; }
.nav-mini-drop .mega-col a { padding: 9px 18px; }
.mega-col h5 { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
               text-transform: uppercase; color: var(--dim); margin-bottom: 10px; }
.mega-col a { display: block; padding: 6px 0; font-size: .9rem; color: var(--muted);
              font-weight: 500; transition: color .12s; }
.mega-col a:hover { color: var(--accent); }
.mega-footer { grid-column: 1/-1; border-top: 1px solid var(--line); margin-top: 16px;
               padding-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.mega-footer a { font-size: .85rem; color: var(--accent); font-weight: 600; }
.caret { font-size: .75rem; }
/* Keyboard-open state for nav dropdown */
.nav-dropdown.is-open .mega-menu { display: grid; }

/* Accessibility — skip navigation link */
.skip-link {
  position: absolute; top: -999px; left: 0; z-index: 9999;
  background: var(--green); color: #000; padding: 10px 20px;
  font-weight: 700; font-family: var(--sans); font-size: .95rem;
  border-radius: 0 0 8px 0; white-space: nowrap;
}
.skip-link:focus { top: 0; }

/* Accessibility — required field star */
.req-star { color: var(--green); font-weight: 700; }

/* Accessibility — hint / note text contrast (was var(--dim) ~2.8:1, now var(--muted) ~4.6:1) */
.field-hint, .submit-note, .form-submit-note { color: var(--muted); }

/* Accessibility — visible focus ring on form inputs */
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--green);
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(132,195,66,.4);
}

/* 5. Buttons */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 26px;
       border-radius: var(--r); font-family: var(--sans); font-size: .92rem;
       font-weight: 600; cursor: pointer; border: none; transition: all .15s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-h); color: #fff; }
.btn-ghost { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-ghost:hover { background: var(--accent-lt); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-arrow::after { content: "→"; font-size: .85rem; }
.actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* 6. Hero */
body { padding-top: var(--nav-h); }
.home-hero { background: var(--bg-dark); padding: 100px 0 88px; position: relative; overflow: hidden; }
.home-hero::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(40,114,185,.25) 0%, transparent 70%); }
.home-hero .container { position: relative; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(40,114,185,.18);
              border: 1px solid rgba(40,114,185,.35); border-radius: 100px; padding: 5px 14px;
              font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
              color: rgba(255,255,255,.7); text-transform: uppercase; margin-bottom: 22px; }
.home-hero h1 { color: #fff; max-width: 800px; margin-bottom: 16px; }
.hero-subline { font-size: 1.15rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.hero-body { color: rgba(255,255,255,.75); max-width: 580px; margin-bottom: 32px; font-size: 1rem; }
.page-hero { background: var(--bg-dark); padding: 72px 0 64px; }
.page-hero h1 { color: #fff; max-width: 720px; margin: 10px 0 10px; }
.page-hero .cs-hero-subtitle { font-size: 1.15rem; font-weight: 400; color: rgba(255,255,255,.72); max-width: 680px; margin: 0 0 16px; line-height: 1.5; }
.page-hero .lede { color: rgba(255,255,255,.55); max-width: 620px; font-size: .95rem; }

/* 7. Sections: common */
.section-title { margin-bottom: 48px; }
.section-title h2 { margin-top: 8px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.six-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* 8. Stat bar */
.stat-bar { display: grid; grid-template-columns: repeat(4,1fr) 1.5fr; gap: 0;
            border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--mono); font-size: 1.7rem; font-weight: 700; color: var(--accent);
            letter-spacing: -.02em; display: block; }
.stat-lbl { font-size: .8rem; color: var(--muted); margin-top: 3px; }
.trust-logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-tag { background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px;
             padding: 5px 12px; font-size: .8rem; color: var(--muted); font-family: var(--mono); }

/* 9. Audience tabs */
.tab-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin-bottom: 32px; }
.tab-btn { background: none; border: none; padding: 10px 18px; font-family: var(--body);
           font-size: .9rem; font-weight: 500; color: var(--muted); cursor: pointer;
           border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .15s; }
.tab-btn.active, .tab-btn:hover { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.audience-card { background: var(--surface); border: 1px solid var(--line);
                 border-radius: var(--r-lg); padding: 36px; }
.audience-card blockquote { font-size: 1.25rem; font-style: italic; color: var(--text);
                             line-height: 1.55; margin-bottom: 20px; font-family: var(--sans); }
.audience-card blockquote::before { content: "\201C"; color: var(--accent); }
.audience-card blockquote::after  { content: "\201D"; color: var(--accent); }
.audience-answer { padding: 18px 22px; background: var(--accent-lt);
                   border-left: 3px solid var(--accent); border-radius: 0 var(--r) var(--r) 0; }
.audience-answer strong { color: var(--accent); font-size: .8rem; letter-spacing: .1em;
                           text-transform: uppercase; font-family: var(--mono); display: block; margin-bottom: 4px; }
.audience-answer p { color: var(--text); font-size: .97rem; margin: 0; }

/* 10. Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
                border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2px; }
.pillar { background: var(--surface); padding: 32px 28px; }
.pillar h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 10px; }
.pillar-outcome { font-size: .82rem; color: var(--accent); font-style: italic; margin-bottom: 14px;
                  padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.pillar ul { list-style: none; padding: 0; margin: 0; }
.pillar ul li { display: flex; gap: 10px; align-items: baseline; font-size: .92rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.pillar ul li:last-child { margin-bottom: 0; }
.pillar ul li::before { content: "→"; color: var(--green); font-family: var(--mono); flex-shrink: 0; }
.mgd-bar { background: var(--bg-dark-2); border-radius: 0 0 var(--r-lg) var(--r-lg);
           border: 1px solid rgba(255,255,255,.07); border-top: none;
           padding: 18px 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mgd-bar-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
                 text-transform: uppercase; color: var(--accent); font-weight: 600; white-space: nowrap; }
.mgd-bar p { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }
.mgd-bar a { color: rgba(255,255,255,.5); font-size: .82rem; margin-left: auto; white-space: nowrap; }
.mgd-bar a:hover { color: var(--accent); }

/* 11. Managed services two-col */
.svc-card { background: var(--surface); border: 1px solid var(--line);
            border-radius: var(--r-lg); padding: 36px; height: 100%; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.svc-tagline { font-style: italic; color: var(--dim); font-size: .9rem; margin-bottom: 20px;
               padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.svc-card ul { list-style: none; padding: 0; margin-bottom: 20px; }
.svc-card ul li { display: flex; gap: 10px; align-items: baseline; font-size: .88rem; color: var(--muted); margin-bottom: 10px; line-height: 1.55; }
.svc-card ul li:last-child { margin-bottom: 0; }
.svc-card ul li::before { content: "→"; color: var(--green); font-family: var(--mono); flex-shrink: 0; }
.svc-pullout { background: var(--bg-2); border-left: 3px solid var(--green);
               padding: 12px 16px; border-radius: 0 var(--r) var(--r) 0;
               font-style: italic; font-size: .88rem; color: var(--text); }
.tier-bar { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
            padding: 16px 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
            margin-top: 20px; font-size: .88rem; }
.tier-bar strong { color: var(--text); }
.tier-bar span { color: var(--muted); }
.tier-sep { color: var(--line); }
.bridge-note { background: var(--accent-lt); border: 1px solid rgba(40,114,185,.2);
               border-radius: var(--r); padding: 16px 22px; margin-top: 16px;
               font-size: .9rem; color: var(--text); }
.bridge-note strong { color: var(--accent); }

/* 12. Unified View */
.unified-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.visual-placeholder { background: var(--bg-2); border: 1px dashed var(--line);
                      border-radius: var(--r-lg); height: 280px; display: flex;
                      align-items: center; justify-content: center; color: var(--dim);
                      font-family: var(--mono); font-size: .8rem; }

/* 13. Phases */
.phase { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
         padding: 44px 0; border-bottom: 1px solid var(--line); }
.phase:last-child { border-bottom: none; }
.phase-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.phase-num { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
             text-transform: uppercase; color: var(--accent); font-weight: 600; }
.phase h3 { margin-bottom: 8px; font-size: 1.15rem; }
.phase-desc { color: var(--muted); font-size: .92rem; margin-bottom: 14px; font-style: italic; }
.phase ul { list-style: none; padding: 0; margin: 0; }
.phase ul li { display: flex; gap: 10px; align-items: baseline; font-size: .9rem; color: var(--muted); margin-bottom: 12px; line-height: 1.55; }
.phase ul li:last-child { margin-bottom: 0; }
.phase ul li::before { content: "→"; color: var(--green); font-family: var(--mono); flex-shrink: 0; }
.phase-visual { background: var(--bg-2); border: 1px dashed var(--line); border-radius: var(--r-lg);
                min-height: 180px; display: flex; align-items: center; justify-content: center;
                color: var(--dim); font-family: var(--mono); font-size: .8rem; }

/* Phase tab interface */
.phase-tab-strip { display: flex; border-bottom: 2px solid var(--line); }
.phase-tab-btn { flex: 1; padding: 12px 6px; background: none; border: none;
                 border-bottom: 2px solid transparent; margin-bottom: -2px;
                 cursor: pointer; text-align: center; font-family: var(--body); transition: all .15s; }
.phase-tab-btn.active, .phase-tab-btn:hover { border-bottom-color: var(--accent); }
.phase-tab-num { display: block; font-family: var(--mono); font-size: .68rem;
                 letter-spacing: .12em; color: var(--dim); transition: color .15s; }
.phase-tab-label { display: block; font-size: .85rem; font-weight: 600; font-family: var(--sans);
                   color: var(--muted); margin-top: 3px; transition: color .15s; }
.phase-tab-btn.active .phase-tab-num, .phase-tab-btn.active .phase-tab-label,
.phase-tab-btn:hover .phase-tab-num, .phase-tab-btn:hover .phase-tab-label { color: var(--accent); }
.phase-tab-content { border: 1px solid var(--line); border-top: none;
                     border-radius: 0 0 var(--r-lg) var(--r-lg); padding: 36px; }
.phase-panel { display: none; }
.phase-panel.active { display: block; }

/* 14. Values */
.advantage-block { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.domain-bar { background: var(--bg-dark); padding: 20px 28px; display: flex; align-items: flex-start; gap: 28px; }
.domain-bar-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); font-weight: 600; white-space: nowrap; padding-top: 3px; min-width: 140px; }
.domain-bar p { color: rgba(255,255,255,.65); font-size: .92rem; margin: 0; line-height: 1.65; }
.advantage-block .values-grid { border: none; border-radius: 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
               border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.value-card { background: var(--surface); padding: 30px 26px; }
.value-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.value-card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* 15. Industry cards */
.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ind-card { background: var(--surface); border: 1px solid var(--line);
            border-radius: var(--r-lg); padding: 28px; transition: box-shadow .15s; }
.ind-card:hover { box-shadow: var(--sh); }
.ind-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.ind-card p  { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.featured-star { color: var(--accent); margin-left: 4px; }

/* 16. Results / case study cards (homepage) */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.result-card { background: var(--surface); border: 1px solid var(--line);
               border-radius: var(--r-lg); padding: 28px; transition: box-shadow .15s; }
.result-card:hover { box-shadow: var(--sh); }
.result-industry { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
                   text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.result-stat { font-family: var(--sans); font-size: 2.2rem; font-weight: 800; color: var(--text);
               line-height: 1; margin-bottom: 4px; }
.result-stat-lbl { font-size: .8rem; color: var(--dim); margin-bottom: 14px; }
.result-client { font-size: .82rem; color: var(--dim); font-style: italic; margin-bottom: 10px; }
.result-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.result-card a { font-size: .85rem; font-weight: 600; color: var(--accent); }

/* 17. Resources */
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.resource-card { background: var(--bg-2); border: 1px solid var(--line);
                 border-radius: var(--r-lg); overflow: hidden; }
.resource-img { height: 160px; background: var(--bg-3); display: flex; align-items: center;
                justify-content: center; color: var(--dim); font-family: var(--mono); font-size: .78rem; }
.resource-body { padding: 20px; }
.resource-body h4 { font-size: .95rem; margin-bottom: 6px; }
.resource-body span { font-size: .8rem; color: var(--dim); }

/* 18. Closing CTA band */
.cta-band { background: var(--bg-dark); padding: 88px 0; }
.cta-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cta-card h2 { color: #fff; margin: 10px 0 16px; }
.cta-card p { color: rgba(255,255,255,.65); }
.cta-card .eyebrow { color: var(--green); }
.workshop-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.workshop { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--r); padding: 22px; }
.workshop h4 { color: #fff; font-size: .98rem; margin-bottom: 8px; }
.workshop p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }
.sdr-note { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
            border-radius: var(--r); padding: 14px 20px; font-size: .87rem;
            font-style: italic; color: rgba(255,255,255,.5); margin-top: 20px; }

/* 19. Footer */
.footer { background: #080F1A; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr 1fr; gap: 32px;
               padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-tagline { color: rgba(255,255,255,.6); font-size: .84rem; margin-top: 10px; line-height: 1.6; }
.footer-col h3 { color: rgba(255,255,255,.85); font-family: var(--sans); font-size: .82rem;
                 margin-bottom: 14px; font-weight: 600; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .84rem; transition: color .12s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between;
                 padding-top: 24px; font-size: .8rem; color: rgba(255,255,255,.55); }
.footer .brand { color: rgba(255,255,255,.9); }

/* 20. Cap-detail (capabilities + industries page) */
.cap-detail { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start;
              padding: 60px 0; border-bottom: 1px solid var(--line); }
.cap-detail:last-of-type { border-bottom: none; }
.cap-num { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
           text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.cap-detail h2 { font-size: 1.5rem; margin: 0 0 14px; }
.cap-what { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.cap-detail ul { list-style: none; padding: 0; }
.cap-detail ul li { display: flex; gap: 10px; align-items: baseline; font-size: .92rem; color: var(--muted); margin-bottom: 8px; line-height: 1.6; }
.cap-detail ul li:last-child { margin-bottom: 0; }
.cap-detail ul li::before { content: "→"; color: var(--green); font-family: var(--mono); flex-shrink: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px;
       padding: 4px 12px; font-size: .8rem; color: var(--muted); font-family: var(--mono); }

/* 21. Case studies page */
.case { display: grid; grid-template-columns: 220px 1fr; gap: 40px;
        padding: 52px 0; border-bottom: 1px solid var(--line); align-items: start; }
.case:last-of-type { border-bottom: none; }
.meta-col { display: flex; flex-direction: column; gap: 16px; }
.industry-pill { display: inline-block; background: var(--accent-lt); color: var(--accent);
                 font-size: .78rem; font-weight: 600; padding: 5px 14px; border-radius: 100px;
                 font-family: var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.stat-block .num { font-family: var(--sans); font-size: 2.4rem; font-weight: 800;
                   color: var(--text); line-height: 1; }
.stat-block .lbl { font-size: .8rem; color: var(--dim); margin-top: 2px; }
.caps-used { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em;
             text-transform: uppercase; color: var(--dim); }
.caps-used ul { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 6px; }
.caps-used ul li { background: var(--bg-2); border: 1px solid var(--line);
                   border-radius: 6px; padding: 3px 10px; font-size: .78rem;
                   color: var(--muted); text-transform: none; letter-spacing: 0; }
.case h3 { font-size: 1.4rem; margin-bottom: 10px; }
.case .summary { color: var(--muted); font-size: .95rem; margin-bottom: 24px; line-height: 1.7; }
.case-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-detail-lbl { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em;
                   text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.case-detail p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* 22. Services page */
.svc-section { padding: 60px 0; border-bottom: 1px solid var(--line); }
.svc-section:last-of-type { border-bottom: none; }
.svc-section h2 { font-size: 1.5rem; margin-bottom: 8px; }
.svc-section ul { list-style: none; padding: 0; margin: 0; }
.svc-section ul li { display: flex; gap: 10px; align-items: baseline; font-size: .93rem; color: var(--muted); margin-bottom: 9px; line-height: 1.5; }
.svc-section ul li:last-child { margin-bottom: 0; }
.svc-section ul li::before { content: "→"; color: var(--green); font-family: var(--mono); flex-shrink: 0; }
.svc-why { background: var(--bg-2); border-left: 3px solid var(--green);
           padding: 16px 20px; margin-top: 24px; border-radius: 0 var(--r) var(--r) 0; font-size: .93rem; }

/* 23. Tiers */
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
              border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.tier-card { background: var(--surface); padding: 30px 24px; }
.tier-card.featured { background: var(--accent); }
.tier-card.featured h3, .tier-card.featured p, .tier-card.featured li { color: #fff; }
.tier-card.featured .eyebrow { color: rgba(255,255,255,.7); }
.tier-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.tier-card .tier-sub { font-style: italic; font-size: .88rem; color: var(--muted);
                       margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.tier-card.featured .tier-sub { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
.tier-card ul { list-style: none; padding: 0; }
.tier-card ul li { display: flex; gap: 9px; align-items: baseline; font-size: .87rem; color: var(--muted); margin-bottom: 7px; line-height: 1.55; }
.tier-card ul li:last-child { margin-bottom: 0; }
.tier-card ul li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.tier-card.featured ul li::before { color: #fff; }
.svc-section ul li strong, .cap-detail ul li strong, .pillar ul li strong, .phase ul li strong {
  color: var(--text); font-weight: 600;
}

/* 24. About page */
.leader-row { display: grid; grid-template-columns: 100px 1fr; gap: 32px; align-items: start;
              padding: 48px 0; border-bottom: 1px solid var(--line); }
.leader-photo { width: 80px; height: 80px; border-radius: 50%; background: var(--accent-lt);
                display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
                font-family: var(--sans); font-size: 1.2rem; font-weight: 700; color: var(--accent); }
.leader-photo img { width: 80px; height: 80px; object-fit: cover; object-position: center top; display: block; }
.leader-role { font-size: .88rem; color: var(--dim); font-family: var(--mono); margin-bottom: 12px; }
.leader-row p { color: var(--muted); font-size: .93rem; line-height: 1.7; margin-bottom: 12px; }
.numbers-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
               border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.number-cell { background: var(--surface); padding: 28px; text-align: center; }
.number-cell .big { font-family: var(--mono); font-size: 2rem; font-weight: 700; color: var(--accent); }
.number-cell .lbl { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.cert-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

/* 25. Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--r);
  font-family: var(--body); font-size: .95rem; color: var(--text); background: var(--surface);
  transition: border-color .12s; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sidebar-box { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
               padding: 24px; margin-bottom: 18px; }
.sidebar-box h4 { font-size: 1rem; margin-bottom: 12px; }
.sidebar-box ul { padding-left: 0; }
.sidebar-box ul li { font-size: .88rem; color: var(--muted); margin-bottom: 8px; line-height: 1.55; }
.sidebar-box ul li a { color: var(--accent); text-decoration: underline; text-decoration-style: dotted; }
.connect-line { font-size: .9rem; color: var(--muted); line-height: 2; }
.connect-line a { color: var(--accent); }

/* 26. Compositions (capabilities page CTA) */
.compose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.compose-item { background: var(--bg-2); border: 1px solid var(--line);
                border-radius: var(--r); padding: 16px 20px; font-size: .9rem; color: var(--text); }
.compose-arrow { color: var(--accent); font-weight: 700; }

/* Utility */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* 27. Mid-dark section (Layered Professional theme) */
.section-mid { background: var(--bg-mid); }
.section-mid .section-title h2,
.section-mid h2, .section-mid h3, .section-mid h4 { color: #fff; }
.section-mid .section-title .eyebrow { color: var(--green); }
.section-mid .lede { color: rgba(255,255,255,.6); }
.section-mid .svc-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.section-mid .svc-card h3 { color: #fff; }
.section-mid .svc-card li { color: rgba(255,255,255,.65); }
.section-mid .svc-tagline { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.1); }
.section-mid .svc-pullout { background: rgba(255,255,255,.06); border-color: var(--green);
                             color: rgba(255,255,255,.8); }
.section-mid .tier-bar { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.section-mid .tier-bar strong { color: #fff; }
.section-mid .tier-bar span { color: rgba(255,255,255,.6); }
.section-mid .tier-sep { color: rgba(255,255,255,.15); }
.section-mid .bridge-note { background: rgba(40,114,185,.2); border-color: rgba(40,114,185,.35);
                             color: rgba(255,255,255,.8); }
.section-mid .bridge-note strong { color: #7BB2D9; }
.section-mid .mgd-bar { background: rgba(0,0,0,.2); border-color: rgba(255,255,255,.08); }
.section-mid .btn-primary { background: var(--green); color: #0C1829; }
.section-mid .btn-primary:hover { background: #95D24E; }

/* 28. Homepage capability cards */
.home-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .home-cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .home-cap-grid { grid-template-columns: 1fr; } }

.home-cap {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  color: inherit;
}
.home-cap:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 8px 28px rgba(132,195,66,.14);
}
.home-cap-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(132,195,66,.15), rgba(40,114,185,.09));
  border: 1px solid rgba(132,195,66,.28);
  color: var(--green);
  flex-shrink: 0;
}
.home-cap h3 { font-size: 1.1rem; }
.home-cap p { color: var(--muted); font-size: .9rem; line-height: 1.65; flex: 1; }
.home-cap-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.home-cap-tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.home-cap-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s;
  margin-top: 4px;
}
.home-cap:hover .home-cap-link { gap: 9px; }

/* 30. Scroll offset — compensates for two stacked sticky bars (main nav + section nav)
   so anchor targets land with their heading visible, not hidden under the navbars */
section[id], article[id] {
  scroll-margin-top: calc(var(--nav-h) + 52px);
}

/* 30b. Section nav — sticky sub-navigation bar */
.section-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 89;
  background: rgba(6,12,22,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.05);
}
.section-nav-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 8px;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-inner a {
  display: inline-flex;
  align-items: center;
  padding: 11px 13px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.section-nav-inner a:hover { color: rgba(255,255,255,.78); }
.section-nav-inner a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* 32. Inner-page full-width alternating section dividers
   .sec-green : indigo bg  + 3px green top border + green glow
   .sec-blue  : steel-blue + 3px blue  top border + blue  glow
   ─────────────────────────────────────────────────────────── */
.sec-green {
  background: var(--bg-indigo);
  border-top: 3px solid var(--green);
  position: relative;
}
.sec-green::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(132,195,66,.1), transparent);
}
.sec-blue {
  background: var(--bg-2);
  border-top: 3px solid var(--col-blue);
  position: relative;
}
.sec-blue::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(123,178,217,.12), transparent);
}
/* Remove internal bottom borders — alternating bg creates visual separation */
.sec-green .cap-detail, .sec-blue .cap-detail,
.sec-green .cap-detail:last-of-type, .sec-blue .cap-detail:last-of-type,
.sec-green .svc-section, .sec-blue .svc-section,
.sec-green .case, .sec-blue .case { border-bottom: none; }
/* Accent colours per section type */
.sec-green .eyebrow, .sec-green .cap-num { color: var(--green); }
.sec-blue  .eyebrow, .sec-blue  .cap-num { color: var(--col-blue); }
/* Tags */
.sec-green .tag, .sec-blue .tag {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.48);
}
/* svc-why callout */
.sec-green .svc-why { background: rgba(132,195,66,.08);  border-left-color: var(--green);    color: rgba(255,255,255,.78); }
.sec-blue  .svc-why { background: rgba(123,178,217,.08); border-left-color: var(--col-blue); color: rgba(255,255,255,.78); }
/* bridge-note */
.sec-green .bridge-note, .sec-blue .bridge-note { background: rgba(123,178,217,.08); border-color: rgba(123,178,217,.3); color: rgba(255,255,255,.78); }
.sec-green .bridge-note strong, .sec-blue .bridge-note strong { color: var(--col-blue); }
/* case-detail-lbl */
.sec-green .case-detail-lbl { color: var(--green); }
.sec-blue  .case-detail-lbl { color: var(--col-blue); }
/* industry-pill */
.sec-green .industry-pill { background: rgba(132,195,66,.15);  color: var(--green); }
.sec-blue  .industry-pill { background: rgba(123,178,217,.15); color: var(--col-blue); }
/* stat-block numbers */
.sec-green .stat-block .num { color: var(--green); }
.sec-blue  .stat-block .num { color: var(--col-blue); }
/* tier cards */
.sec-blue .tier-card { background: var(--surface); border: 1px solid rgba(255,255,255,.1); }
.sec-blue .tier-card.featured { background: var(--accent); border-color: var(--accent); }
.sec-blue .tier-card h3 { color: var(--text); }
.sec-blue .tier-card .tier-sub { color: rgba(255,255,255,.5); }
.sec-blue .tier-card ul li { color: rgba(255,255,255,.6); font-size: .9rem; }

/* 31. Option D — Section design language (applied to index.html via section IDs)
   Backgrounds: navy #0B1829 / steel-blue #0D1C34 / indigo #0F1330 rotate
   Accents: green #84C342 / blue #7BB2D9 alternate per section
   Each section: 3px top border + radial glow fading down
   ─────────────────────────────────────────────────────────────────────── */

/* Base: all body sections use the dark bg */
body { background: var(--bg); color: var(--text); }
.section, .section-alt { background: var(--bg); }
.section-alt { background: var(--bg-2); }
.section-mid { background: var(--bg-indigo); }

/* Eyebrow default → green on dark */
.eyebrow { color: var(--green); }

/* ── Stats bar ─────────────────────────────── */
#stats-bar { background: var(--bg-3); border-bottom: 1px solid rgba(255,255,255,.06); }
.stat-bar   { border-color: rgba(255,255,255,.06); background: transparent; }
.stat-item  { border-color: rgba(255,255,255,.06); }
.stat-num   { color: var(--green); }
.stat-lbl   { color: rgba(255,255,255,.48); }

/* ── Capability cards — Indigo + GREEN ─────── */
#caps-cards {
  background: var(--bg-indigo);
  border-top: 3px solid var(--green);
  position: relative;
}
#caps-cards::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(132,195,66,.12), transparent);
}
#caps-cards .eyebrow { color: var(--green); }
#caps-cards .domain-callout { background: rgba(132,195,66,.07); border-color: var(--green); color: rgba(255,255,255,.7); }
#caps-cards .home-cap { background: var(--surface); border-color: rgba(255,255,255,.1); }
#caps-cards .home-cap h3 { color: var(--text); }
#caps-cards .home-cap p   { color: rgba(255,255,255,.62); }
#caps-cards .home-cap:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(132,195,66,.2); }
#caps-cards .home-cap-icon { background: linear-gradient(135deg, rgba(132,195,66,.18), rgba(132,195,66,.06)); border-color: rgba(132,195,66,.35); color: var(--green); }
#caps-cards .home-cap-tag  { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.4); }
#caps-cards .home-cap-link { color: var(--green); }

/* ── Audience tabs — Steel-blue + BLUE ─────── */
#audience-sec {
  background: var(--bg-2);
  border-top: 3px solid var(--col-blue);
  position: relative;
}
#audience-sec::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(123,178,217,.12), transparent);
}
#audience-sec .eyebrow { color: var(--col-blue); }
#audience-sec .tab-nav  { border-color: rgba(255,255,255,.1); }
#audience-sec .tab-btn  { color: rgba(255,255,255,.45); }
#audience-sec .tab-btn.active,
#audience-sec .tab-btn:hover { color: var(--col-blue); border-bottom-color: var(--col-blue); }
#audience-sec .audience-card { background: var(--surface); border-color: rgba(123,178,217,.22); }
#audience-sec .audience-card blockquote { color: var(--text); }
#audience-sec .audience-card blockquote::before,
#audience-sec .audience-card blockquote::after { color: var(--col-blue); }
#audience-sec .audience-answer { background: rgba(123,178,217,.1); border-left-color: var(--col-blue); }
#audience-sec .audience-answer strong { color: var(--col-blue); }
#audience-sec .audience-answer p { color: rgba(255,255,255,.8); }

/* ── Three pillars — Blue-grey gradient + GREEN ── */
#pillars-sec {
  background: linear-gradient(180deg, #1A2B42 0%, #0B1829 100%);
  border-top: 3px solid var(--green);
  position: relative;
}
#pillars-sec::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 30% at 50% 0%, rgba(180,210,240,.06), transparent);
}
#pillars-sec .eyebrow { color: var(--green); }
#pillars-sec .lede { color: rgba(255,255,255,.6); }
#pillars-sec .pillars-grid { border-color: rgba(255,255,255,.08); }
#pillars-sec .pillar { background: var(--surface); }
#pillars-sec .pillar h3 { color: var(--text); }
#pillars-sec .pillar-outcome { color: var(--green); border-color: rgba(255,255,255,.08); }
#pillars-sec .pillar ul li { color: rgba(255,255,255,.62); }
#pillars-sec .mgd-bar { background: rgba(0,0,0,.3); border-color: rgba(255,255,255,.07); }
#pillars-sec .mgd-bar-label { color: var(--green); }
#pillars-sec .mgd-bar p, #pillars-sec .mgd-bar a { color: rgba(255,255,255,.5); }

/* ── Managed services — Indigo + BLUE ────────── */
#managed {
  background: var(--bg-indigo);
  border-top: 3px solid var(--col-blue);
  position: relative;
}
#managed::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(123,178,217,.12), transparent);
}
#managed .section-title .eyebrow { color: var(--col-blue) !important; }
#managed h2, #managed h3, #managed h4 { color: var(--text); }
#managed .lede { color: rgba(255,255,255,.6); }
#managed .svc-card {
  background: var(--surface);
  border-color: rgba(123,178,217,.2);
  border-left: 3px solid rgba(123,178,217,.5);
}
#managed .svc-card h3 { color: var(--text); }
#managed .svc-tagline { color: rgba(255,255,255,.45); border-color: rgba(255,255,255,.08); }
#managed .svc-card ul li { color: rgba(255,255,255,.62); }
#managed .svc-pullout { background: rgba(132,195,66,.08); border-color: var(--green); color: rgba(255,255,255,.8); }
#managed .tier-bar { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
#managed .tier-bar strong { color: var(--text); }
#managed .tier-bar span { color: rgba(255,255,255,.62); }
#managed .tier-sep { color: rgba(255,255,255,.12); }
#managed .bridge-note { background: rgba(123,178,217,.1); border-color: rgba(123,178,217,.3); color: rgba(255,255,255,.8); }
#managed .bridge-note strong { color: var(--col-blue); }
#managed .btn-primary { background: var(--green); color: #0B1829; }
#managed .btn-primary:hover { background: #95D24E; }

/* ── OneView — Blue-grey gradient + BLUE ───── */
#unified {
  background: linear-gradient(180deg, #1A2B42 0%, #0B1829 100%);
  border-top: 3px solid var(--col-blue);
  position: relative;
}
#unified::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 30% at 50% 0%, rgba(180,210,240,.06), transparent);
}
#unified .eyebrow { color: var(--col-blue); }
#unified h2 { color: var(--text); }
#unified p { color: rgba(255,255,255,.65); }
#unified strong { color: var(--text); }
#unified .btn-ghost { color: var(--col-blue); border-color: rgba(123,178,217,.45); }
#unified .btn-ghost:hover { background: rgba(123,178,217,.1); }
#unified .visual-placeholder { background: var(--surface); border-color: rgba(123,178,217,.2); color: rgba(255,255,255,.25); }

/* ── Process phases — Navy + GREEN ────────────── */
#process {
  background: var(--bg);
  border-top: 3px solid var(--green);
  position: relative;
}
#process::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 35% at 50% 0%, rgba(132,195,66,.09), transparent);
}
#process .eyebrow { color: var(--green); }
#process .lede { color: rgba(255,255,255,.6); }
#process .phase-tab-strip { border-color: rgba(255,255,255,.1); }
#process .phase-tab-btn { background: none; }
#process .phase-tab-num   { color: rgba(255,255,255,.3); }
#process .phase-tab-label { color: rgba(255,255,255,.55); }
#process .phase-tab-btn.active .phase-tab-num,
#process .phase-tab-btn.active .phase-tab-label,
#process .phase-tab-btn:hover  .phase-tab-num,
#process .phase-tab-btn:hover  .phase-tab-label { color: var(--green); }
#process .phase-tab-btn.active { border-bottom-color: var(--green); }
#process .phase-tab-content { background: rgba(255,255,255,.02); border-color: rgba(255,255,255,.08); }
#process .phase-num { color: var(--green); }
#process .phase h3 { color: var(--text); }
#process .phase-desc { color: rgba(255,255,255,.55); }
#process .phase ul li { color: rgba(255,255,255,.62); }
#process .phase-visual { background: var(--surface); border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.22); }

/* ── Industries — Indigo + BLUE ────────────── */
#industries-sec {
  background: var(--bg-indigo);
  border-top: 3px solid var(--col-blue);
  position: relative;
}
#industries-sec::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(123,178,217,.1), transparent);
}
#industries-sec .eyebrow { color: var(--col-blue); }
#industries-sec .ind-card { background: var(--surface); border-color: rgba(255,255,255,.1); }
#industries-sec .ind-card h3 { color: var(--text); }
#industries-sec .ind-card p  { color: rgba(255,255,255,.6); }
#industries-sec .ind-card:hover { border-color: var(--col-blue); box-shadow: 0 4px 22px rgba(123,178,217,.18); }

/* ── Customer results — Steel-blue + GREEN ────── */
#results-sec {
  background: var(--bg-2);
  border-top: 3px solid var(--green);
  position: relative;
}
#results-sec::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(132,195,66,.12), transparent);
}
#results-sec .eyebrow { color: var(--green); }
#results-sec .lede { color: rgba(255,255,255,.6); }
#results-sec .result-card { background: var(--surface); border-color: rgba(132,195,66,.22); }
#results-sec .result-industry { color: var(--col-blue); }
#results-sec .result-stat     { color: var(--green); }
#results-sec .result-stat-lbl,
#results-sec .result-client   { color: rgba(255,255,255,.42); }
#results-sec .result-card p   { color: rgba(255,255,255,.65); }
#results-sec .result-card a   { color: var(--green); }
#results-sec .result-card:hover { border-color: var(--green); box-shadow: 0 4px 22px rgba(132,195,66,.18); }

/* ── CTA workshops — Near-black + BLUE ─────── */
#workshops {
  background: var(--bg-3);
  border-top: 3px solid var(--col-blue);
  position: relative;
}
#workshops::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 30% at 50% 0%, rgba(123,178,217,.08), transparent);
}
.cta-card { background: linear-gradient(160deg, #111F33, #0B1829); border-color: rgba(255,255,255,.1); }
.workshop  { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.workshop h4 { color: var(--text); }
.workshop p  { color: rgba(255,255,255,.6); }
.sdr-note    { color: rgba(255,255,255,.45); border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.04); }

/* ── Footer ─────────────────────────────────── */
.footer { background: #050D17; border-top: 1px solid rgba(255,255,255,.06); }

/* ── Global dark card overrides ─────────────── */
.audience-card, .pillar, .svc-card, .ind-card,
.result-card, .value-card, .tier-card,
.phase-tab-content { background: var(--surface); border-color: rgba(255,255,255,.1); }
.phase-tab-content { background: rgba(255,255,255,.02); }
.home-cap-tag  { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.4); }
.ind-card h3   { color: var(--text); }
.ind-card p    { color: rgba(255,255,255,.6); }
.result-stat   { color: var(--green); }
.result-stat-lbl, .result-client { color: rgba(255,255,255,.42); }
.result-card p { color: rgba(255,255,255,.65); }
.result-card a { color: var(--green); }

/* 29. Case study sub-page shared components */
.cs-quote-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg, 14px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  margin: 28px 0;
}
.cs-quote-card-img {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
.cs-quote-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface, rgba(255,255,255,.04));
}
.cs-quote-card-body blockquote {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: .95rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
}
.cs-quote-card-body cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: .82rem;
  color: var(--dim, rgba(255,255,255,.35));
}
.cs-client-logo {
  max-height: 48px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}
.cs-arch-img {
  width: 100%;
  border-radius: var(--r-lg, 14px);
  border: 1px solid rgba(255,255,255,.08);
  margin: 24px 0;
}
@media (max-width: 700px) {
  .cs-quote-card { grid-template-columns: 1fr; }
  .cs-quote-card-img { min-height: 160px; }
}

/* 30. Domain fluency callout — italic bordered block inside capability cards */
.domain-callout {
  margin-top: 20px;
  padding: 14px 20px 14px 18px;
  background: var(--bg-2);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: .92rem;
  font-style: italic;
  color: var(--muted);
  max-width: 680px;
}

