/* ======================================================
   ENTERPRISE VELOCITY TRIANGLE DIAGRAM
===================================================== */

.velocity-section {
  padding: 8rem 2rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.velocity-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(14, 165, 233, 0.03) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.velocity-section .velocity-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.velocity-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.velocity-intro h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.velocity-intro h4 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.velocity-intro p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.7;
}

/* Triangle Diagram Wrapper */
.triangle-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* SVG connecting lines container */
.triangle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Triangle node container — flexible grid that visually forms a triangle */
.triangle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* =============================================
   Z-Index wrapper containers (top / bottom)
   - Top wrapper defaults to z-index 4 (above bottom)
   - Hovering either wrapper overrides to 50
   - JS overrides to 999 during interaction
============================================= */
.top-node-container {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  z-index: 4;
}

.bottom-nodes-container {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 3;
}

.top-node-container:hover {
  z-index: 50;
}

.bottom-nodes-container:hover {
  z-index: 50;
}

/* Apex node spans full width top row */
.triangle-node-apex {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* Bottom-left node */
.triangle-node-left {
  display: flex;
  justify-content: flex-end;
  padding-right: 3.5rem;
}

/* Bottom-right node */
.triangle-node-right {
  display: flex;
  justify-content: flex-start;
  padding-left: 3.5rem;
}

/* Interactive triangle node */
.triangle-node {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.triangle-node:hover {
  transform: translateY(-4px);
}

.triangle-node:active {
  transform: translateY(-2px);
}

.triangle-node-inner {
  width: 260px;
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

/* Apex node styling */
.triangle-node-apex .triangle-node-inner {
  background: var(--triangle-apex-bg);
  border-color: var(--triangle-apex);
  border-width: 2px;
}

.triangle-node-apex .triangle-node-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--triangle-apex);
}

.triangle-node-apex .node-icon {
  background: var(--triangle-apex);
}

/* Bottom-left node styling */
.triangle-node-left .triangle-node-inner {
  background: var(--triangle-left-bg);
  border-color: var(--triangle-left);
  border-width: 2px;
}

.triangle-node-left .triangle-node-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--triangle-left);
}

.triangle-node-left .node-icon {
  background: var(--triangle-left);
}

/* Bottom-right node styling */
.triangle-node-right .triangle-node-inner {
  background: var(--triangle-right-bg);
  border-color: var(--triangle-right);
  border-width: 2px;
}

.triangle-node-right .triangle-node-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--triangle-right);
}

.triangle-node-right .node-icon {
  background: var(--triangle-right);
}

.node-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.node-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.node-subline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.node-chevron {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.triangle-node:hover .node-chevron {
  transform: translateY(2px);
}

/* Pop-up card styles */
.triangle-popup {
  position: absolute;
  z-index: 50;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15), 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  padding: 1.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(8px);
  pointer-events: none;
}

.triangle-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Apex popup positioned below the node — overlays the diagram */
.triangle-node-apex .triangle-popup {
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 60;
}

.triangle-node-apex .triangle-popup.active {
  transform: translateX(-50%) translateY(0);
}

/* Bottom-left popup positioned above the node */
.triangle-node-left .triangle-popup {
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
}

.triangle-node-left .triangle-popup.active {
  transform: translateX(-50%) translateY(0);
}

/* Bottom-right popup positioned above the node */
.triangle-node-right .triangle-popup {
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
}

.triangle-node-right .triangle-popup.active {
  transform: translateX(-50%) translateY(0);
}

/* Popup arrow */
.triangle-popup::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  transform: rotate(45deg);
  left: 50%;
  margin-left: -7px;
}

/* Arrow pointing down (for apex popup — below node) */
.triangle-node-apex .triangle-popup::after {
  top: -7px;
  border-right: none;
  border-bottom: none;
}

/* Arrow pointing up (for bottom popups — above node) */
.triangle-node-left .triangle-popup::after,
.triangle-node-right .triangle-popup::after {
  bottom: -7px;
  border-left: none;
  border-top: none;
}

.popup-color-bar {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.popup-color-bar.apex { background: var(--triangle-apex); }
.popup-color-bar.left { background: var(--triangle-left); }
.popup-color-bar.right { background: var(--triangle-right); }

.popup-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.popup-body {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.65;
}

.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--muted);
  color: var(--slate);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.popup-close:hover {
  background: var(--brand);
  color: #fff;
}

