    /* ============================================================
       DESIGN TOKENS — LIGHT (default)
    ============================================================ */
    :root {
      --bg-primary: #F5F8FF;
      --bg-secondary: #EDF1FB;
      --bg-tertiary: #E4EAFF;
      --bg-card: rgba(255,255,255,0.9);
      --accent-blue: #0055EE;
      --accent-teal: #00A888;
      --accent-purple: #6D28D9;
      --accent-blue-glow: rgba(0,85,238,0.10);
      --accent-teal-glow: rgba(0,168,136,0.10);
      --accent-purple-glow: rgba(109,40,217,0.10);
      --text-primary: #0A1128;
      --text-secondary: #3D5080;
      --text-muted: #8A97B8;
      --border: rgba(0,40,120,0.10);
      --border-active: rgba(0,85,238,0.35);
      --shadow-card: 0 4px 24px rgba(0,40,120,0.10);
      --shadow-glow: 0 0 40px rgba(0,85,238,0.10);
      --font-main: 'Geist', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 32px;
      --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
    }
    .single-industry .kd-gqc{
        display:none;
    }
    /* ============================================================
       DESIGN TOKENS — DARK OVERRIDE
    ============================================================ */
    body.dark-theme {
      --bg-primary: #060A12;
      --bg-secondary: #0B1120;
      --bg-tertiary: #0F1729;
      --bg-card: rgba(15,23,41,0.7);
      --accent-blue: #0066FF;
      --accent-teal: #00D4AA;
      --accent-purple: #7C3AED;
      --accent-blue-glow: rgba(0,102,255,0.18);
      --accent-teal-glow: rgba(0,212,170,0.15);
      --accent-purple-glow: rgba(124,58,237,0.15);
      --text-primary: #EEF2FF;
      --text-secondary: #8B9CC8;
      --text-muted: #475569;
      --border: rgba(255,255,255,0.065);
      --border-active: rgba(0,102,255,0.4);
      --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
      --shadow-glow: 0 0 40px rgba(0,102,255,0.12);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: auto; }
    body {
      font-family: var(--font-main);
      font-size: 16px;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      transition: background var(--transition), color var(--transition);
      overflow-x: hidden;
    }
    a { color: var(--accent-blue); text-decoration: none; cursor: pointer; }
    a:hover { text-decoration: none; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    button { cursor: pointer; font-family: var(--font-main); border: none; background: none; }

    /* ============================================================
       GRADIENT TEXT UTILITY
    ============================================================ */
    em, .gradient-text, .line-accent {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ============================================================
       PAGE ROUTER
    ============================================================ */
    /* Scope to <main> so WordPress's body class="page" isn't hidden. */
    main.page { display: none; }
    main.page.active { display: block; }

    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    #mainNav {
      position: fixed;
      top: 16px; left: 0; right: 0;
      height: auto;
      z-index: 1000;
      display: flex;
      justify-content: center;
      padding: 0 20px;
    }
    .nav-inner {
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
      padding: 13px 20px 13px 20px;
      border-radius: 999px;
      background: var(--bg-card);
      box-shadow: 0 10px 30px rgba(10,17,40,.10), 0 2px 10px rgba(10,17,40,.05);
      display: flex;
      align-items: center;
      gap: 0;
    }
    body.dark-theme .nav-inner {
      box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 2px 10px rgba(0,0,0,.3);
    }
    .nav-logo {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--text-primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .nav-logo .logo-kd {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      margin-left: 0;
      flex: 1;
      position: relative;
    }
    .nav-link {
      padding: 8px 14px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-secondary);
      border-radius: var(--radius-sm);
      transition: color var(--transition), background var(--transition);
      cursor: pointer;
      white-space: nowrap;
      background: none;
      border: none;
    }
    .nav-link:hover { color: var(--text-primary); background: var(--bg-secondary); }
    
    .nav-logo img{
      height: 27px;
      width: auto;
      display: block;
    }

    /* ── Scroll-state logo swap (front-page transparent header) ── */
    /* White logo hidden by default; shown only when header is transparent */
    .nav-logo .logo-white { display: none; }

    /* Transparent state: front page, before scroll */
    body.home:not(.kd-static-hero) #mainNav:not(.scrolled) .nav-logo.has-white-logo .logo-colored { display: none; }
    body.home:not(.kd-static-hero) #mainNav:not(.scrolled) .nav-logo.has-white-logo .logo-white   { display: block; }

    /* Nav link / trigger colours → white when transparent on front page */
    body.home:not(.kd-static-hero) #mainNav:not(.scrolled) .nav-link,
    body.home:not(.kd-static-hero) #mainNav:not(.scrolled) .nav-dropdown-trigger {
      color: rgba(255,255,255,0.88);
    }
    body.home:not(.kd-static-hero) #mainNav:not(.scrolled) .nav-link:hover,
    body.home:not(.kd-static-hero) #mainNav:not(.scrolled) .nav-dropdown-trigger:hover,
    body.home:not(.kd-static-hero) #mainNav:not(.scrolled) .nav-dropdown.open .nav-dropdown-trigger {
      color: #fff;
      background: rgba(255,255,255,0.14);
    }
    /* Restore normal colours once scrolled (specificity tie-break by order) */
    body.home #mainNav.scrolled .nav-link,
    body.home #mainNav.scrolled .nav-dropdown-trigger { color: var(--text-secondary); }
    body.home #mainNav.scrolled .nav-link:hover,
    body.home #mainNav.scrolled .nav-dropdown-trigger:hover,
    body.home #mainNav.scrolled .nav-dropdown.open .nav-dropdown-trigger {
      color: var(--text-primary);
      background: var(--bg-secondary);
    }

    /* Mega-menu dropdown trigger */
    .nav-dropdown { position: static; }
    .nav-dropdown-trigger {
      display: flex; align-items: center; gap: 5px;
      padding: 8px 14px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-secondary);
      border-radius: var(--radius-sm);
      transition: color var(--transition), background var(--transition);
      cursor: pointer;
      background: none; border: none;
      white-space: nowrap;
    }
    .nav-dropdown-trigger:hover,
    .nav-dropdown.open .nav-dropdown-trigger { color: var(--text-primary); background: var(--bg-secondary); }
    .dropdown-caret {
      display: inline-flex;
      transition: transform var(--transition);
      flex-shrink: 0;
    }
    .dropdown-caret svg {
      width: 15px;
      height: 15px;
      stroke: currentColor;
    }
    .nav-dropdown.open .dropdown-caret { transform: rotate(180deg); }

    /* Invisible bridge to prevent hover gap */
    .nav-dropdown-mega::before {
      content: '';
      position: absolute;
      top: -12px; left: 0; right: 0;
      height: 12px;
    }

    .nav-dropdown-mega {
      display: none;
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      transform: none;
      min-width: 640px;
      z-index: 1001;
      background: #ffffff;
      border: 1px solid rgba(0,40,120,0.12);
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 60px rgba(0,40,120,0.15);
      padding: 28px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }
    body.dark-theme .nav-dropdown-mega {
      background: var(--bg-card);
      border-color: var(--border);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .nav-dropdown.open .nav-dropdown-mega { display: block; }
    @media (max-width: 1200px) { .nav-dropdown-mega { min-width: 560px; } }
    @media (max-width: 1024px) {
      /* Remove relative from nav-links so #mainNav becomes the containing block
         for the mega panel — prevents it overflowing the viewport right edge. */
      .nav-links { position: static; }
      .nav-dropdown-mega { left: 40px; right: 40px; min-width: 0; }
    }
    /* Tighten the pill's link spacing before it collapses to the hamburger
       at 768px, so all 6 items + CTA keep fitting comfortably. */
    @media (max-width: 900px) {
      .nav-inner { padding: 10px 14px; }
      .nav-links { gap: 0; }
      .nav-link, .nav-dropdown-trigger { padding: 8px 10px; font-size: 13.5px; }
      .nav-cta { padding: 6px 6px 6px 16px; font-size: 13px; }
      .nav-cta-icon { width: 28px; height: 28px; }
    }
    .mega-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 32px;
    }
    .mega-col-header {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    .mega-sub-header {
      font-size: 10px;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin: 14px 0 6px;
    }
    .mega-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 8px;
      border-radius: var(--radius-sm);
      font-size: 16px;
      color: var(--text-secondary);
      transition: color var(--transition), background var(--transition);
      cursor: pointer;
    }
    .mega-link:hover { color: var(--text-primary); background: var(--bg-secondary); text-decoration: none; }
    .mega-link-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .dot-blue { background: var(--accent-blue); }
    .dot-teal { background: var(--accent-teal); }
    .dot-purple { background: var(--accent-purple); }
    .tech-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 6px;
    }
    .tech-pill {
      padding: 3px 10px;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 11px;
      color: var(--text-secondary);
      font-weight: 500;
    }

    /* Tabbed mega-menu — left category list + right content panel */
    .mega-tabs-layout {
      display: flex;
      gap: 0;
      min-height: 200px;
    }
    .mega-tab-list {
      width: 210px;
      flex-shrink: 0;
      border-right: 1px solid var(--border);
      padding: 4px 12px 4px 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .mega-tab {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 10px 14px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-main);
      font-size: 16px;
      font-weight: 500;
      color: var(--text-secondary);
      border-radius: var(--radius-sm);
      transition: color var(--transition), background var(--transition);
      white-space: nowrap;
    }
    .mega-tab:hover { color: var(--text-primary); background: var(--bg-secondary); }
    .mega-tab.active {
      color: var(--accent-blue);
      background: var(--accent-blue-glow);
      font-weight: 600;
    }
    .mega-tab-arrow {
      font-size: 18px;
      line-height: 1;
      opacity: 0.35;
      transition: opacity var(--transition);
    }
    .mega-tab.active .mega-tab-arrow { opacity: 1; }
    body.dark-theme .mega-tab.active { background: rgba(0,85,238,0.15); }
    /* Leaf Level-2 items: rendered as <a> links, no tab panel */
    .mega-tab--link { text-decoration: none; justify-content: flex-start; }

    .mega-tab-panels { flex: 1; padding: 4px 0 4px 28px; overflow-y: auto; }
    .mega-tab-panel { display: none; }
    .mega-tab-panel.active { display: block; }

    /* Simple single-column dropdown (Company, Industries, etc.) */
    .nav-dropdown--simple { position: relative; }
    .nav-dropdown-simple {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 200px;
      background: #ffffff;
      border: 1px solid rgba(0,40,120,0.12);
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 60px rgba(0,40,120,0.15);
      padding: 8px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 1001;
    }
    .nav-dropdown-simple::before {
      content: '';
      position: absolute;
      top: -8px; left: 0; right: 0;
      height: 8px;
    }
    body.dark-theme .nav-dropdown-simple {
      background: var(--bg-card);
      border-color: var(--border);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .nav-dropdown--simple.open .nav-dropdown-simple { display: block; }
    .nav-simple-link {
      display: block;
      padding: 9px 14px;
      border-radius: var(--radius-sm);
      font-size: 16px;
      color: var(--text-secondary);
      transition: color var(--transition), background var(--transition);
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
    }
    .nav-simple-link:hover { color: var(--text-primary); background: var(--bg-secondary); }

    /* Nav CTA + hamburger */
    .nav-cta {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 8px 8px 22px;
      background: #0B2A6B;
      color: #fff;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background var(--transition), transform var(--transition);
      flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--accent-blue); transform: translateY(-1px); }
    .nav-cta-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #fff;
      color: #0B2A6B;
      flex-shrink: 0;
    }
    .nav-cta-icon svg { width: 15px; height: 15px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      cursor: pointer;
      margin-left: auto;
    }
    .hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: background var(--transition);
    }
    /* White bars when the header is transparent (front page, pre-scroll) */
    body.home:not(.kd-static-hero) #mainNav:not(.scrolled) .hamburger span { background: #fff; }
    /* Restore dark bars once the header is solid */
    body.home #mainNav.scrolled .hamburger span { background: var(--text-primary); }

    /* Mobile menu */
    #mobileMenu {
      display: none;
      position: fixed;
      top: 94px; left: 0; right: 0; bottom: 0;
      background: var(--bg-primary);
      z-index: 999;
      overflow-y: auto;
      padding: 24px;
      flex-direction: column;
      gap: 4px;
    }
    #mobileMenu.open { display: flex; }
    .mobile-link {
      padding: 14px 16px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-secondary);
      border-radius: var(--radius-md);
      border-bottom: 1px solid var(--border);
      cursor: pointer;
    }
    .mobile-link:hover { background: var(--bg-secondary); color: var(--text-primary); }
    .mobile-sub-link {
      display: block;
      padding: 10px 16px 10px 34px;
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
    }
    .mobile-sub-link:hover { background: var(--bg-secondary); color: var(--text-secondary); }
    .mobile-cta {
      margin-top: 16px;
      padding: 16px;
      background: #0B2A6B;
      color: #fff;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: background var(--transition);
    }
    .mobile-cta:hover { background: var(--accent-blue); }

    /* ── Mobile accordion ── */
    .mobile-accordion-item {
      border-bottom: 1px solid var(--border);
    }
    .mobile-accordion-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 14px 16px;
      background: none;
      border: none;
      font-family: var(--font-main);
      font-size: 16px;
      font-weight: 500;
      color: var(--text-secondary);
      cursor: pointer;
      text-align: left;
      border-radius: var(--radius-md);
      transition: background var(--transition), color var(--transition);
    }
    .mobile-accordion-trigger:hover,
    .mobile-accordion-trigger[aria-expanded="true"] {
      background: var(--bg-secondary);
      color: var(--text-primary);
    }
    .mobile-accordion-chevron {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      stroke: var(--text-muted);
      transition: transform 0.25s ease;
    }
    .mobile-accordion-trigger[aria-expanded="true"] .mobile-accordion-chevron {
      transform: rotate(90deg);
    }
    /* Override left-padding for sub-links inside accordion body */
    .mobile-accordion-body .mobile-sub-link { padding-left: 16px; }
    /* Sub-level accordion (column items inside a tabbed mega) */
    .mobile-accordion-item--sub {
      border-bottom: none;
      border-top: 1px solid var(--border);
    }
    .mobile-accordion-item--sub:first-child { border-top: none; }
    .mobile-accordion-item--sub > .mobile-accordion-trigger {
      font-size: 14px;
      font-weight: 600;
      padding: 10px 12px;
    }
    /* Sub-headers inside accordion panels */
    .mobile-sub-header {
      padding: 8px 16px 4px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    /* Tech pills in mobile accordion */
    .mobile-tech-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      padding: 4px 16px 12px;
    }
    .mobile-tech-pill {
      padding: 3px 8px;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 11px;
      color: var(--text-muted);
    }

    /* ============================================================
       LAYOUT UTILITIES
    ============================================================ */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .container-wide {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .section {
      padding: 96px 0;
    }
    .section-sm { padding: 64px 0; }
    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent-blue);
      margin-bottom: 16px;
    }
    .section-label-teal { color: var(--accent-teal); }
    .section-label-purple { color: var(--accent-purple); }
    h1 { font-size: 55px; line-height: 1.18; font-weight: 800; letter-spacing: -1.5px; }
    h2 { font-size: 40px; line-height: 1.25; letter-spacing: -0.5px; font-weight: 800; }
    h3 { font-size: clamp(18px,2vw,22px); font-weight: 700; line-height: 1.3; letter-spacing: -0.5px; }
    h4 { font-size: 16px; font-weight: 600; }
    p { color: var(--text-secondary); line-height: 1.7; }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 24px;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 24px;
    }
    .text-center { text-align: center; }
    .text-muted { color: var(--text-muted); }

    /* ============================================================
       CARDS
    ============================================================ */
    .card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,40,120,0.15);
      border-color: var(--border-active);
    }
    body.dark-theme .card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.5); }

    /* Pillar cards with accent top border */
    .pillar-card { position: relative; overflow: hidden; }
    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }
    .pillar-card.blue::before { background: linear-gradient(90deg, var(--accent-blue), #0099FF); }
    .pillar-card.teal::before { background: linear-gradient(90deg, var(--accent-teal), #00D4FF); }
    .pillar-card.purple::before { background: linear-gradient(90deg, var(--accent-purple), #A855F7); }
    .pillar-partner-logo { display: block; margin: 0 auto 16px; height: 60px; max-width: 180px; width: auto; object-fit: contain; }

    .card-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .card-eyebrow.blue { color: var(--accent-blue); }
    .card-eyebrow.teal { color: var(--accent-teal); }
    .card-eyebrow.purple { color: var(--accent-purple); }
    .card-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0;
    }
    .stat-badge {
      padding: 4px 10px;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 500;
    }
    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 12px 0;
    }
    .tag {
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 500;
    }
    .tag-blue { background: var(--accent-blue-glow); color: var(--accent-blue); border: 1px solid rgba(0,85,238,0.2); }
    .tag-teal { background: var(--accent-teal-glow); color: var(--accent-teal); border: 1px solid rgba(0,168,136,0.2); }
    .tag-purple { background: var(--accent-purple-glow); color: var(--accent-purple); border: 1px solid rgba(109,40,217,0.2); }
    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--accent-blue);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: gap var(--transition);
    }
    .card-cta.teal { color: var(--accent-teal); }
    .card-cta.purple { color: var(--accent-purple); }
    .card-cta:hover { gap: 10px; text-decoration: none; }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-md);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--transition);
      border: none;
      font-family: var(--font-main);
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
      color: #fff;
    }
    .btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-blue-glow); text-decoration: none; color: #fff; }
    .btn-ghost {
      background: transparent;
      color: var(--text-primary);
      border: 1.5px solid var(--border);
    }
    .btn-ghost:hover { border-color: var(--accent-blue); color: var(--accent-blue); background: var(--accent-blue-glow); text-decoration: none; }
    .btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

    /* ============================================================
       HOME HERO (static, replaces the image slider — see content-home.php)
    ============================================================ */
    .home-hero {
      position: relative;
      overflow: hidden;
      padding: 160px 0 72px;
      text-align: center;
      background: var(--bg-primary);
    }
    .home-hero-blob {
      position: absolute;
      width: 46vw;
      height: 46vw;
      max-width: 640px;
      max-height: 640px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }
    .home-hero-blob-left {
      top: -18%;
      left: -14%;
      background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
    }
    .home-hero-blob-right {
      top: -12%;
      right: -14%;
      background: radial-gradient(circle, var(--accent-teal-glow) 0%, transparent 70%);
    }
    .home-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }
    .home-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 40px;
      box-shadow: var(--shadow-card);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
      margin-bottom: 32px;
    }
    .home-hero-badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent-blue);
      flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(0,85,238,0.55);
      animation: mono-pulse-blue 2s infinite;
    }
    .home-hero-title {
      font-size: clamp(38px, 6vw, 72px);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -2px;
      color: var(--text-primary);
      margin: 0 0 28px;
    }
    .home-hero-sub {
      font-size: clamp(16px, 2vw, 19px);
      color: var(--text-secondary);
      line-height: 1.6;
      max-width: 620px;
      margin: 0 auto 40px;
    }
    .home-hero-sub strong { color: var(--text-primary); font-weight: 700; }
    .home-hero-ctas { margin-bottom: 56px; }
    .home-hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 8px 8px 8px 26px;
      background: var(--accent-blue);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      border-radius: 40px;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .home-hero-cta:hover {
      color: #fff;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--accent-blue-glow);
    }
    .home-hero-cta-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px; height: 34px;
      border-radius: 50%;
      background: #fff;
      color: var(--accent-blue);
      flex-shrink: 0;
    }
    .home-hero-trust .trust-partners-logos { opacity: 0.7; }
    @media (max-width: 720px) {
      .home-hero { padding: 128px 0 56px; }
      .home-hero-title { letter-spacing: -1px; }
      .home-hero-blob { width: 70vw; height: 70vw; }
    }
    @media (max-width: 480px) {
      .home-hero { padding: 112px 0 48px; }
      .home-hero-badge { font-size: 12px; padding: 7px 14px; }
    }

    /* ============================================================
       HERO — HOME
    ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, #EEF4FF 0%, #E4EFFF 100%);
    }
    body.dark-theme .hero { background: var(--bg-primary); }
  

    /* ============================================================
       HERO PRIMARY — index (2).html verbatim hero elements
    ============================================================ */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,40,120,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,40,120,0.04) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    }
    .stats-bar {
      display: flex;
      align-items: stretch;
      gap: 0;
      padding: 24px 32px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      max-width: 700px;
      margin: 0 auto;
    }
    .stat-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 0 24px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .stat-item:first-child { padding-left: 0; }
    .stat-item:last-child { border-right: none; }
    .stat-value {
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--text-primary);
      line-height: 1;
    }
    .stat-value span { color: var(--accent-blue); }
    .stat-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.5px;
    }
    /* ============================================================
       TRUST STRIP
    ============================================================ */
    .trust-strip {
      padding: 20px 0;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .trust-strip-inner {
      display: flex;
      align-items: center;
      gap: 32px;
      white-space: nowrap;
      animation: marquee 28s linear infinite;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 40px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ============================================================
       COMPARISON TABLE
    ============================================================ */
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 40px;
    }
    .comparison-table th {
      padding: 16px 24px;
      text-align: left;
      font-size: 14px;
      font-weight: 700;
      border-bottom: 2px solid var(--border);
    }
    .comparison-table th:last-child {
      color: var(--accent-blue);
      border-bottom-color: var(--accent-blue);
    }
    .comparison-table td {
      padding: 16px 24px;
      font-size: 14px;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
      line-height: 1.5;
    }
    .comparison-table td:first-child {
      font-weight: 600;
      color: var(--text-primary);
      width: 20%;
    }
    .comparison-table td:nth-child(2) {
      color: var(--text-muted);
      width: 40%;
    }
    .comparison-table td:last-child {
      color: var(--text-primary);
      width: 40%;
    }
    .comparison-table tr:hover td { background: var(--bg-secondary); }
    .check-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px; height: 18px;
      background: rgb(63 81 181 / 19%);
      border-radius: 50%;
      color: #004195;
      font-size: 11px;
      font-weight: 700;
      margin-right: 6px;
      flex-shrink: 0;
    }

    /* ============================================================
       INDUSTRY PILLS
    ============================================================ */
    .industry-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 40px;
    }
    .industry-pill {
      padding: 10px 18px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      align-content: center;
      gap: 5px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all var(--transition);
    }
    .industry-pill:hover {
      border-color: var(--accent-blue);
      color: var(--accent-blue);
      background: var(--accent-blue-glow);
      transform: translateY(-2px);
    }
    .industry-pill-icon { width: 18px; height: 18px; object-fit: contain; vertical-align: middle; margin-right: 2px; }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-card);
      position: relative;
    }
    .testimonial-quote-mark {
      font-size: 64px;
      line-height: 1;
      color: var(--accent-blue);
      opacity: 0.15;
      font-family: Georgia, serif;
      position: absolute;
      top: 16px;
      left: 24px;
    }
    .testimonial-text {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-secondary);
      margin-top: 16px;
      font-style: italic;
    }
    .testimonial-author {
      margin-top: 20px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
    }
    .testimonial-role {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ============================================================
       CTA SECTIONS (dark band)
    ============================================================ */
    .cta-section {
      background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 96px 0;
      text-align: center;
    }
    .cta-section-dark {
      background: linear-gradient(135deg, #0A1128 0%, #0F2050 100%);
      padding: 96px 0;
      text-align: center;
    }
    body.dark-theme .cta-section-dark {
      background: linear-gradient(135deg, #060A12 0%, #0B1535 100%);
    }
    .cta-section-dark h2 { color: #EEF2FF; }
    .cta-section-dark p { color: #8B9CC8; }

    /* ============================================================
       CALLOUT BOX
    ============================================================ */
    .callout-box {
      background: linear-gradient(135deg, rgba(0,85,238,0.06) 0%, rgba(0,168,136,0.06) 100%);
      border: 1px solid var(--border-active);
      border-radius: var(--radius-lg);
      padding: 32px;
      margin: 40px 0;
    }
    .callout-box-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    /* ============================================================
       HERO (inner pages)
    ============================================================ */
    .page-hero {
      background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
      padding: 140px 0 80px;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
    body.dark-theme .page-hero {
      background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    }
    .page-hero-label {
      display: inline-block;
      padding: 6px 16px;
      background: var(--accent-blue-glow);
      border: 1px solid rgba(0,85,238,0.2);
      border-radius: 40px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: var(--accent-blue);
      margin-bottom: 20px;
    }
    .page-hero-label.teal {
      background: var(--accent-teal-glow);
      border-color: rgba(0,168,136,0.2);
      color: var(--accent-teal);
    }
    .page-hero-label.purple {
      background: var(--accent-purple-glow);
      border-color: rgba(109,40,217,0.2);
      color: var(--accent-purple);
    }
    .page-hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .page-hero-stat { text-align: center; }
    .page-hero-stat-num {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--text-primary);
    }
    .page-hero-stat-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 4px;
    }

    /* ============================================================
       SERVICE CARDS
    ============================================================ */
    .service-icon {
      width: 44px; height: 44px;
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
      flex-shrink: 0;
    }
    .service-icon.blue { background: var(--accent-blue-glow); }
    .service-icon.teal { background: var(--accent-teal-glow); }
    .service-icon.purple { background: var(--accent-purple-glow); }
    .solutions-icon { width: 24px; height: 24px; object-fit: contain; display: block; }
    .service-card-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
    }
    .service-card-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.65;
    }
    .service-bullets {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .service-bullet {
      font-size: 13px;
      color: var(--text-secondary);
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }
    .service-bullet::before {
      content: '·';
      color: var(--accent-blue);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: -1px;
    }

    /* ============================================================
       INDUSTRY CARDS (full)
    ============================================================ */
    .industry-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .industry-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-active);
      box-shadow: 0 12px 40px rgba(0,40,120,0.12);
    }
    .industry-emoji { font-size: 32px; margin-bottom: 14px; }
    .industry-icon { width: 36px; height: 36px; object-fit: contain; display: block; }
    .dark-theme .industry-emoji .industry-icon { background: rgba(255,255,255,0.10); border-radius: 8px; padding: 4px; box-sizing: content-box; }
    .careers-culture-icon { display: block; margin: 0 auto 16px; width: 56px; height: 56px; object-fit: contain; }
    .dark-theme .careers-culture-icon { background: rgba(255,255,255,0.10); border-radius: 10px; padding: 6px; box-sizing: content-box; }
    .industry-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
    }
    .industry-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ============================================================
       INDUSTRY SINGLE PAGE — trend comparison, solution numerals,
       outcome tiles, engagement benefit checklist
    ============================================================ */

    /* ---- Hero: full-bleed photo card + inset stats corner ---- */
    .ind-hero-section { padding: 140px 0 96px; }
    .ind-hero-outer { position: relative; }
    .ind-hero-media {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background-color: #05080f;
      background-size: cover;
      background-position: center;
      box-shadow: 0 24px 64px rgba(0,20,60,0.25);
      display: flex;
      align-items: center;
    }
    .ind-hero-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      padding: 56px 64px;
    }
    .ind-hero-title {
      font-size: clamp(34px, 4.4vw, 54px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -1.5px;
      color: #fff;
      margin: 0 0 20px;
    }
    .ind-hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
      max-width: 460px;
      margin: 0 0 32px;
    }
    .ind-hero-links { display: flex; flex-wrap: wrap; gap: 28px; }
    .ind-hero-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-color: rgba(255,255,255,0.4);
    }
    .ind-hero-link:hover { text-decoration-color: #fff; color: #fff; }
    .ind-hero-stats-card {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 3;
      display: flex;
      gap: 40px;
      background: var(--bg-card);
      border-radius: 24px 0 0 0;
      padding: 26px 36px;
    }
    .ind-hero-stat { text-align: left; }
    .ind-hero-stat-num {
      font-size: 30px;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--text-primary);
      line-height: 1;
    }
    .ind-hero-stat-label {
      margin-top: 6px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-muted);
    }
    @media (max-width: 860px) {
      .ind-hero-media { display: block; }
      .ind-hero-content { padding: 40px; max-width: 100%; }
      .ind-hero-title { font-size: 40px; }
      .ind-hero-stats-card {
        position: static;
        margin-top: 0;
        border-radius: 0;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        text-align: center;
      }
      .ind-hero-section { padding: 120px 0 64px; }
    }
    @media (max-width: 480px) {
      .ind-hero-title { font-size: 40px; }
      .ind-hero-content { padding: 32px 24px; position: relative; }
      .ind-hero-content::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, rgba(4,10,20,0.7) 0%, rgba(4,10,20,0.45) 60%, rgba(4,10,20,0.7) 100%);
      }
      .ind-hero-stats-card { padding: 20px; gap: 16px; }
    }
    /* ---- Driving Innovation card ---- */
    .innov-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
      padding: 56px 64px;
    }
    .mono-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 24px;
    }
    .section-header .mono-eyebrow { margin-bottom: 16px; }
    .mono-eyebrow-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent-blue);
      flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(0,85,238,0.55);
      animation: mono-pulse-blue 2s infinite;
    }
    @keyframes mono-pulse-blue {
      0%   { box-shadow: 0 0 0 0 rgba(0,85,238,0.55); }
      70%  { box-shadow: 0 0 0 6px rgba(0,85,238,0); }
      100% { box-shadow: 0 0 0 0 rgba(0,85,238,0); }
    }
    .innov-head-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 48px;
      align-items: start;
      padding-bottom: 32px;
      border-bottom: 1px dashed var(--border);
    }
    .innov-heading {
      font-size: clamp(28px, 3.4vw, 42px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -1px;
      color: var(--text-primary);
      margin: 0;
    }
    @media (max-width: 860px) {
      .innov-heading,
      .challenges-heading { font-size: 30px; }
    }
    @media (max-width: 480px) {
      .innov-heading,
      .challenges-heading { font-size: 30px; }
    }
    .innov-heading-accent {
      color: var(--accent-blue);
      background-image: linear-gradient(90deg, #014a9c, #01aef0);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-style: normal !important;
    }
    .innov-desc {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-top: 6px;
    }
    .innov-desc strong { color: var(--text-primary); font-weight: 700; }
    .innov-trend-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 64px;
    }
    .innov-trend {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 24px;
      padding: 22px 0;
      font-family: 'JetBrains Mono', monospace;
    }
    .innov-trend.has-divider { border-bottom: 1px dashed var(--border); }
    .innov-trend-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .innov-trend-value {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      text-align: right;
    }
    .innov-trend-arrow { color: var(--accent-blue); font-weight: 600; }
    @media (max-width: 860px) {
      .innov-card { padding: 40px; }
      .innov-head-grid { grid-template-columns: 1fr; gap: 20px; }
    }
    @media (max-width: 600px) {
      .innov-card { padding: 28px 24px; }
      .innov-trend-grid { grid-template-columns: 1fr; column-gap: 0; }
      .innov-trend.has-divider { border-bottom: 1px dashed var(--border); }
      .innov-trend:not(:last-child) { border-bottom: 1px dashed var(--border); }
      .innov-trend { flex-direction: column; align-items: flex-start; gap: 4px; }
      .innov-trend-value { text-align: left; }
    }

    .solution-card {
      display: flex;
      align-items: stretch;
      gap: 24px;
      padding: 32px;
    }
    .solution-strip {
      flex-shrink: 0;
      width: 32px;
      background: var(--accent-blue-glow);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 16px 0;
      gap: 14px;
    }
    .solution-strip-label {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--accent-blue);
    }
    .solution-strip-bar {
      flex: 1;
      width: 6px;
      min-height: 60px;
      border-radius: 3px;
      background: linear-gradient(180deg, var(--accent-blue), #6bb3ff);
    }
    .solution-body { flex: 1; min-width: 0; }
    .solution-bullets {
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .solution-bullet {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-secondary);
    }
    .solution-bullet-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-blue);
      flex-shrink: 0;
      margin-top: 6px;
    }
    @media (max-width: 480px) {
      .solution-card { padding: 22px; gap: 16px; }
    }

    .outcome-tile {
      position: relative;
      text-align: left;
      overflow: hidden;
    }
    .outcome-tile::before {
      content: '';
      position: absolute;
      top: -20px; right: -20px;
      width: 100px; height: 100px;
      border-radius: 50%;
      background: radial-gradient(circle at top right, var(--accent-blue-glow), transparent 70%);
      pointer-events: none;
    }
    .outcome-value {
      position: relative;
      font-size: 38px;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--text-primary);
      text-transform: uppercase;
    }
    .outcome-label {
      position: relative;
      margin-top: 14px;
      font-size: 22px;
      font-weight: 700;
      line-height: 1.3;
      color: var(--text-primary);
    }
    .outcome-desc {
      position: relative;
      margin-top: 8px;
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.6;
      text-transform: capitalize;
    }

    /* Industries single page — scoped overrides for classes shared with
       other templates (.service-card-title/-desc, .section-header p),
       so these changes stay confined to #page-industry-single and don't
       ripple onto the SAP/Salesforce/AI service pages that reuse the
       same shared classes. */
    #page-industry-single {
      font-family: 'Geist', 'Plus Jakarta Sans', sans-serif;
    }
    #page-industry-single .service-card-title {
      font-size: 22px;
      line-height: 1.3;
    }
    #page-industry-single .service-card-desc {
      font-size: 16px;
      line-height: 1.6;
    }
    #page-industry-single .ind-hero-sub,
    #page-industry-single .section-header p {
      font-size: 18px;
      line-height: 1.6;
    }
    #page-industry-single .check-list li,
    #page-industry-single .v2-form-foot {
      font-size: 16px;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-primary);
      font-weight: 600;
      margin-bottom: 14px;
    }
    .benefit-check {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 22px; height: 22px;
      flex-shrink: 0;
      margin-top: 1px;
      border-radius: 50%;
      background: var(--accent-teal-glow);
      color: var(--accent-teal);
    }

    /* ---- Trusted Partners logo strip ---- */
    .trust-partners {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .trust-partners-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .trust-us { color: var(--accent-blue); margin-left: 2px; }
    .trust-partners-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 44px;
      opacity: 0.85;
    }
    .tp-logo {
      display: inline-flex;
      align-items: center;
      height: auto;
      max-width: 110px;
    }
    .tp-logo img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
    /* The logo assets are dark navy/gray marks — invert so they stay
       legible against the dark theme's near-black backgrounds. */
    body.dark-theme .tp-logo img {
      filter: invert(1) grayscale(1) brightness(1.8);
    }
    @media (max-width: 720px) {
      .trust-partners-logos { gap: 28px; }
      .tp-logo { max-width: 90px; }
    }
    @media (max-width: 480px) {
      .tp-logo { max-width: 72px; }
    }

    /* ---- Industry Challenges cards ---- */
    .challenges-heading { line-height: 1.25; font-weight: 700; }
    .challenge-card-head {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
    }
    .challenge-icon {
      width: 44px; height: 44px;
      flex-shrink: 0;
      border-radius: var(--radius-md);
      background: var(--accent-blue-glow);
      color: var(--accent-blue);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .challenge-icon img { width: 22px; height: 22px; object-fit: contain; }
    /* Extra breathing room around the imported .v2-cta lead-form card so
       its spacing matches the 96px/section rhythm used everywhere else
       on the Industry page (the shared sap-webflow.css rule only adds a
       40px margin, sized for its original page's tighter layout). */
    .ind-lead-form-wrap { padding: 56px 0 40px; }
    @media (max-width: 720px) {
      .ind-lead-form-wrap { padding: 32px 0 24px; }
    }

    /* Tablet: the shared .grid-3 (used site-wide) only drops to 1 column
       below 768px, which leaves 6-card sections (Challenges, Outcomes)
       squeezed into 3 cramped columns between 769–1024px. Give this page
       its own 2-column tablet step without touching the global class. */
    @media (min-width: 769px) and (max-width: 1024px) {
      #page-industry-single .grid-3 { grid-template-columns: repeat(2, 1fr); }
    }

    /* Section rhythm: the shared .section class (96px top+bottom, used
       site-wide) stacks to a 192px gap between two adjacent sections —
       fine when sections alternate background bands, but reads as an
       oversized gap between this page's plain-white sections (e.g.
       Driving Innovation card → Industry Challenges heading). Tighten
       just for this page, responsively, without touching the shared
       class other pages rely on. */
    #page-industry-single .section { padding: 72px 0; }
    @media (max-width: 1024px) {
      #page-industry-single .section { padding: 56px 0; }
    }
    @media (max-width: 600px) {
      #page-industry-single .section { padding: 40px 0; }
    }

    /* ============================================================
       CASE STUDY CARDS
    ============================================================ */
    .case-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .case-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,40,120,0.15);
    }
    .case-emoji { font-size: 28px; margin-bottom: 12px; }
    .case-icon { width: 32px; height: 32px; object-fit: contain; display: block; }
    .dark-theme .case-emoji .case-icon { background: rgba(255,255,255,0.10); border-radius: 8px; padding: 4px; box-sizing: content-box; }
    .case-meta {
      display: flex;
      gap: 8px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .case-badge {
      padding: 3px 10px;
      background: var(--bg-secondary);
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      font-family: var(--font-mono);
    }
    .case-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.35;
      margin-bottom: 16px;
    }
    .case-outcomes {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }
    .case-outcome {
      font-size: 16px;
      color: var(--text-secondary);
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .case-outcome-check {
      color: var(--accent-teal);
      font-weight: 700;
      flex-shrink: 0;
    }
    .case-quote {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .case-quote-text {
      font-size: 16px;
      font-style: italic;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .case-quote-attr {
      font-size: 16px;
      color: var(--text-muted);
      font-weight: 600;
      margin-top: 8px;
    }

    /* Case Studies listing (#page-casestudies) — scoped h1 override.
       The hero <h1> here is a bare tag styled by the shared h1{} rule
       far above (used across many templates via main.css), so the
       responsive heading fix is scoped to this page's id instead of
       editing that shared rule and rippling onto every other page that
       relies on it. */
    #page-casestudies h1 { font-weight: 700; }
    @media (max-width: 1024px) {
      #page-casestudies h1 { font-size: 40px; }
    }
    @media (max-width: 640px) {
      #page-casestudies h1 { font-size: 40px; }
    }

    /* ============================================================
       ROLES LIST
    ============================================================ */
    .roles-list { display: flex; flex-direction: column; gap: 12px; }
    .role-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      transition: border-color var(--transition), transform var(--transition);
      flex-wrap: wrap;
      gap: 12px;
    }
    .role-item:hover { border-color: var(--accent-blue); transform: translateX(4px); }
    .role-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }
    .role-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .role-meta-badge {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }
    .role-badge {
      padding: 6px 14px;
      background: var(--accent-blue-glow);
      border: 1px solid rgba(0,85,238,0.2);
      color: var(--accent-blue);
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      flex-shrink: 0;
    }

    /* ============================================================
       CONTACT FORM
    ============================================================ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 48px;
      align-items: start;
    }
    .contact-info-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 14px;
    }
    .contact-practice {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
    }
    .contact-practice-icon {
      width: 40px; height: 40px;
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .contact-practice-title { font-size: 14px; font-weight: 700; color: var(--text-primary); }
    .contact-practice-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
    .form-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-card);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-group { margin-bottom: 16px; }
    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 6px;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 11px 14px;
      background: var(--bg-secondary);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 14px;
      color: var(--text-primary);
      font-family: var(--font-main);
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--accent-blue);
      box-shadow: 0 0 0 3px var(--accent-blue-glow);
    }
    .form-textarea { min-height: 120px; resize: vertical; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
      color: #fff;
      border: none;
      border-radius: var(--radius-md);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      font-family: var(--font-main);
      transition: opacity var(--transition), transform var(--transition);
    }
    .form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
    .form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
    .office-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
    .office-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      text-align: center;
    }
    .office-emoji { font-size: 28px; margin-bottom: 12px; }
    .office-city { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
    .office-detail { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

    /* ============================================================
       ABOUT — VALUES CARDS
    ============================================================ */
    .value-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
    }
    .value-num {
      font-size: 36px;
      font-weight: 900;
      letter-spacing: -2px;
      background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 12px;
      display: inline-block;
    }
    .value-title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
    .value-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

    /* ============================================================
       CERT BADGES
    ============================================================ */
    .cert-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
      justify-content: center;
      align-items: center;
    }
    .cert-badge {
      padding: 7px 16px;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 40px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats-bar {
      display: flex;
      gap: 0;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 48px;
    }
    .stats-bar-item {
      flex: 1;
      padding: 28px 24px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .stats-bar-item:last-child { border-right: none; }
    .stats-bar-num {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -1.5px;
      color: var(--text-primary);
      display: block;
    }
    .stats-bar-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
      font-weight: 500;
    }

    /* ============================================================
       AI PRODUCT CARDS
    ============================================================ */
    .ai-product-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .ai-product-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    }
    .ai-product-name {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--text-primary);
      margin-bottom: 6px;
    }
    .ai-product-tagline {
      font-size: 14px;
      color: var(--accent-purple);
      font-weight: 600;
      margin-bottom: 16px;
    }
    .ai-product-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ============================================================
       SECTION HEADER UTILITY
    ============================================================ */
    .section-header { margin-bottom: 40px; }
    .section-header.center { text-align: center; }
    .section-header h2 { margin-bottom: 16px; }
    .section-header p {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 640px;
      line-height: 1.7;
    }
    .section-header.center p { margin: 0 auto; }

    /* ============================================================
       FOOTER
    ============================================================ */
    /* Fixed dark navy, independent of the sitewide light/dark toggle —
       matches the supplied Figma reference exactly, colors hard-coded
       rather than pulled from the --bg/--text tokens (which flip with
       the toggle) since this footer never changes look. */
    footer {
      background: #0B1733;
      border-top: none;
      padding: 72px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand-title {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 18px;
      display: flex; align-items: center; gap: 10px;
    }
    .footer-brand-sub {
      font-size: 16px;
      color: #fffff9d9;
      line-height: 26px;
      margin-bottom: 20px;
      max-width: 320px;
    }
    .footer-cert-badges { display: flex; flex-wrap: wrap; gap: 14px; }
    .footer-cert {
      padding: 4px 12px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      color: #fffff9d9;
    }
    .footer-col-title {
      font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 14px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    /* .footer-link is applied by the hard-coded fallbacks; wp_nav_menu()'s
       real <ul><li><a> output (once a menu is assigned in Appearance →
       Menus) gets the same look via the plain li > a selector below. */
    .footer-link,
    .footer-links li > a {
      display: block;
      font-size: 16px;
      color: #fffff9d9;
      text-decoration: none;
      cursor: pointer;
      transition: color var(--transition);
    }
    .footer-link:hover,
    .footer-links li > a:hover { color: #fff; }
    .footer-bottom {
      margin-top: 56px;
      padding: 24px 0;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom-copy {
      font-size: 16px;
      color: #fffff9d9;
      text-align: center;
    }

    /* ============================================================
       THEME TOGGLE
    ============================================================ */
    #themeToggle {
      display: none !important;
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-card);
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2000;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    #themeToggle:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(0,40,120,0.2); }

    /* ============================================================
       BACK TO TOP
       Hidden by default; JS (theme.js) adds .is-visible once the
       page has scrolled past a threshold, and removes it near the top.
    ============================================================ */
    .kd-back-to-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--accent-blue);
      color: #fff;
      border: none;
      box-shadow: 0 8px 24px rgba(0,40,120,0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility 0s linear .25s;
    }
    .kd-back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity .25s ease, transform .25s ease, background .2s ease;
    }
    .kd-back-to-top:hover {
      background: transparent;
      border: 2px solid #0055EE;
      color: #0055EE;
    }
    @media (max-width: 640px) {
      .kd-back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      /* Keep the pill's own vertical padding once .container/.nav-inner
         share the shared padding rule below (which zeroes it out for
         plain content containers) — otherwise the header pill collapses
         to the height of the logo/hamburger with no breathing room. */
      .nav-inner { padding: 10px 16px; }
      .grid-3, .grid-2 { grid-template-columns: 1fr; }
      .mega-grid { grid-template-columns: 1fr; }
      .comparison-table { font-size: 13px; }
      .comparison-table th, .comparison-table td { padding: 12px; }
      .contact-grid { grid-template-columns: 1fr; }
      .office-cards { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      /* Stats bar — stay 4-across on tablet, just tighten padding/type */
      .stats-bar-item  { padding: 20px 12px; }
      .stats-bar-num   { font-size: 26px; letter-spacing: -1px; }
      .stats-bar-label { font-size: 11px; }
      .page-hero-stats { gap: 24px; }
      .section { padding: 64px 0; }
      .container, .container-wide { padding: 0 20px; }
      .form-row { grid-template-columns: 1fr; }
      h1 { font-size: 40px; line-height: 50px; letter-spacing: -1.5px; }
      h2 { font-size: 32px; line-height: 42px; letter-spacing: normal; }
      .footer-grid { grid-template-columns: 1fr; }
      .industry-pills { gap: 8px; }
      .industry-pill { padding: 8px 14px; font-size: 13px; gap: 4px; }
      .industry-pill-icon { width: 16px; height: 16px; }
      .section-header { margin-bottom: 32px; }
      .section-header p { font-size: 15px; max-width: 100%; }
      .cert-grid { gap: 8px; margin-top: 24px; }
    }
    @media (max-width: 480px) {
      h1 { font-size: 30px; line-height: 38px; letter-spacing: -1px; }
      h2 { font-size: 26px; line-height: 34px; letter-spacing: normal; }
      .industry-pills { gap: 6px; }
      .industry-pill { padding: 7px 12px; font-size: 12px; gap: 4px; }
      .industry-pill-icon { width: 14px; height: 14px; }
      .section-header { margin-bottom: 24px; }
      .section-header p { font-size: 14px; }
      .cert-grid { gap: 6px; margin-top: 20px; }
      /* Stats bar — 2×2 grid on mobile */
      .stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
      /* Reset all dividers, then add cross-dividers for 2×2 */
      .stats-bar-item         { padding: 24px 16px; border-right: none; border-bottom: none; }
      .stats-bar-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }  /* top row */
      .stats-bar-item:nth-child(odd)  { border-right:  1px solid var(--border); }  /* left col */
      .stats-bar-num   { font-size: 28px; letter-spacing: -1px; }
      .stats-bar-label { font-size: 12px; margin-top: 6px; }
    }

    /* ── Theme toggle — smaller footprint on mobile to avoid overlapping hero CTAs ── */
    @media (max-width: 768px) {
      #themeToggle {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 16px;
        font-size: 18px;
      }
    }
    @media (max-width: 480px) {
      #themeToggle {
        width: 36px;
        height: 36px;
        bottom: 12px;
        right: 12px;
        font-size: 15px;
      }
    }

    /* ============================================================
       CONTENT MODAL
    ============================================================ */
    .content-modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 9000;
      background: rgba(0,20,60,0.6); backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      align-items: center; justify-content: center; padding: 20px;
    }
    .content-modal-overlay.open { display: flex; }
    .content-modal-box {
      position: relative; background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-lg); max-width: 860px; width: 100%;
      max-height: 88vh; overflow-y: auto; padding: 48px;
      box-shadow: 0 40px 80px rgba(0,20,60,0.25);
    }
    .content-modal-close {
      position: absolute; top: 16px; right: 20px; background: none; border: none;
      font-size: 20px; color: var(--text-muted); cursor: pointer;
      padding: 4px 8px; border-radius: 4px; transition: color var(--transition), background var(--transition);
    }
    .content-modal-close:hover { color: var(--text-primary); background: var(--bg-secondary); }
    .modal-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-blue); margin-bottom: 12px; }
    .modal-h2 { font-size: clamp(22px,3vw,34px); font-weight: 800; letter-spacing: -1px; color: var(--text-primary); margin-bottom: 20px; line-height: 1.15; }
    .modal-body-text { color: var(--text-secondary); line-height: 1.75; font-size: 16px; margin-bottom: 8px; }
    .modal-section { margin-top: 24px; }
    .modal-section-hdr { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
    .modal-section-hdr.blue { color: var(--accent-blue); }
    .modal-section-hdr.teal { color: var(--accent-teal); }
    .modal-section-hdr.purple { color: var(--accent-purple); }
    .modal-pts { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
    .modal-pt { display: flex; gap: 10px; font-size: 15px; color: var(--text-secondary); line-height: 1.5; }
    .modal-pt::before { content: '\2713'; color: var(--accent-teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* ============================================================
       BLOG CARDS
    ============================================================ */
    .blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow var(--transition), transform var(--transition); }
    .blog-card:hover { box-shadow: 0 12px 40px rgba(0,40,120,0.12); transform: translateY(-3px); }
    .blog-cat { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
    .blog-cat.sap { background: rgba(0,85,238,0.1); color: var(--accent-blue); }
    .blog-cat.sf { background: rgba(0,168,136,0.1); color: var(--accent-teal); }
    .blog-cat.data { background: rgba(109,40,217,0.1); color: var(--accent-purple); }
    .blog-cat.general { background: var(--bg-secondary); color: var(--text-muted); }
    .blog-title { font-size: 18px; font-weight: 700; color: var(--text-primary); line-height: 1.35; }
    .blog-meta { font-size: 13px; color: var(--text-muted); }

    /* ============================================================
       GENERIC PAGE SECTIONS — "Latest Insights" / "Success Stories"
       Auto-available on any ordinary page (Default Template) once an
       editor picks a Category/Industry — see kd_render_generic_page_
       sections() in functions.php, called from page.php. Self-
       contained: uses only the shared tokens above so it reads
       consistently regardless of which page it lands on.
    ============================================================ */
    .kd-generic-insights,
    .kd-generic-stories { padding: 72px 0; }
    .kd-generic-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
    .kd-generic-head h2 { font-size: 32px; font-weight: 800; line-height: 1.3; color: var(--text-primary); margin: 0; }
    .kd-generic-head h2 .accent {
      background: linear-gradient(96.24deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }

    /* ── Latest Insights: 1 image-overlay featured card + 3 plain list cards ── */
    .kd-generic-insights-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: stretch; }
    .kd-generic-insights-featured {
      position: relative; display: block; min-height: 420px;
      border-radius: var(--radius-lg); overflow: hidden;
      background-color: #0B1224; background-size: cover; background-position: center;
      text-decoration: none;
    }
    .kd-generic-insights-featured::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(10,17,40,0) 30%, rgba(8,14,32,.94) 100%);
    }
    .kd-generic-insights-featured-body {
      position: relative; z-index: 1; display: flex; flex-direction: column;
      justify-content: flex-end; height: 100%; padding: 32px;
    }
    .kd-generic-insights-featured-tag { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #7FCBFF; margin-bottom: 12px; }
    .kd-generic-insights-featured-title { font-size: 26px; font-weight: 800; line-height: 1.3; color: #fff; margin-bottom: 12px; max-width: 480px; }
    .kd-generic-insights-featured-desc { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 440px; }
    .kd-generic-insights-side { display: flex; flex-direction: column; gap: 16px; }
    .kd-generic-insights-item {
      display: block; background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 22px; text-decoration: none;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .kd-generic-insights-item:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(10,17,40,.18); border-color: var(--accent-blue); }
    .kd-generic-insights-item-tag { display: block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-blue); margin-bottom: 8px; }
    .kd-generic-insights-item-title {
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
      font-size: 16px; font-weight: 700; line-height: 1.35; color: var(--text-primary); margin-bottom: 8px;
    }
    .kd-generic-insights-item-desc {
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
      font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 12px;
    }
    .kd-generic-insights-item-read { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--accent-blue); }
    .kd-generic-insights-item-read svg { width: 14px; height: 14px; transition: transform var(--transition); }
    .kd-generic-insights-item:hover .kd-generic-insights-item-read svg { transform: translateX(3px); }

    /* ── Success Stories: dark image-overlay card grid (case studies) ── */
    .kd-generic-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .kd-generic-stories-card {
      position: relative; display: block; min-height: 320px;
      border-radius: var(--radius-lg); overflow: hidden;
      background-color: #0B1224; background-size: cover; background-position: center;
      text-decoration: none; transition: transform var(--transition), box-shadow var(--transition);
    }
    .kd-generic-stories-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -18px rgba(10,17,40,.35); }
    .kd-generic-stories-scrim {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(10,17,40,0) 35%, rgba(10,17,40,.92) 100%);
    }
    .kd-generic-stories-body {
      position: relative; z-index: 1; display: flex; flex-direction: column;
      justify-content: flex-end; height: 100%; min-height: 320px; padding: 24px;
    }
    .kd-generic-stories-tag {
      align-self: flex-start; padding: 5px 12px; border-radius: 999px;
      background: rgba(255,255,255,.16); backdrop-filter: blur(4px);
      color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; margin-bottom: 10px;
    }
    .kd-generic-stories-title { font-size: 19px; font-weight: 700; line-height: 1.35; color: #fff; margin-bottom: 4px; }
    .kd-generic-stories-stats { display: flex; gap: 16px; margin-top: 8px; }
    .kd-generic-stories-stat { display: flex; flex-direction: column; }
    .kd-generic-stories-stat-value { font-size: 20px; font-weight: 800; color: #fff; }
    .kd-generic-stories-stat-label { font-size: 11px; color: rgba(255,255,255,.7); }
    .kd-generic-stories-read {
      display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
      font-size: 13.5px; font-weight: 700; color: #fff;
    }
    .kd-generic-stories-read svg { width: 14px; height: 14px; transition: transform var(--transition); }
    .kd-generic-stories-card:hover .kd-generic-stories-read svg { transform: translateX(3px); }

    @media (max-width: 900px) {
      .kd-generic-insights-grid { grid-template-columns: 1fr; }
      .kd-generic-insights-featured { min-height: 280px; }
      .kd-generic-stories-grid { grid-template-columns: 1fr; }
    }
    .blog-excerpt { font-size: 15px; color: var(--text-secondary); line-height: 1.65; flex: 1; }
