/* =================================================================
   InCheq Design System - Components
   LOCKED DESIGN SYSTEM - Do not modify without brand approval
   ================================================================= */

/* ============================================================
   PIXEL GRID MOTIF UTILITY
   Brand texture from InCheq logo - use sparingly
   ============================================================ */

/* Pure CSS grid pattern - no image required */
.grid-motif {
  position: relative;
  overflow: hidden;
}

.grid-motif::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  opacity: 0.06;
  pointer-events: none;
  background-image: 
    linear-gradient(to right, var(--dark-teal) 1px, transparent 1px),
    linear-gradient(to bottom, var(--dark-teal) 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: 0 0, 0 0;
}

/* Image-based overlay (if icon asset exists at /assets/incheq-icon.png) */
.grid-motif-image {
  position: relative;
  overflow: hidden;
}

.grid-motif-image::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  opacity: 0.05;
  pointer-events: none;
  background-image: url('/assets/incheq-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}

/* Bottom-left variant */
.grid-motif-bottom-left::before {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

/* Enhanced grid motif for dark hero sections - full coverage, behind text */
.hero-gradient.grid-motif::before,
.hero-dark.grid-motif::before {
  width: 100%;              /* Full width coverage */
  height: 100%;             /* Full height coverage */
  opacity: 0.15;            /* Increased visibility */
  z-index: 0;               /* Behind text content */
  background-image:
    linear-gradient(to right, var(--incheq-aqua) 1px, transparent 1px),
    linear-gradient(to bottom, var(--incheq-aqua) 1px, transparent 1px);
  background-size: 30px 30px, 30px 30px;
}

/* Ensure hero content sits above grid */
.hero-gradient .container,
.hero-dark .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SUBTLE MOTION SYSTEM
   ============================================================ */

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Scroll-triggered fade-up animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Elements ready for scroll animation - progressive enhancement approach */
/* Cards are visible by default, animation only applies when JS adds .animate-on-scroll class to body */
body.animate-on-scroll .card,
body.animate-on-scroll .persona-tile,
body.animate-on-scroll .grid-2 > *,
body.animate-on-scroll .grid-3 > *,
body.animate-on-scroll .grid-4 > * {
  opacity: 0;
  animation: fadeUp 280ms ease-out forwards;
  animation-play-state: paused;
}

/* Trigger animation when element is visible */
body.animate-on-scroll .card.is-visible,
body.animate-on-scroll .persona-tile.is-visible,
body.animate-on-scroll .grid-2 > .is-visible,
body.animate-on-scroll .grid-3 > .is-visible,
body.animate-on-scroll .grid-4 > .is-visible {
  animation-play-state: running;
}

/* Staggered delays for grouped elements */
.grid-2 > *:nth-child(1),
.grid-3 > *:nth-child(1),
.grid-4 > *:nth-child(1) { animation-delay: 0ms; }

.grid-2 > *:nth-child(2),
.grid-3 > *:nth-child(2),
.grid-4 > *:nth-child(2) { animation-delay: 60ms; }

.grid-3 > *:nth-child(3),
.grid-4 > *:nth-child(3) { animation-delay: 120ms; }

.grid-4 > *:nth-child(4) { animation-delay: 180ms; }

.grid-3 > *:nth-child(4),
.grid-4 > *:nth-child(5) { animation-delay: 240ms; }

.grid-3 > *:nth-child(5),
.grid-4 > *:nth-child(6) { animation-delay: 300ms; }

.grid-3 > *:nth-child(6),
.grid-4 > *:nth-child(7) { animation-delay: 360ms; }

.grid-4 > *:nth-child(8) { animation-delay: 420ms; }

/* Reduced motion preference - disable animations */
@media (prefers-reduced-motion: reduce) {
  .card,
  .persona-tile,
  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > * {
    opacity: 1;
    animation: none;
  }
}

/* Button hover lift */
.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Smooth transitions for interactive elements */
.btn,
a.nav-link {
  transition: all var(--transition-base);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

/* Light navbar (default) */
.navbar-light {
  background-color: var(--pure-white);
  border-bottom-color: var(--fog);
  box-shadow: var(--shadow-sm);
}

.navbar-light .nav-link {
  color: var(--ink);
}

.navbar-light .nav-link:hover {
  color: var(--dark-teal);
  font-weight: var(--weight-medium);
}

.navbar-light .nav-link.active {
  color: var(--dark-teal);
  font-weight: var(--weight-semibold);
  position: relative;
}

.navbar-light .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--dark-teal);
}

/* Dark navbar */
.navbar-dark {
  background-color: var(--ink);
  border-bottom-color: var(--dark-blue);
}

.navbar-dark .nav-link {
  color: var(--pure-white);
}

.navbar-dark .nav-link:hover {
  color: var(--incheq-aqua);
}

.navbar-dark .nav-link.active {
  color: var(--incheq-aqua);
  font-weight: var(--weight-medium);
}

/* Navbar inner container */
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-fluid-md); /* Fluid horizontal padding */
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Navigation links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8); /* 32px spacing between items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-base); /* 16px - readable size */
  font-weight: var(--weight-medium); /* 500 - better readability */
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