/* Mobile responsive — collapse to vertical 3-step sequence */
@media (max-width: 768px) {
  .triangle-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .top-node-container,
  .bottom-nodes-container {
    display: block;
    width: 100%;
  }

  .bottom-nodes-container {
    grid-template-columns: none;
  }

  .triangle-node-apex,
  .triangle-node-left,
  .triangle-node-right {
    display: block;
    padding: 0;
    justify-content: stretch;
    margin-bottom: 0;
  }

  .triangle-node-inner {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    cursor: default;
  }

  .triangle-node:hover {
    transform: none;
  }

  .node-chevron {
    display: none;
  }

  /* Popups become inline expanded content on mobile */
  .triangle-popup {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    margin-top: 0.75rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 1.25rem;
    border-radius: 12px;
    display: none;
  }

  .triangle-popup.active {
    display: block;
    transform: none;
  }

  .triangle-popup::after {
    display: none;
  }

  .popup-close {
    display: flex;
  }

  .triangle-svg {
    display: none;
  }

  .velocity-section {
    padding: 5rem 1.5rem;
  }

  .velocity-intro {
    margin-bottom: 2.5rem;
  }
}

/* ======================================================
   END ENTERPRISE VELOCITY TRIANGLE DIAGRAM
===================================================== */

:root {
  /* Primary branding (Sleek Slate Dark & Deep Navy) */
  --brand: #0f172a;
  --primary: #0f172a;
  --accent: #0ea5e9;

  /* Neutrals */
  --text: #1e293b;
  --muted: #f8fafc;
  --light: #ffffff;
  --dark: #0f172a;
  --border: #e2e8f0;
  --slate: #334155;

  /* Layout */
  --radius: 10px;
  --gap: 1rem;
  --max: 1200px;

  /* Cards */
  --card: #ffffff;

  /* Category Colors */
  --category-ai: #667eea;
  --category-github: #24292e;
  --category-azure: #0078d4;
  --category-vs: #944ce7;
  --category-jira: #0052cc;
  --category-scrum: #ff6b35;
  --category-other: #666;
  
  /* Triangle Diagram Colors */
  --triangle-apex: #667eea;
  --triangle-apex-bg: rgba(102, 126, 234, 0.08);
  --triangle-left: #0d9488;
  --triangle-left-bg: rgba(13, 148, 136, 0.08);
  --triangle-right: #0ea5e9;
  --triangle-right-bg: rgba(14, 165, 233, 0.08);
  --triangle-line: #94a3b8;
  --triangle-bg: rgba(248, 250, 252, 0.6);
}

/* ======================================================
   RESET (MERGED)
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.4;
}

h2 {color: var(--brand);margin: 0 0 0.75rem 0;border-bottom: 3px solid rgba(11, 91, 215, 0.08);padding-bottom: 0.4rem;}

/* ======================================================
   HEADER & NAV — Refactored with Background Image
===================================================== */

.Header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Background image layer */
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay on top of bg for readability */
.Header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Inner content sits above both bg layers */
.header-inner {
  position: relative;
  z-index: 2;
  background: transparent;
  color: white;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Header .logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  color: white;
}

.Header .logo .highlight { color: var(--accent); }

.header-logo {
    height: 70px;
    margin-right: 15px;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.navbar { display: flex; gap: 2rem; align-items: center; }

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--accent); }

/* Dropdown — with more prominent styling */
.nav-dropdown { position: relative; }
.dropdown-toggle {
  background: transparent;
  border: 0;
  color: white;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.caret {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: none;
  min-width: 230px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: white;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent);
}

.container {
    max-width: var(--max);
    margin: 1.5rem auto;
}