/* Trademark superscript styling in nav links */
.nav-link sup {
  font-size: 0.6em;
  font-weight: var(--weight-semibold);
  vertical-align: super;
  line-height: 0;
  margin-left: 1px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--ink);              /* Ensure button is visible */
  font-size: var(--text-2xl);     /* Larger touch target */
  line-height: 1;                 /* Prevent extra spacing */
}

/* Breakpoint: Mobile menu (below 640px) */
@media (max-width: 639px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mist);              /* Solid light background */
    border-top: 1px solid var(--fog);     /* Subtle separator */
    padding: var(--space-6) var(--space-4); /* More vertical padding */
    gap: var(--space-4);                  /* Spacing between items */
    box-shadow: var(--shadow-lg);
    align-items: stretch;                 /* Full-width items */
  }

  /* Mobile menu links - enhanced contrast and touch targets */
  .nav-links.is-open .nav-link {
    color: var(--ink);                    /* Ensure dark text on light bg */
    padding: var(--space-3) var(--space-4); /* Better touch target */
    border-radius: var(--radius-sm);      /* Subtle rounding */
    text-align: left;                     /* Align text left */
    background: var(--pure-white);        /* White background per item */
    border: 1px solid var(--fog);         /* Subtle border */
    transition: all var(--transition-base);
  }

  .nav-links.is-open .nav-link:hover {
    background: var(--fog);               /* Hover state */
    border-color: var(--dark-teal);       /* Highlight on hover */
    color: var(--dark-teal);
  }

  /* Mobile CTA button - full width on mobile */
  .nav-links.is-open .btn-primary {
    width: 100%;                          /* Full-width button */
    justify-content: center;              /* Center button text */
    margin-top: var(--space-2);           /* Extra spacing before CTA */
  }
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

/* Hero base - fluid padding */
.hero {
  position: relative;
  padding: var(--section-padding-fluid-hero) 0; /* clamp(64px → 128px) */
  overflow: hidden;
}

/* Hero gradient background (ink → dark-azure) */
.hero-gradient {
  background: linear-gradient(135deg, var(--ink) 0%, var(--dark-azure) 100%);
  color: var(--pure-white);
}

.hero-gradient h1,
.hero-gradient h2,
.hero-gradient h3,
.hero-gradient p {
  color: var(--pure-white);
}

/* Hero: Text only */
.hero-text {
  max-width: var(--container-lg);
  margin: 0 auto;
  text-align: left;
}

.hero-text h1 {
  margin-bottom: var(--space-6);
}

.hero-text .lead {
  margin-bottom: var(--space-8);
  color: inherit;
}

/* Hero: Split with data panel */
.hero-split {
  display: grid;
  gap: var(--space-fluid-lg); /* Fluid gap */
  align-items: center;
}

/* Breakpoint: Tablet → Desktop (1024px) */
@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-split-content {
  max-width: 600px;
}

.hero-split-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  backdrop-filter: blur(10px);
}

/* Hero: With metric row */
.hero-with-metrics {
  text-align: left;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding-top: var(--space-12);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metric {
  text-align: left;
}

.hero-metric-value {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1;
  margin-bottom: var(--space-2);
  color: var(--incheq-aqua);
}

.hero-metric-label {
  display: block;
  font-size: var(--text-base);
  color: var(--pure-white);
  opacity: 0.9;
}

.cta-row {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
  align-items: center;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-6);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

/* Primary button (light backgrounds) - WCAG AA compliant */
.btn-primary {
  background-color: var(--dark-teal);    /* #185668 - 5.1:1 contrast ✅ */
  color: var(--pure-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--incheq-green);  /* Better contrast than incheq-blue */
  color: var(--pure-white);               /* White font for better contrast */
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Navbar CTA button - outline style */
.nav-links .btn-primary {
  background-color: var(--pure-white);
  color: var(--incheq-green);            /* #128b95 */
  border: 1px solid var(--dark-azure);   /* Thin dark azure outline */
  font-family: var(--font-body);         /* Inter */
  font-weight: var(--weight-bold);
  margin-left: var(--space-4);
  box-shadow: none;
}

.nav-links .btn-primary:hover {
  background-color: var(--dark-azure);
  color: var(--pure-white);
  border-color: var(--dark-azure);
  box-shadow: var(--shadow-sm);
}

/* Primary button (dark backgrounds) - Maximum contrast */
.btn-primary-dark {
  background-color: var(--pure-white);   /* White bg for maximum contrast */
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  font-weight: var(--weight-semibold);
}

.btn-primary-dark:hover {
  background-color: var(--pure-white);    /* Stay white - no aqua clash */
  color: var(--dark-teal);                /* Text shifts to brand color */
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);  /* White glow effect */
  transform: translateY(-2px);            /* Slight lift */
}

.btn-primary-dark:active {
  transform: translateY(0);
}

/* Secondary button */
.btn-secondary {
  background-color: var(--mint);
  color: var(--ink);
  border: 1px solid var(--fog);
}

.btn-secondary:hover {
  background-color: var(--fog);
  border-color: var(--dark-teal);
}

/* Outline CTA button - matches navbar CTA style */
.btn-outline-cta {
  background-color: var(--pure-white);
  color: var(--incheq-green);
  border: 1px solid var(--dark-azure);
  font-weight: var(--weight-bold);
  box-shadow: none;
}

.btn-outline-cta:hover {
  background-color: var(--dark-azure);
  color: var(--pure-white);
  border-color: var(--dark-azure);
  box-shadow: var(--shadow-sm);
}

/* Ghost button - Improved contrast */
.btn-ghost {
  background-color: transparent;
  color: var(--dark-teal);
  border: 2px solid var(--dark-teal);    /* Thicker border for visibility */
}

.btn-ghost:hover {
  background-color: var(--dark-teal);    /* Solid fill on hover */
  color: var(--pure-white);
  border-color: var(--dark-teal);
}

/* Ghost on dark - Improved contrast */
.btn-ghost-dark {
  background-color: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);   /* Thicker border */
}

.btn-ghost-dark:hover {
  background-color: var(--pure-white);   /* Solid fill on hover */
  color: var(--ink);
  border-color: var(--pure-white);
}

/* Button sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

/* Button focus states - WCAG AAA */
.btn:focus-visible {
  outline: 3px solid var(--incheq-blue);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

/* ============================================================
   CARDS - STANDARDIZED SYSTEM
   ============================================================ */

/* Standard card - Improved spacing */
.card {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--fog);
  box-shadow: var(--shadow-sm);
  padding: var(--space-fluid-lg);        /* Fluid padding: 24px → 48px */
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);                   /* Consistent spacing between children */
}

.card:hover {
  border-color: var(--incheq-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);            /* Subtle lift */
}

/* Card as clickable link */
a.card {
  text-decoration: none;
  color: inherit;
}

a.card:hover h3,
a.card:hover .card-title {
  color: var(--dark-teal);
}

/* Card header with optional icon/label */
.card-header {
  margin-bottom: var(--space-4);
}

.card-label {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--mint);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--dark-teal);
  margin-bottom: var(--space-3);
}

/* Card title - always h3 inside cards */
.card h3,
.card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);              /* Fluid 18px → 20px */
  font-weight: var(--weight-semibold);
  margin-top: 0;
  margin-bottom: var(--space-fluid-sm);   /* Fluid breathing room: 12px → 24px */
  color: var(--ink);
  line-height: var(--leading-snug);
}

/* Card h4 for subheadings */
.card h4 {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  margin-top: var(--space-fluid-sm);
  margin-bottom: var(--space-2);
  color: var(--smoke);
}

/* Card body content - Improved contrast */
.card-content {
  color: var(--ink);                      /* Full contrast instead of smoke */
  line-height: var(--leading-relaxed);
  flex-grow: 1;
}

.card-content p {
  margin-bottom: var(--space-4);          /* Breathing room between paragraphs */
}

.card-content p:last-child {
  margin-bottom: 0;
}