/* ======================================================
   SUBHEADER
===================================================== */
.subheader { background: linear-gradient(90deg, var(--brand), #0a78d6); color: #fff; padding: 2rem; display: flex; align-items: center; gap: 1rem; }
.subheader img { height: 56px; }
.subheader h1 { font-size: 1.5rem; margin: 0; }
.subheader h2 { color: #fff; }

/* ======================================================
   BUTTONS
===================================================== */
.btn {
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 0.5px;
}


.btn2 {
  margin-top:auto;
  padding:.6rem .9rem;
  border-radius:8px;
  background:var(--brand);
  color:#fff;
  border:0;
  cursor:pointer;
  font-weight:600;
  width:100%
}

.btn-normal {
    background: var(--brand);
    color: #fff;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
    background: #0b9bd4;
}

.btn-secondary {
    background: transparent;
    color: var(--slate);
    border: 2px solid var(--slate);
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
    background: var(--slate);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

/* ======================================================
   HERO — Asymmetric Overlap Layout
===================================================== */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--muted);
    padding: 0;
}

.hero-employers {
    background: var(--muted);
    padding: 3rem 2rem;
}

.hero-employers > div {
    max-width: var(--max);
    margin: 0 auto;
}

/* Hero image — covers entire hero area, images fill via object-fit */
.hero-image-container {
    position: absolute;
    top: 0;
    right: 50px;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-radius: 24px 0 0 24px;
}

/* Hero cross-fade slide panels */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: heroCrossFade 64s ease-in-out infinite;
    opacity: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slide:nth-child(4) { animation-delay: 24s; }
.hero-slide:nth-child(5) { animation-delay: 32s; }
.hero-slide:nth-child(6) { animation-delay: 40s; }
.hero-slide:nth-child(7) { animation-delay: 48s; }
.hero-slide:nth-child(8) { animation-delay: 56s; }

@keyframes heroCrossFade {
    0%   { opacity: 0; }
    3%   { opacity: 1; }
    10%  { opacity: 1; }
    12.5%{ opacity: 0; }
    100% { opacity: 0; }
}

/* Dark gradient overlay on image for text readability */
.hero-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Floating text block — sits on left, overlaps the image */
.hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 3.5rem;
    margin-left: 4%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.hero-text h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--brand);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.hero-text .tagline {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Responsive hero */
@media (max-width: 900px) {
    .hero-image-container {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        border-radius: 0;
        opacity: 0.2;
    }
    .hero-content {
        max-width: 100%;
        padding: 4rem 2rem;
        margin-left: 0;
        text-align: center;
    }
    .hero-text .tagline {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-text h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
}

/* ======================================================
   SCROLL ANIMATIONS — Fade-In-Up
===================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   SECTIONS — Premium Spacing
===================================================== */

.frontpage-section {
  padding: 8rem 2rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.frontpage-section div {
  max-width: var(--max);
  margin: 0 auto;
}

.frontpage-section:nth-child(even) {
  background: var(--muted);
}

.section-kicker {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 760px;
  line-height: 1.7;
  font-weight: 400;
}

.section-quote {
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.2rem;
    color: var(--slate);
}

.funding-section {
    margin-bottom: 1.5rem;
}

/* ======================================================
   ASYMMETRIC OVERLAP STRIPS
===================================================== */

.overlap-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    margin: 5rem 0;
    position: relative;
}

.overlap-strip.reverse {
    direction: rtl;
}

.overlap-strip.reverse .overlap-text-card {
    direction: ltr;
}

.overlap-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.overlap-text-card {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
    margin: 0 -3rem;
}

.overlap-strip.reverse .overlap-text-card {
    margin: 0 -3rem;
}

.overlap-text-card h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--brand);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.overlap-text-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.overlap-text-card p {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.overlap-text-card .tagline {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.overlap-text-card .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.overlap-text-card .tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 1rem;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--slate);
}

@media (max-width: 900px) {
    .overlap-strip {
        grid-template-columns: 1fr;
        margin: 3rem 0;
    }
    .overlap-strip.reverse {
        direction: ltr;
    }
    .overlap-image {
        height: 280px;
        border-radius: 16px;
    }
    .overlap-text-card {
        margin: -3rem 1rem 0 1rem;
        padding: 2rem;
    }
    .overlap-strip.reverse .overlap-text-card {
        margin: -3rem 1rem 0 1rem;
    }
    .overlap-text-card h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    .hero-employers {
        padding: 2rem 1rem;
    }
}

/* ======================================================
   PAGE INTRO SECTIONS
===================================================== */
.intro-section { background: var(--card); padding: 1.5rem; border-radius: var(--radius); margin-bottom: 2rem; box-shadow: 0 6px 18px rgba(12, 40, 80, 0.06); }
.intro-section p { margin: 0.5rem 0; font-size: 0.95rem; }

/* ======================================================
   GRID SYSTEM (RESTORED)
===================================================== */

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
}

.three-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}

/* ======================================================
   CARDS — Premium Skin
===================================================== */

.card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.card a.btn {
  margin-top: 1rem;
  display: inline-block;
}

/* Watermark icon */
.card::before {
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-size: 6rem;
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
}

.card.brain::before { content: "🧠"; }
.card.ai::before { content: "🤖"; }
.card.cost::before { content: "💸"; }
.card.risk::before { content: "⚠️"; }
.card.delivery::before { content: "🚀"; }
.card.turnover::before { content: "🔁"; }
.card.expensive::before { content: "📉"; }
.card.roi::before { content: "📈"; }
.card.pipeline::before { content: "🔄"; }
.card.build::before { content: "💻"; }
.card.assess::before { content: "🔍"; }
.card.hired::before { content: "🤝"; }

.card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.card p {
    color: var(--slate);
    line-height: 1.65;
}

/* ======================================================
   STEPS LIST
===================================================== */
.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'League Spartan', sans-serif;
}

.steps-list strong {
    color: var(--primary);
}

/* ======================================================
   CHEVRON WORKFLOW — Horizontal Process Chain
===================================================== */

.chevron-flow-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 4rem 0;
    position: relative;
}

.chevron-step {
    flex: 1 1 200px;
    padding: 2.5rem 3rem 2.5rem 3.5rem;
    position: relative;
    color: #fff;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%, 12% 50%);
    margin-right: -28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chevron-step:last-child {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 12% 50%);
    margin-right: 0;
}

.chevron-step:first-child {
    clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%);
}

.chevron-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.chevron-num {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.chevron-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.chevron-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .chevron-flow-container {
        flex-direction: column;
        gap: 1rem;
    }
    .chevron-step {
        clip-path: none;
        border-radius: 12px;
        margin-right: 0;
        min-height: auto;
        padding: 2rem;
        flex: none;
        width: 100%;
    }
    .chevron-step:first-child,
    .chevron-step:last-child {
        clip-path: none;
    }
}

@media (max-width: 900px) {
  .faq-scroll-arrow {
    display: none !important;
  }
  .faq-scroll-wrapper {
    display: block;
  }
}

/* ======================================================
   REVIEWS SECTION WITH HORIZONTAL SCROLLER
===================================================== */
.reviews-section {
    background: var(--light);
    padding: 8rem 2rem;
    border-bottom: 1px solid var(--border);
}

.reviews-title {
    max-width: var(--max);
    margin: 0 auto 3rem;
    text-align: center;
}

.reviews-title-main {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--primary);
}

.reviews-title-main b {
    color: var(--accent);
}

.reviews-title h3 {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.review-holder {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.review-holder::-webkit-scrollbar {
    display: none;
}

.review {
    flex: 0 0 340px;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideIn 0.6s ease-out forwards;
}

.review:nth-child(1) { animation-delay: 0.1s; }
.review:nth-child(2) { animation-delay: 0.2s; }
.review:nth-child(3) { animation-delay: 0.3s; }
.review:nth-child(4) { animation-delay: 0.4s; }
.review:nth-child(5) { animation-delay: 0.5s; }
.review:nth-child(6) { animation-delay: 0.6s; }
.review:nth-child(7) { animation-delay: 0.7s; }
.review:nth-child(8) { animation-delay: 0.8s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.review h1 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.review h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.review h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.review p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* ======================================================
   COURSE CATALOG 
===================================================== */

.category-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.category-section { margin-bottom: 2.5rem; }
.category-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.category-badge { display: inline-block; width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.category-header h3 { margin: 0; font-size: 1.25rem; color: var(--text); }
.category-ai .category-badge { background: var(--category-ai); }
.category-github .category-badge { background: var(--category-github); }
.category-azure .category-badge { background: var(--category-azure); }
.category-vs .category-badge { background: var(--category-vs); }
.category-jira .category-badge { background: var(--category-jira); }
.category-scrum .category-badge { background: var(--category-scrum); }
.category-other .category-badge { background: var(--category-other); }

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: var(--gap);
}

.tile {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(12,40,80,.06);
  border-left: 4px solid;
}

.tile h3{margin:.2rem 0 .25rem 0;font-size:1.05rem;}
.tile p{margin:0;font-size:.95rem}
.tile ul{margin:.4rem 0 0 1rem;padding:0;font-size:.9rem}

.tile.ai { border-left-color: var(--category-ai); }
.tile.github { border-left-color: var(--category-github); }
.tile.azure { border-left-color: var(--category-azure); }
.tile.jira { border-left-color: var(--category-jira); }
.tile.scrum { border-left-color: var(--category-scrum); }
.tile.other { border-left-color: var(--category-other); }

.tile-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.tile-description {
  font-size: .9rem;
  color: #555;
}

.tile-meta {
  display: flex;
  gap: 1rem;
  font-size: .85rem;
  border-top: 1px solid #f0f0f0;
  padding-top: .75rem;
}

/* ======================================================
   APPLICATION FORM 
===================================================== */

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(12,40,80,0.06);
}

.form-card ol {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
}

.form-card li {
    margin-bottom: 0.75rem;
}

.form-card h3 {
  margin-top: 0;
  color: var(--brand);
  font-size: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field textarea {
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.form-hint {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.error-message {
  color: #b00020;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

/* Validation errors */
.field-error {
  color: #b00020;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.input-error {
  border-color: #b00020 !important;
}


/* ======================================================
   TABLES 
===================================================== */

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th, td {
  padding: .5rem;
  border: 1px solid #e6eefc;
}

th {
  background: #f4f9ff;
  color: var(--brand);
}

/* ======================================================
   SIDEBAR
===================================================== */
aside ol{padding:inherit;}

.split{display:grid;grid-template-columns:1fr 320px;gap:1rem;align-items:start}

.sidebar{background:var(--card);padding:1rem;border-radius:var(--radius);box-shadow:0 6px 18px rgba(12,40,80,.04)}

/* ======================================================
   BENEFITS
===================================================== */
.benefits{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1rem}
.benefit{flex:1;min-width:150px;background:var(--card);padding:.75rem;border-radius:10px;text-align:center;box-shadow:0 6px 18px rgba(12,40,80,.04)}
.benefit i{font-size:1.6rem;color:var(--brand);display:block;margin-bottom:.4rem}

/* ======================================================
   FOOTER — Refactored with Dark CTA Banner Style
===================================================== */

.catalog-footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 2rem;
  border-top: 3px solid var(--accent);
}

.catalog-footer p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Call-to-action section — redesigned as dark banner with cards */
#cta-section {
    padding: 5rem 2rem 4rem;
    max-width: var(--max);
    margin: 0 auto;
    text-align: center;
}

#cta-section h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--brand);
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.cta-subhead {
    max-width: 720px;
    margin: 0.75rem auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--slate);
    text-align: center;
}

#cta-section .tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

#cta-section .tile {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent);
}

#cta-section .tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

#cta-section .tile .icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

#cta-section .tile h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

#cta-section .tile p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex: 1;
}

#cta-section .tile .btn2 {
    margin-top: auto;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

#cta-section .tile .btn2:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-1px);
}