/* Optional muted text in cards */
.card-content .text-muted,
.card-meta {
  color: var(--smoke);                    /* Use smoke only for meta/secondary text */
  font-size: var(--text-sm);
}

/* Ensure sufficient contrast for emphasis */
.card-content strong,
.card-content b {
  color: var(--ink);
  font-weight: var(--weight-semibold);
}

/* Optional card footer */
.card-footer {
  margin-top: auto;                       /* Push to bottom automatically */
  padding-top: var(--space-fluid-sm);     /* Fluid spacing */
  border-top: 1px solid var(--fog);
  font-size: var(--text-sm);
  color: var(--smoke);
}

/* Accent bar variant */
.card-accent {
  border-left: 4px solid var(--incheq-blue);
}

/* Compact card for tighter layouts - Improved breathing room */
.card-compact {
  padding: var(--space-fluid-md);         /* Fluid: 16px → 32px instead of fixed 24px */
  gap: var(--space-3);                    /* Tighter but present spacing */
}

.card-compact h3,
.card-compact .card-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);          /* 12px instead of 8px */
}

/* Data card */
.card-data {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  border-left: 4px solid var(--incheq-blue);
}

.card-data-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.card-data-value {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.card-data-meta {
  font-size: var(--text-sm);
  color: var(--smoke);
}

/* Card on dark backgrounds */
.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
}

.card-dark h3,
.card-dark .card-title {
  color: var(--pure-white);
}

.card-dark .card-content {
  color: rgba(255, 255, 255, 0.9);        /* Slight transparency for body */
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--incheq-aqua);
}

/* Callout card */
.card-callout {
  background: var(--mint);
  border: 1px solid var(--fog);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  position: relative;
}

.card-callout::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--incheq-blue);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.card-callout-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--ink);
}

/* ============================================================
   INSIGHT CARDS - CATEGORY VISUAL ACCENTS
   Color-coded left borders by category
   ============================================================ */

.insight-card[data-category="regulatory-compliance"] {
  border-left: 4px solid var(--dark-teal);
}

.insight-card[data-category="research-evidence"] {
  border-left: 4px solid var(--incheq-blue);
}

.insight-card[data-category="workplace-practice"] {
  border-left: 4px solid var(--incheq-green);
}

.insight-card[data-category="industry-perspectives"] {
  border-left: 4px solid var(--azure);
}

/* Card label with icon support */
.card-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.card-label-icon {
  width: 14px;
  height: 14px;
  stroke: var(--dark-teal);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

/* ============================================================
   STYLED LISTS
   ============================================================ */

/* Accent bullet list - for feature/benefit lists */
.list-accent {
  list-style: none;
  padding: 0;
  max-width: 800px;
}

.list-accent li {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
  position: relative;
  line-height: var(--leading-relaxed);
}

.list-accent li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--incheq-blue);
  font-weight: var(--weight-bold);
  font-size: 1.2em;
}

/* ============================================================
   PROCESS FLOW DIAGRAM
   ============================================================ */

.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-12);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: var(--space-6);
  background: var(--pure-white);
  border: 1px solid var(--fog);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.process-step:hover {
  border-color: var(--incheq-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.process-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--incheq-blue), var(--incheq-aqua));
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
}

.process-step h4 {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-top: 0;
  margin-bottom: var(--space-2);
  color: var(--ink);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--smoke);
  margin: 0;
  line-height: var(--leading-relaxed);
}

.process-arrow {
  font-size: var(--text-3xl);
  color: var(--incheq-blue);
  font-weight: var(--weight-bold);
  flex: 0 0 auto;
}

/* Continuous monitoring loop variant */
.process-step-loop {
  position: relative;
  border: 2px solid var(--incheq-blue);
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--mist) 100%);
}

.process-icon-loop {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--dark-teal), var(--incheq-blue));
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon-loop svg {
  width: 28px;
  height: 28px;
}

.loop-indicator {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--dark-teal);
  font-weight: var(--weight-medium);
  font-style: italic;
}

/* Feature card variant for key points */
.card-feature {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.card-feature-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--ink);
  margin: 0;
  line-height: var(--leading-snug);
}

.card-feature p {
  font-size: var(--text-base);
  color: var(--smoke);
  margin: 0;
  line-height: var(--leading-relaxed);
}

/* Balanced grid for equal-height cards */
.grid-2-balanced {
  align-items: stretch;
}

.grid-2-balanced > * {
  height: 100%;
}

/* Mobile: stack vertically, hide arrows */
@media (max-width: 767px) {
  .process-flow {
    flex-direction: column;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    width: 100%;
  }
}