/* ======================================================
   UNDER CONSTRUCTION
===================================================== */
.under-construction { display: none; }

/* ======================================================
   PRINTING
===================================================== */
.print-only { display: none; }

/* ======================================================
   PDF PRINT STYLES — NextGen Talent Lab Flyers
===================================================== */
@media print {

  @page {
    size: letter;
    margin: 0.5in;
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    background: #ffffff !important;
    color: #000000 !important;
  }

  .Header,
  header,
  footer,
  .header-bg,
  .header-inner,
  .navbar,
  .nav-link,
  .nav-dropdown,
  .dropdown-menu,
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-normal,
  .btn2,
  .no-print,
  .nav-tabs {
    display: none !important;
  }

  .print-only {
    display: block !important;
    font-size: 12px;
    margin-top: 1rem;
  }

  .wrapper,
  .main-content,
  main,
  .container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .container {
    max-width: 100% !important;
    margin: 0 !important;
  }

  .flyer-page {
    background: #ffffff;
    padding: 0.25in;
    max-width: 100%;
    margin: 0 auto;
    page-break-inside: avoid;
    overflow: visible !important;
  }

  h1, h2, h3,
  .card,
  .metric-box,
  .flyer-problem-reality,
  .flyer-cta,
  .flyer-step,
  .flyer-header,
  .flyer-footer,
  .flyer-value {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .grid,
  .flyer-steps {
    display: block !important;
    width: 100% !important;
  }

  .grid .card,
  .flyer-steps .card {
    display: block !important;
    width: 100% !important;
    margin-bottom: 0.75rem !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    page-break-inside: avoid;
    break-inside: avoid;
    overflow: visible !important;
  }

  .card::before {
    opacity: 0.04;
  }

  .card:hover {
    transform: none;
    box-shadow: none;
  }

  .flyer-cta {
    background: #f0f4f8 !important;
    color: #000000 !important;
    page-break-inside: avoid;
    break-inside: avoid;
    border: 1px solid #ccc;
  }

  .flyer-cta h2 {
    color: #0f172a !important;
  }

  .subheader {
    background: #0f172a !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .flyer-headline h1,
  .flyer-headline .flyer-subhead,
  .flyer-qr span {
    color: #ffffff !important;
  }

  a {
    color: #0f172a !important;
    text-decoration: underline;
  }

  .flyer-qr img {
    width: 85px;
    height: 85px;
  }

  .card::before {
    opacity: 0.04;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

}

/* ======================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .header-inner { flex-direction: column; padding: 0.5rem 1rem; }
  .navbar { flex-direction: column; gap: 0.5rem; }
  .tiles { grid-template-columns: 1fr; }
  .two-cols, .three-cols { grid-template-columns: 1fr; }
  .frontpage-section {
    padding: 5rem 1.5rem;
  }
  .header-logo {
    height: 50px;
  }
}

/* ===============================
   PRINT FLYER STYLES (student-getting-started.php
   ================================ */

.flyer-page {
  background: white;
  padding: 1.5rem 1.75rem;
  max-width: 850px;
  margin: 0 auto;
}

.flyer-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.flyer-header img {
  height: 70px;
  margin-bottom: 1.5rem;
}

.flyer-header h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
}

.flyer-subhead {
  font-size: 1.35rem;
  color: #444;
  margin-top: 0.75rem;
}

.flyer-value {
  text-align: center;
  margin-bottom: 1.5rem;
}

.flyer-value h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.flyer-value p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-weight: bold;
}

.flyer-problem-reality {
  text-align: center;
  margin-bottom: 1.5rem;
}

.flyer-problem-reality h2 {
  font-size: 1.75rem;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.flyer-problem-reality p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-weight: bold;
}

.flyer-step.card {
  padding: 1rem;
}

.flyer-steps {
  margin-bottom: 1.75rem;
}

.flyer-step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.flyer-step p {
  font-size: 1.05rem;
}

.flyer-step small {
  display: block;
  margin-top: 0.75rem;
  color: #777;
  font-size: 0.9rem;
}

.flyer-cta {
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.75rem;
  border-radius: 12px;
}

.flyer-cta h2 {
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;}

.flyer-cta p {
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  line-height: 1.45;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.flyer-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* HORIZONTAL HEADER LAYOUT */

.flyer-header.horizontal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.flyer-brand img {
  height: 120px;
}

.flyer-headline h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--light);
  margin-bottom: 0.25rem;
  line-height: 0.95em;
}