/* Tablet: 2-column grid layout */
@media (min-width: 768px) and (max-width: 1023px) {
  .process-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    min-width: auto;
  }
}


/* ============================================================
   IMAGE SYSTEM
   ============================================================ */

/* Section header image */
.section-image-header {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-12);
  box-shadow: var(--shadow-lg);
}

/* Card thumbnail image */
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: calc(var(--space-8) * -1);    /* Negative margin for bleed */
  margin-bottom: var(--space-6);
}

/* Industry/category icon */
.category-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: var(--space-4);
}

/* Legacy section-image class for backwards compatibility */
.section-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  display: block;
}

/* Background image sections (use sparingly) */
.section-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(27, 29, 38, 0.95), 
    rgba(28, 69, 83, 0.90)
  );
}

.section-with-bg .container {
  position: relative;
  z-index: 1;
}


/* ============================================================
   SECTION UTILITIES
   ============================================================ */

/* Light section (default) */
.section-light {
  background-color: var(--mist);
}

/* Alternate section (fog background) */
.section-alternate {
  background-color: var(--fog);
}

/* Dark section */
.section-dark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--dark-azure) 100%);
  color: var(--pure-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-dark p {
  color: var(--pure-white);
}

/* White section */
.section-white {
  background-color: var(--pure-white);
}

/* ============================================================
   GRID UTILITIES
   ============================================================ */

/* 2-column grid */
.grid-2 {
  display: grid;
  gap: var(--space-fluid-md); /* Fluid gap */
}

/* Breakpoint: Mobile → Tablet (640px) */
@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3-column grid */
.grid-3 {
  display: grid;
  gap: var(--space-fluid-md); /* Fluid gap */
}

/* Breakpoint: Mobile → Tablet (640px) */
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Breakpoint: Tablet → Desktop (1024px) */
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 4-column grid */
.grid-4 {
  display: grid;
  gap: var(--space-fluid-sm); /* Fluid gap */
}

/* Breakpoint: Mobile → Tablet (640px) */
@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Breakpoint: Tablet → Desktop (1024px) */
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   PERSONA TILES
   Compact tiles for audience list
   ============================================================ */

.persona-tiles {
  display: grid;
  gap: var(--space-fluid-sm); /* Fluid gap */
}

/* Breakpoint: Mobile → Tablet (640px) */
@media (min-width: 640px) {
  .persona-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Breakpoint: Tablet → Desktop (1024px) */
@media (min-width: 1024px) {
  .persona-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.persona-tile {
  background: var(--pure-white);
  border: 1px solid var(--fog);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.persona-tile:hover {
  border-color: var(--incheq-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.persona-tile-icon {
  width: 48px;
  height: 48px;
  background: var(--mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--dark-teal);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
}

.persona-tile-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.persona-tile-description {
  font-size: var(--text-sm);
  color: var(--smoke);
  line-height: var(--leading-normal);
}

/* ============================================================
   FOOTER
   ============================================================ */

/* Simple footer */
.footer-simple {
  background-color: var(--ink);
  color: var(--pure-white);
  padding: var(--space-8) 0;
  text-align: center;
}

.footer-simple p {
  color: var(--pure-white);
  margin: 0;
  opacity: 0.8;
}

.footer-simple a {
  color: var(--incheq-aqua);
  text-decoration: none;
}

.footer-simple a:hover {
  color: var(--pure-white);
  text-decoration: underline;
}

/* Enterprise footer */
.footer-enterprise {
  background-color: var(--ink);
  color: var(--pure-white);
  padding: var(--section-padding-fluid-spacious) 0 var(--space-fluid-md) 0;
}

.footer-grid {
  display: grid;
  gap: var(--space-fluid-lg);
  margin-bottom: var(--space-fluid-lg);
}

/* Breakpoint: Mobile → Tablet (640px) - 2 columns */
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Breakpoint: Tablet → Desktop (1024px) - 4 columns */
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 400px;
}

.footer-brand-logo {
  margin-bottom: var(--space-4);
}

.footer-brand-logo img {
  height: 40px;
  width: auto;
}

.footer-brand-description {
  color: var(--pure-white);
  opacity: 0.8;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.footer-column h6 {
  color: var(--incheq-aqua);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--pure-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--incheq-aqua);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-fluid-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Breakpoint: Mobile → Tablet (640px) */
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--pure-white);
  opacity: 0.6;
  font-size: var(--text-sm);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  color: var(--pure-white);
  opacity: 0.6;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.footer-legal a:hover {
  opacity: 1;
}

/* ============================================================
   HERO VARIANT 1: SPLIT PANEL
   Two-column layout with translucent accent panel
   Best for: Product pages (Safe Minds Index, Safe Minds Better Work)
   Usage: <section class="hero hero-split-accent">
   ============================================================ */

.hero-split-accent {
  background: var(--ink);
  color: var(--pure-white);
}

.hero-split-accent .container {
  display: grid;
  gap: var(--space-fluid-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-split-accent .container {
    grid-template-columns: 1.4fr 1fr;
  }
}

.hero-split-accent h1,
.hero-split-accent h2,
.hero-split-accent h3,
.hero-split-accent p {
  color: var(--pure-white);
}

.hero-split-accent .hero-content {
  position: relative;
  z-index: 2;
}

.hero-split-accent .hero-content h1 {
  margin-bottom: var(--space-6);
}

.hero-split-accent .hero-content .lead {
  margin-bottom: var(--space-8);
  opacity: 0.95;
}

/* Accent panel with enhanced grid motif */
.hero-accent-panel {
  position: relative;
  background: rgba(108, 214, 221, 0.04);
  border: 1px solid rgba(108, 214, 221, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dense grid pattern inside panel */
.hero-accent-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(to right, var(--incheq-aqua) 1px, transparent 1px),
    linear-gradient(to bottom, var(--incheq-aqua) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Subtle glow effect */
.hero-accent-panel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(108, 214, 221, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Optional content inside panel */
.hero-accent-panel-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--incheq-aqua);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Mobile: Stack and reduce panel height */
@media (max-width: 1023px) {
  .hero-split-accent .container {
    grid-template-columns: 1fr;
  }

  .hero-accent-panel {
    min-height: 180px;
    padding: var(--space-8) var(--space-6);
    order: -1;
    margin-bottom: var(--space-6);
  }
}

/* ============================================================
   HERO VARIANT 2: BOTTOM BAND
   Horizontal gradient accent band at bottom
   Best for: Foundation pages (Contact, Industries, Partner Ecosystem)
   Usage: <section class="hero hero-bottom-band">
   ============================================================ */

.hero-bottom-band {
  background: var(--ink);
  color: var(--pure-white);
  position: relative;
  padding-bottom: calc(var(--section-padding-fluid-hero) + 80px);
}

.hero-bottom-band h1,
.hero-bottom-band h2,
.hero-bottom-band h3,
.hero-bottom-band p {
  color: var(--pure-white);
}

.hero-bottom-band .container {
  position: relative;
  z-index: 2;
}

.hero-bottom-band .hero-text {
  max-width: var(--container-lg);
}

/* The gradient band */
.hero-bottom-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    90deg,
    var(--dark-teal) 0%,
    var(--incheq-blue) 50%,
    var(--incheq-aqua) 100%
  );
  opacity: 0.85;
}

/* Grid pattern contained within the band */
.hero-bottom-band::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1;
  opacity: 0.2;
  background-image:
    linear-gradient(to right, var(--pure-white) 1px, transparent 1px),
    linear-gradient(to bottom, var(--pure-white) 1px, transparent 1px);
  background-size: 25px 25px;
}

/* Fade transition from main area to band */
.hero-band-fade {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(24, 86, 104, 0.3));
  pointer-events: none;
  z-index: 1;
}

/* Responsive band height */
@media (max-width: 767px) {
  .hero-bottom-band {
    padding-bottom: calc(var(--section-padding-fluid-hero) + 60px);
  }

  .hero-bottom-band::after,
  .hero-bottom-band::before {
    height: 70px;
  }

  .hero-band-fade {
    bottom: 70px;
    height: 40px;
  }
}

/* ============================================================
   HERO VARIANT 3: OFFSET COLUMN
   Vertical grid column along left edge
   Best for: Content pages (Academy, Insights)
   Usage: <section class="hero hero-offset-column">
   ============================================================ */

.hero-offset-column {
  background: linear-gradient(135deg, var(--ink) 0%, var(--dark-azure) 50%, var(--ink) 100%);
  color: var(--pure-white);
  position: relative;
}

.hero-offset-column h1,
.hero-offset-column h2,
.hero-offset-column h3,
.hero-offset-column p {
  color: var(--pure-white);
}

/* The vertical column */
.hero-offset-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  background: rgba(108, 214, 221, 0.06);
  border-right: 1px solid rgba(108, 214, 221, 0.12);
}

/* Grid pattern inside the column */
.hero-offset-column::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  opacity: 0.2;
  background-image:
    linear-gradient(to right, var(--incheq-aqua) 1px, transparent 1px),
    linear-gradient(to bottom, var(--incheq-aqua) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 20px 0;
}

/* Content offset to clear the column */
.hero-offset-column .container {
  position: relative;
  z-index: 1;
  padding-left: calc(80px + var(--space-fluid-lg));
}

.hero-offset-column .hero-text {
  max-width: var(--container-lg);
}

/* Accent dots in column (optional decorative element) */
.hero-column-accent {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: 2;
}

.hero-column-accent span {
  width: 8px;
  height: 8px;
  background: var(--incheq-aqua);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-column-accent span:nth-child(2) {
  opacity: 0.8;
}

.hero-column-accent span:nth-child(3) {
  opacity: 1;
}

/* Tablet: Narrower column */
@media (max-width: 1023px) {
  .hero-offset-column::before,
  .hero-offset-column::after {
    width: 60px;
  }

  .hero-offset-column .container {
    padding-left: calc(60px + var(--space-fluid-md));
  }

  .hero-column-accent {
    left: 30px;
  }
}

/* Mobile: Column becomes top bar */
@media (max-width: 639px) {
  .hero-offset-column::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 6px;
    border-right: none;
    border-bottom: 1px solid rgba(108, 214, 221, 0.12);
  }

  .hero-offset-column::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 6px;
    background-size: 30px 30px;
    background-position: 0 -12px;
  }

  .hero-offset-column .container {
    padding-left: var(--space-fluid-md);
    padding-top: calc(var(--section-padding-fluid-hero) + var(--space-4));
  }

  .hero-column-accent {
    display: none;
  }
}

/* ============================================================
   HERO VARIANT: REFINED GRADIENT (Homepage enhancement)
   Subtle improvements to the default hero-gradient
   Usage: <section class="hero hero-gradient-refined grid-motif">
   ============================================================ */

.hero-gradient-refined {
  background:
    radial-gradient(ellipse at top right, rgba(28, 69, 83, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(6, 121, 132, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, var(--ink) 0%, var(--dark-azure) 100%);
  color: var(--pure-white);
}

.hero-gradient-refined h1,
.hero-gradient-refined h2,
.hero-gradient-refined h3,
.hero-gradient-refined p {
  color: var(--pure-white);
}

/* Refined grid motif - more subtle */
.hero-gradient-refined.grid-motif::before {
  opacity: 0.08;
  background-size: 35px 35px;
}

/* Vignette for depth */
.hero-gradient-refined::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(27, 29, 38, 0.25) 100%);
  pointer-events: none;
}

.hero-gradient-refined .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   LOGO GRID
   Responsive grid for client/partner logos
   Desktop: 4 per row, breaks down as screen shrinks
   ============================================================ */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Small tablet: 2 logos per row */
@media (min-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* Tablet: 3 logos per row */
@media (min-width: 640px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

/* Large tablet: 4 logos per row */
@media (min-width: 900px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-10);
  }
}

.logo-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  transition: all var(--transition-base);
}

.logo-grid-item img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all var(--transition-base);
}

.logo-grid-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Tablet and up: slightly larger logos */
@media (min-width: 640px) {
  .logo-grid-item img {
    max-width: 160px;
    max-height: 70px;
  }
}

/* Desktop: consistent logo sizing */
@media (min-width: 900px) {
  .logo-grid-item img {
    max-width: 180px;
    max-height: 80px;
  }
}

/* ============================================================
   TESTIMONIAL CARDS
   Client testimonials with quote, attribution, and logo
   ============================================================ */

.testimonial-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.testimonial-quote {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--ink);
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: var(--space-6);
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.1em;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-style: normal;
  color: var(--incheq-aqua);
  line-height: 1;
  opacity: 0.6;
}

.testimonial-attribution {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.testimonial-attribution p {
  margin: 0;
}

.testimonial-name {
  color: var(--dark-teal);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
}

.testimonial-title {
  color: var(--incheq-blue);
  font-weight: var(--weight-medium);
  font-size: var(--text-base);
}

.testimonial-company {
  color: var(--smoke);
  font-size: var(--text-sm);
}

.testimonial-logo {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--fog);
}

.testimonial-logo img {
  max-width: 120px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--transition-base);
}

.testimonial-card:hover .testimonial-logo img {
  filter: grayscale(0%) opacity(1);
}

/* ============================================================
   INSIGHTS FILTER BUTTONS
   Category filtering for articles/insights listing
   ============================================================ */

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--smoke);
  background: var(--pure-white);
  border: 1px solid var(--fog);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover {
  color: var(--dark-teal);
  border-color: var(--dark-teal);
  background: var(--mint);
}

.filter-btn:focus-visible {
  outline: 2px solid var(--incheq-blue);
  outline-offset: 2px;
}

.filter-btn-active,
.filter-btn[aria-pressed="true"] {
  color: var(--pure-white);
  background: var(--dark-teal);
  border-color: var(--dark-teal);
}

.filter-btn-active:hover,
.filter-btn[aria-pressed="true"]:hover {
  background: var(--dark-azure);
  border-color: var(--dark-azure);
  color: var(--pure-white);
}