.flyer-headline .flyer-subhead {
  font-size: 1.25rem;
  color: var(--light);
  margin-top: 0.25rem;
}

.flyer-qr {
  text-align: center;
}

.flyer-qr img {
  width: 95px;
  height: 95px;
}

.flyer-qr span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--light);
}

/* ======================================================
   FAQ HORIZONTAL SCROLL ARROWS
   Desktop navigation assistance for the de-risking FAQ
===================================================== */
.faqpage-page {
  padding: 2rem 0;
}

.faqpage-hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  margin-bottom: 2rem;
}

.faqpage-hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.faqpage-hero .lead {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

.faqpage-main {
  min-width: 0;
}

.faqpage-category-block {
  margin-bottom: 2.5rem;
}

.faqpage-category-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 3px solid rgba(11, 91, 215, 0.08);
}

/* Executive Focus Callout Banner */
.executive-focus-callout {
  background: var(--muted);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
}

.executive-focus-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.executive-focus-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

/* Accordion Card */
.faqpage-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faqpage-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faqpage-question {
    display: flex;
    align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  transition: background 0.2s ease;
}

.faqpage-question:hover {
  background: #f1f5f9;
}

.faqpage-question[aria-expanded="true"] {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.faqpage-q-text {
  flex: 1;
  padding-right: 1rem;
}

.faqpage-toggle-icon {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faqpage-question[aria-expanded="true"] .faqpage-toggle-icon {
  transform: rotate(180deg);
}

.faqpage-answer {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  line-height: 1.7;
  color: #334155;
  font-size: 0.95rem;
}

.faqpage-answer p {
  margin: 0;
}

/* FAQ Answer — Bullet Points */
.faqpage-answer ul {
  padding-left: 1.5rem;
}

.faqpage-answer li {
  margin: 0.75rem 0;
  line-height: 1.6;
  color: #334155;
}

/* FAQ Answer — Blockquote */
.faqpage-answer blockquote {
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-radius: 0 6px 6px 0;
}

.faqpage-answer blockquote em {
  font-size: 0.875rem;
  color: #64748b;
  display: block;
  margin-top: 0.5rem;
}

/* Error state */
.faqpage-error {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: #c53030;
}

/* Sidebar Framework Card */
.faqpage-sidebar {
  position: sticky;
  top: 140px;
}

.faqpage-framework-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}

.framework-card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.faqpage-framework-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.faqpage-framework-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.faqpage-framework-card .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ======================================================
   CASE STUDY — MedTech Sub-page
====================================================== */

.case-study-page {
  padding: 4rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.case-study-wrapper {
    max-width: 800px;
    margin: 0 auto;
    }

.case-study-header {
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 1.5rem;
}

.case-kicker {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.case-title {
  font-size: 2.5rem;
  color: var(--brand);
  margin-top: 0.5rem;
  line-height: 1.2;
}

.case-problem-block {
  background: var(--muted);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--brand);
}

.case-block-heading {
  font-size: 1.15rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.case-problem-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0;
}

.case-smart-goal {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.case-smart-goal strong {
  color: var(--brand);
}

.case-section-title {
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.case-section-intro {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--text);
}

/* Role Cards */
.case-role-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.case-role-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
    background: #ffffff;
}

.case-role-title {
  color: var(--brand);
    font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.case-role-sub {
  font-weight: 400;
  color: var(--slate);
  font-size: 0.9rem;
}

.case-role-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.case-timeline-section {
  margin-bottom: 3rem;
}

.case-timeline-item {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.case-timeline-week {
  color: var(--brand);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.case-timeline-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

/* Outcomes */
.case-outcomes-block {
  background: linear-gradient(135deg, var(--brand) 0%, #1e293b 100%);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}

.case-outcomes-title {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.case-outcomes-block p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #f1f5f9;
}

.case-outcomes-block strong {
  color: var(--accent);
}

.case-closing {
  color: #cbd5e1;
  margin-bottom: 0;
}

/* ======================================================
   FAQ & CASE STUDY — Responsive
====================================================== */

@media (max-width: 768px) {
  .faqpage-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .faqpage-hero h1 {
    font-size: 1.8rem;
  }

  .case-title {
    font-size: 1.8rem;
  }

  .case-role-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   ATTRITION CASCADE — Problem Node Map
====================================================== */

.attrition-cascade-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.attrition-cascade {
  position: relative;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0;
}

.cascade-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cascade-connection {
  animation: dashFlow 1.5s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -20; }
}

@keyframes cascadePulse {
  0%   { transform: scale(1); box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5), 0 0 60px rgba(220, 38, 38, 0.15); }
  50%  { transform: scale(1.08); box-shadow: 0 20px 60px rgba(220, 38, 38, 0.65), 0 0 100px rgba(220, 38, 38, 0.25); }
  100% { transform: scale(1); box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5), 0 0 60px rgba(220, 38, 38, 0.15); }
}

/* Center hub — enlarged to overlap all four cards */
.cascade-center {
  grid-column: 2;
  grid-row: 2;
    display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #fff;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  padding: 1rem;
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5), 0 0 80px rgba(220, 38, 38, 0.2);
    z-index: 5;
  position: relative;
  animation: cascadePulse 2s ease-in-out infinite;
}

.cascade-icon {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.cascade-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Nodes — positioned via grid, with inner overlay to keep text readable when overlapped */
.cascade-node {
    background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
  position: relative;
}

/* Semi-transparent overlay so card text stays readable against the overlapping red circle */
.cascade-node::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.88) 30%, rgba(255,255,255,0.95) 70%);
  pointer-events: none;
  z-index: -1;
}

.cascade-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.cascade-node.node-top {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0.5rem;
  border-radius: 10px 10px 50% 50%;
}

.cascade-node.node-right {
  grid-column: 3;
  grid-row: 2;
  margin-left: 1.5rem;
  border-radius: 50% 10px 10px 50%;
}

.cascade-node.node-bottom {
  grid-column: 2;
  grid-row: 3;
  margin-top: 0.5rem;
  border-radius: 50% 50% 10px 10px;
}

.cascade-node.node-left {
  grid-column: 1;
  grid-row: 2;
  margin-right: 0.5rem;
  border-radius: 10px 50% 50% 10px;
}

.node-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cascade-node h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.cascade-node p {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.4;
  margin: 0;
}

/* Mobile cascade */
@media (max-width: 900px) {
  .attrition-cascade {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: auto;
  }

  .cascade-center {
    width: 140px;
    height: 140px;
    order: 0;
  }

  .cascade-node {
    width: 100%;
    max-width: 400px;
    margin: 0 !important;
  }

  .attrition-cascade .node-top,
  .attrition-cascade .node-right,
  .attrition-cascade .node-bottom,
  .attrition-cascade .node-left {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ======================================================
   ENGINEERING ECOSYSTEM — Orbital Cycle
====================================================== */

.ecosystem-cycle-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.ecosystem-cycle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  min-height: 520px;
  align-items: center;
  justify-items: center;
}

/* Orbital rings */
.cycle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 2px dashed rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: spinSlow 30s linear infinite;
}

.cycle-ring-2 {
  width: 320px;
  height: 320px;
  border-style: solid;
  border-color: rgba(14, 165, 233, 0.08);
  animation: spinSlow 20s linear infinite reverse;
}

@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center hub */
.cycle-center {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--brand), #1e293b);
  color: #fff;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
  z-index: 3;
  position: relative;
}

.cycle-icon {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.cycle-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* Arc labels */
.cycle-arc-label {
  position: absolute;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  z-index: 1;
  opacity: 0.7;
}

.label-1 { top: 22%; left: 30%; }
.label-2 { top: 22%; right: 30%; }
.label-3 { bottom: 22%; left: 47%; }

/* Node cards */
.cycle-node {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
  position: relative;
}

.cycle-node:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.node-top-left {
  grid-column: 1;
  grid-row: 1;
  max-width: 280px;
}

.node-top-right {
  grid-column: 3;
  grid-row: 1;
  max-width: 280px;
}

.node-bottom {
  grid-column: 2;
  grid-row: 3;
  max-width: 300px;
}

/* Accent tops */
.node-accent-1 { border-top: 4px solid #0ea5e9; }
.node-accent-2 { border-top: 4px solid #22c55e; }
.node-accent-3 { border-top: 4px solid #a855f7; }

.cycle-node-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cycle-node h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.cycle-node p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Mobile ecosystem */
@media (max-width: 900px) {
  .ecosystem-cycle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: auto;
  }

  .cycle-ring,
  .cycle-ring-2 {
    display: none;
  }

  .cycle-center {
    width: 120px;
    height: 120px;
    order: 0;
  }

  .cycle-arc-label {
    display: none;
  }

  .cycle-node {
    width: 100%;
    max-width: 400px;
    margin: 0 !important;
  }

  .ecosystem-cycle .node-top-left,
  .ecosystem-cycle .node-top-right,
  .ecosystem-cycle .node-bottom {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ======================================================
   ROI DASHBOARD — Circular Gauge Metrics
====================================================== */

.roi-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.roi-gauge {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roi-gauge:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Gauge ring container */
.gauge-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-track {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 8;
}

.gauge-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s ease-out;
}

.gauge-fill-1 { stroke: #0ea5e9; }  /* Time to Market — blue */
.gauge-fill-2 { stroke: #22c55e; }  /* Release Stability — green */
.gauge-fill-3 { stroke: #a855f7; }  /* Team Throughput — purple */
.gauge-fill-4 { stroke: #f59e0b; }  /* Engineering Retention — amber */

/* Center text on gauge */
.gauge-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-num {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1.1;
}

.gauge-unit {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
}

/* Gauge card text */
.roi-gauge h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.roi-gauge p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 1024px) {
  .roi-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .roi-dashboard {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ======================================================
   VERIFIABLE OUTCOMES — High-Impact Dashboard Section
   ====================================================== */

.outcomes-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 8rem 2rem;
    border-bottom: 1px solid var(--border);
}

.outcomes-container {
    max-width: var(--max);
    margin: 0 auto;
}

.outcomes-container .section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

/* Hero comparison row — Bootcamp vs NextGen */
.outcomes-hero-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem auto;
    max-width: 960px;
}

.outcomes-hero-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcomes-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.outcomes-hero-premium {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
}

.outcomes-hero-premium::before {
    content: "★";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 3px 8px rgba(14, 165, 233, 0.3);
}

.outcomes-hero-label {
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate);
    margin-bottom: 1.25rem;
}

.outcomes-hero-premium .outcomes-hero-label {
    color: var(--accent);
}

/* Comparison bar */
.outcomes-hero-bar-wrapper {
    margin-bottom: 1.5rem;
}

.outcomes-hero-bar {
    height: 28px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.outcomes-bar-low {
    background: #f1f5f9;
}

.outcomes-bar-high {
    background: #e0f2fe;
}

.outcomes-bar-fill {
    display: block;
    height: 100%;
    border-radius: 14px;
    transition: width 1.2s ease-out;
}

.outcomes-bar-low .outcomes-bar-fill {
    background: linear-gradient(90deg, #94a3b8, #64748b);
    width: 0;
}

.outcomes-bar-high .outcomes-bar-fill {
    background: linear-gradient(90deg, var(--accent), #06b6d4);
    width: 0;
}

/* Comparison stat pairs */
.outcomes-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.outcomes-compare-stat {
    text-align: center;
}

.outcomes-compare-num {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--brand);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.outcomes-num-accent {
    color: var(--accent);
}

.outcomes-compare-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.4;
}

/* VS badge */
.outcomes-hero-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcomes-vs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Footnote */
.outcomes-footnote {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.5;
}

/* Impact metric section */
.outcomes-impact-grid {
    margin-top: 4rem;
}

.outcomes-impact-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.outcomes-impact-section-title h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.outcomes-impact-section-title p {
    font-size: 1rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Outcomes dashboard uses existing .roi-dashboard and .roi-gauge styles */
.outcomes-dashboard .roi-gauge p {
    font-size: 0.85rem;
}

/* Portable skills banner */
.outcomes-portable-banner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin: 4rem auto;
    max-width: 1000px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
}

.outcomes-portable-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.outcomes-portable-content h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.outcomes-portable-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.outcomes-portable-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.outcomes-portable-tags .tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.9);
}

/* Final outcome cards */
.outcomes-final-grid {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .outcomes-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .outcomes-hero-vs {
        order: -1;
    }

    .outcomes-vs-badge {
        width: 44px;
        height: 44px;
        font-size: 0.75rem;
    }

    .outcomes-portable-banner {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .outcomes-portable-tags {
        justify-content: center;
    }

    .outcomes-section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .outcomes-compare-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .outcomes-hero-card {
        padding: 1.75rem 1.25rem;
    }

    .outcomes-impact-section-title h3 {
        font-size: 1.3rem;
  }
}

/* ======================================================
   FAQ HORIZONTAL SCROLL ARROWS
   Desktop navigation assistance for the de-risking FAQ
===================================================== */
.faq-scroll-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.faq-scroll-arrow {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border, #e2e8f0);
    background: #ffffff;
    color: var(--primary, #0f172a);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    z-index: 5;
    line-height: 1;
    padding: 0;
}
.faq-scroll-arrow:hover {
    background: var(--primary, #0f172a);
    color: #ffffff;
    border-color: var(--primary, #0f172a);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}
.faq-scroll-arrow:active {
    transform: scale(0.92);
}

/* Show the scrollbar on desktop for track navigation assistance */
.faq-scroll-track {
    scrollbar-width: thin;
    scrollbar-color: var(--border, #cbd5e1) transparent;
    -ms-overflow-style: auto !important;
}
.faq-scroll-track::-webkit-scrollbar {
    display: block !important;
    height: 6px;
}
.faq-scroll-track::-webkit-scrollbar-track {
    background: transparent;
}
.faq-scroll-track::-webkit-scrollbar-thumb {
    background: var(--border, #cbd5e1);
    border-radius: 3px;
}