/* Responsive filter buttons */
@media (max-width: 639px) {
  .insights-filter > div {
    gap: var(--space-2);
  }

  .filter-btn {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
  }
}

/* Filter button icon */
.filter-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

/* ============================================================
   AUTHOR SPOTLIGHT
   Author card for thought leadership positioning
   ============================================================ */

.author-spotlight {
  max-width: var(--container-lg);
  margin: 0 auto;
}

.author-card {
  display: flex;
  gap: var(--space-10);
  align-items: center;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--fog);
  position: relative;
  overflow: hidden;
}

/* Decorative quote mark */
.author-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 1;
  color: var(--mint);
  opacity: 0.6;
  pointer-events: none;
}

.author-photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--mint);
  box-shadow: var(--shadow-sm);
}

.author-content {
  flex: 1;
}

.author-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--incheq-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.author-name {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-semibold);
  color: var(--ink);
  margin: 0 0 var(--space-1) 0;
  line-height: var(--leading-tight);
}

.author-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--dark-teal);
  margin: 0 0 var(--space-4) 0;
}

.author-bio {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--smoke);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-6) 0;
  max-width: 600px;
}

.author-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Tablet: Adjust spacing */
@media (max-width: 1023px) {
  .author-card {
    gap: var(--space-8);
    padding: var(--space-8);
  }

  .author-photo {
    width: 140px;
    height: 140px;
  }
}

/* Mobile: Stack vertically */
@media (max-width: 639px) {
  .author-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
    padding: var(--space-6);
  }

  .author-photo {
    width: 120px;
    height: 120px;
  }

  .author-bio {
    max-width: none;
  }

  .author-ctas {
    justify-content: center;
  }
}

/* ============================================================
   METHODOLOGY CARDS
   Compact info cards for focus areas and content types
   ============================================================ */

.methodology-grid {
  display: grid;
  gap: var(--space-8);
  max-width: var(--container-lg);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.methodology-card {
  background: var(--mist);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  border-left: 4px solid var(--incheq-blue);
}

.methodology-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--dark-teal);
  margin: 0 0 var(--space-4) 0;
}

.methodology-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.methodology-list li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  color: var(--ink);
  line-height: var(--leading-relaxed);
}

.methodology-list li:last-child {
  margin-bottom: 0;
}

.methodology-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--incheq-blue);
  border-radius: 50%;
}

.methodology-list li strong {
  color: var(--dark-teal);
  font-weight: var(--weight-semibold);
}

/* Methodology list with icons (alternative to bullets) */
.methodology-list-icons li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding-left: 0;
}

.methodology-list-icons li::before {
  display: none;
}

.methodology-icon {
  width: 18px;
  height: 18px;
  stroke: var(--incheq-blue);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   FAQ SECTION
   Question and answer styling with visual accents
   ============================================================ */

.faq-item {
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--fog);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--ink);
}

.faq-icon {
  width: 22px;
  height: 22px;
  stroke: var(--incheq-blue);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  color: var(--ink);
  line-height: var(--leading-relaxed);
  padding-left: calc(22px + var(--space-3));
}

/* ============================================================
   CTA SECTION ENHANCEMENTS
   ============================================================ */

.section-cta-enhanced {
  position: relative;
  overflow: hidden;
}

.section-cta-enhanced::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

/* Button with trailing icon */
.btn-icon-right {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  margin-left: var(--space-2);
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-right {
  transform: translateX(2px);
}
