/* ============================================================
   CODEXXA STAFF AUGMENTATION — Common Stylesheet
   Prefix: cxsa-  (Codexxa Staff Augmentation)
   Brand: Codexxa (codexxa.in)
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors */
  --cxsa-navy: #202060;
  --cxsa-navy-900: #15143d;
  --cxsa-navy-800: #1a1a52;
  --cxsa-navy-700: #202060;
  --cxsa-navy-600: #2d2d7a;
  --cxsa-navy-500: #3d3d99;
  --cxsa-navy-400: #6868b8;
  --cxsa-navy-300: #9e9ed4;
  --cxsa-navy-200: #cfcfe8;
  --cxsa-navy-100: #e8e8f5;
  --cxsa-navy-50: #f4f4fb;

  --cxsa-orange: #F08030;
  --cxsa-orange-900: #7a3d0f;
  --cxsa-orange-800: #a2521c;
  --cxsa-orange-700: #c46524;
  --cxsa-orange-600: #e07828;
  --cxsa-orange-500: #F08030;
  --cxsa-orange-400: #f59858;
  --cxsa-orange-300: #f8b585;
  --cxsa-orange-200: #fbd4b6;
  --cxsa-orange-100: #fde8d4;
  --cxsa-orange-50: #fef5ec;

  --cxsa-slate-900: #1d1d2b;
  --cxsa-slate-800: #2a2a3a;
  --cxsa-slate-700: #404052;
  --cxsa-slate-600: #5a5a6e;
  --cxsa-slate-500: #7a7a8e;
  --cxsa-slate-400: #a0a0b0;
  --cxsa-slate-300: #c4c4d0;
  --cxsa-slate-200: #e1e1e8;
  --cxsa-slate-100: #eef0f4;
  --cxsa-slate-50: #f7f8fb;

  --cxsa-white: #ffffff;
  --cxsa-ink: #0f0f1f;
  --cxsa-success: #1faa6b;
  --cxsa-success-soft: #e6f7ef;

  /* Gradients */
  --cxsa-grad-navy-orange: linear-gradient(135deg, #202060 0%, #F08030 100%);
  --cxsa-grad-navy-right: linear-gradient(90deg, #202060 0%, #2d2d7a 100%);
  --cxsa-grad-orange-right: linear-gradient(90deg, #F08030 0%, #f59858 100%);
  --cxsa-grad-light: linear-gradient(180deg, #f4f4fb 0%, #ffffff 100%);
  --cxsa-grad-hero-overlay: linear-gradient(135deg, rgba(32,32,96,0.88) 0%, rgba(32,32,96,0.65) 100%);

  /* Typography */
  --cxsa-font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --cxsa-font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --cxsa-font-mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  /* Spacing */
  --cxsa-section-py: 96px;
  --cxsa-section-py-sm: 64px;
  --cxsa-container-max: 1200px;
  --cxsa-gap: 24px;
  --cxsa-gap-lg: 40px;

  /* Radius */
  --cxsa-radius-sm: 8px;
  --cxsa-radius-md: 12px;
  --cxsa-radius-lg: 16px;
  --cxsa-radius-xl: 24px;
  --cxsa-radius-full: 9999px;

  /* Shadows */
  --cxsa-shadow-sm: 0 1px 3px rgba(32,32,96,0.08);
  --cxsa-shadow-md: 0 4px 16px rgba(32,32,96,0.1);
  --cxsa-shadow-lg: 0 8px 32px rgba(32,32,96,0.12);
  --cxsa-shadow-xl: 0 16px 48px rgba(32,32,96,0.16);
  --cxsa-shadow-orange: 0 8px 24px rgba(240,128,48,0.25);

  /* Transitions */
  --cxsa-transition-fast: 0.2s ease;
  --cxsa-transition-base: 0.3s ease;
  --cxsa-transition-slow: 0.5s ease;
}

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base (scoped) --- */
.cxsa-page-wrapper {
  font-family: var(--cxsa-font-body);
  color: var(--cxsa-slate-700);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.cxsa-page-wrapper *,
.cxsa-page-wrapper *::before,
.cxsa-page-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cxsa-page-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cxsa-page-wrapper a {
  color: var(--cxsa-orange);
  text-decoration: none;
  transition: color var(--cxsa-transition-fast);
}

.cxsa-page-wrapper a:hover {
  color: var(--cxsa-orange-600);
}

.cxsa-page-wrapper ul, .cxsa-page-wrapper ol {
  list-style: none;
}

/* --- Container --- */
.cxsa-container {
  max-width: var(--cxsa-container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* --- Section --- */
.cxsa-section {
  padding: var(--cxsa-section-py) 0;
}

.cxsa-section--sm {
  padding: var(--cxsa-section-py-sm) 0;
}

.cxsa-section--navy {
  background: var(--cxsa-navy);
  color: var(--cxsa-white);
}

.cxsa-section--navy h2,
.cxsa-section--navy h3,
.cxsa-section--navy h4 {
  color: var(--cxsa-white);
}

.cxsa-section--navy p {
  color: rgba(255,255,255,0.75);
}

.cxsa-section--light {
  background: var(--cxsa-navy-50);
}

.cxsa-section--white {
  background: var(--cxsa-white);
}

.cxsa-section--gradient {
  background: var(--cxsa-grad-light);
}

.cxsa-section--orange-soft {
  background: var(--cxsa-orange-50);
}

/* --- Typography --- */
.cxsa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cxsa-font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cxsa-orange);
  margin-bottom: 12px;
}

.cxsa-eyebrow .cxsa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cxsa-orange);
  display: inline-block;
}

.cxsa-eyebrow--white {
  color: var(--cxsa-orange-300);
}

.cxsa-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.cxsa-section-head h2 {
  font-family: var(--cxsa-font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.15;
  color: var(--cxsa-ink);
  margin: 10px 0 16px;
}

.cxsa-section-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--cxsa-slate-600);
}

.cxsa-section-head--left {
  text-align: left;
  margin: 0 0 48px;
}

.cxsa-grad-text {
  background: var(--cxsa-grad-navy-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Buttons --- */
.cxsa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--cxsa-radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--cxsa-transition-base);
  text-decoration: none;
  line-height: 1.2;
}

.cxsa-btn--primary {
  background: var(--cxsa-orange);
  color: var(--cxsa-white);
  box-shadow: var(--cxsa-shadow-orange);
}

.cxsa-btn--primary:hover {
  background: var(--cxsa-orange-600);
  color: var(--cxsa-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,128,48,0.35);
}

.cxsa-btn--secondary {
  background: var(--cxsa-navy);
  color: var(--cxsa-white);
  box-shadow: var(--cxsa-shadow-md);
}

.cxsa-btn--secondary:hover {
  background: var(--cxsa-navy-600);
  color: var(--cxsa-white);
  transform: translateY(-2px);
}

.cxsa-btn--outline {
  background: transparent;
  color: var(--cxsa-orange);
  border: 2px solid var(--cxsa-orange);
}

.cxsa-btn--outline:hover {
  background: var(--cxsa-orange);
  color: var(--cxsa-white);
  transform: translateY(-2px);
}

.cxsa-btn--outline-white {
  background: transparent;
  color: var(--cxsa-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.cxsa-btn--outline-white:hover {
  background: var(--cxsa-white);
  color: var(--cxsa-navy);
  transform: translateY(-2px);
}

.cxsa-btn--white {
  background: var(--cxsa-white);
  color: var(--cxsa-navy);
  box-shadow: var(--cxsa-shadow-md);
}

.cxsa-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--cxsa-shadow-lg);
  color: var(--cxsa-navy);
}

.cxsa-btn--sm {
  padding: 10px 24px;
  font-size: 14px;
}

.cxsa-btn--lg {
  padding: 18px 40px;
  font-size: 16px;
}

.cxsa-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Cards --- */
.cxsa-card {
  background: var(--cxsa-white);
  border-radius: var(--cxsa-radius-lg);
  padding: 32px;
  transition: all var(--cxsa-transition-base);
  border: 1px solid var(--cxsa-slate-100);
}

.cxsa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cxsa-shadow-lg);
  border-color: var(--cxsa-orange-100);
}

.cxsa-card--navy {
  background: var(--cxsa-navy-800);
  border-color: var(--cxsa-navy-600);
  color: var(--cxsa-white);
}

.cxsa-card--navy:hover {
  border-color: var(--cxsa-orange-400);
}

.cxsa-card--no-hover {
  transition: none;
}

.cxsa-card--no-hover:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--cxsa-slate-100);
}

.cxsa-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--cxsa-radius-md);
  background: var(--cxsa-orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--cxsa-orange);
}

.cxsa-card__icon--navy {
  background: rgba(255,255,255,0.1);
  color: var(--cxsa-orange-300);
}

.cxsa-card h3 {
  font-family: var(--cxsa-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--cxsa-ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cxsa-card--navy h3 {
  color: var(--cxsa-white);
}

.cxsa-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cxsa-slate-600);
}

.cxsa-card--navy p {
  color: rgba(255,255,255,0.7);
}

/* --- Grid Layouts --- */
.cxsa-grid {
  display: grid;
  gap: var(--cxsa-gap);
}

.cxsa-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.cxsa-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.cxsa-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cxsa-grid--2-1 {
  grid-template-columns: 2fr 1fr;
}

.cxsa-grid--1-2 {
  grid-template-columns: 1fr 2fr;
}

.cxsa-grid--gap-lg {
  gap: var(--cxsa-gap-lg);
}

/* --- Hero Banner --- */
.cxsa-hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cxsa-hero--split {
  background: var(--cxsa-grad-light);
}

.cxsa-hero--overlay {
  background: var(--cxsa-grad-hero-overlay), var(--cxsa-navy);
  color: var(--cxsa-white);
}

.cxsa-hero--gradient {
  background: var(--cxsa-grad-navy-orange);
  color: var(--cxsa-white);
}

.cxsa-hero--centered {
  text-align: center;
}

.cxsa-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.cxsa-hero__content {
  flex: 1;
}

.cxsa-hero__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cxsa-hero__visual img {
  border-radius: var(--cxsa-radius-xl);
  box-shadow: var(--cxsa-shadow-xl);
  max-height: 440px;
  object-fit: cover;
}

.cxsa-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,128,48,0.12);
  color: var(--cxsa-orange);
  font-family: var(--cxsa-font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--cxsa-radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cxsa-hero--overlay .cxsa-hero__badge,
.cxsa-hero--gradient .cxsa-hero__badge {
  background: rgba(255,255,255,0.15);
  color: var(--cxsa-orange-300);
}

.cxsa-hero h1 {
  font-family: var(--cxsa-font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.12;
  color: var(--cxsa-ink);
  margin-bottom: 20px;
}

.cxsa-hero--overlay h1,
.cxsa-hero--gradient h1 {
  color: var(--cxsa-white);
}

.cxsa-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cxsa-slate-600);
  max-width: 560px;
  margin-bottom: 32px;
}

.cxsa-hero--overlay .cxsa-hero__subtitle,
.cxsa-hero--gradient .cxsa-hero__subtitle {
  color: rgba(255,255,255,0.8);
}

.cxsa-hero--centered .cxsa-hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Hero with image background */
.cxsa-hero--bg-image {
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* --- Stats Bar --- */
.cxsa-stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.cxsa-stat {
  text-align: center;
}

.cxsa-stat__number {
  font-family: var(--cxsa-font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--cxsa-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.cxsa-stat__number .cxsa-accent {
  color: var(--cxsa-orange);
}

.cxsa-stat__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--cxsa-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cxsa-section--navy .cxsa-stat__number {
  color: var(--cxsa-white);
}

.cxsa-section--navy .cxsa-stat__label {
  color: rgba(255,255,255,0.6);
}

/* --- Stat Cards --- */
.cxsa-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cxsa-stat-card {
  background: var(--cxsa-white);
  border-radius: var(--cxsa-radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--cxsa-slate-100);
  transition: all var(--cxsa-transition-base);
}

.cxsa-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cxsa-shadow-md);
  border-color: var(--cxsa-orange-100);
}

.cxsa-stat-card__num {
  font-family: var(--cxsa-font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--cxsa-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.cxsa-stat-card__num .cxsa-accent {
  color: var(--cxsa-orange);
}

.cxsa-stat-card__lbl {
  font-size: 14px;
  color: var(--cxsa-slate-500);
  font-weight: 500;
}

/* --- Feature/Why Hire Cards --- */
.cxsa-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cxsa-feature-card {
  background: var(--cxsa-white);
  border-radius: var(--cxsa-radius-lg);
  padding: 32px;
  border: 1px solid var(--cxsa-slate-100);
  transition: all var(--cxsa-transition-base);
  position: relative;
}

.cxsa-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cxsa-shadow-lg);
  border-color: var(--cxsa-orange-100);
}

.cxsa-feature-card__number {
  font-family: var(--cxsa-font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--cxsa-orange-100);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.cxsa-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--cxsa-radius-md);
  background: var(--cxsa-orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: var(--cxsa-orange);
}

.cxsa-feature-card h3 {
  font-family: var(--cxsa-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--cxsa-ink);
  margin-bottom: 10px;
}

.cxsa-feature-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cxsa-slate-600);
}

/* --- Process/Timeline --- */
.cxsa-process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.cxsa-process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.cxsa-process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: var(--cxsa-orange-200);
}

.cxsa-process-step:last-child::after {
  display: none;
}

.cxsa-process-step__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cxsa-orange);
  color: var(--cxsa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cxsa-font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.cxsa-process-step h4 {
  font-family: var(--cxsa-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--cxsa-ink);
  margin-bottom: 8px;
}

.cxsa-process-step p {
  font-size: 14px;
  color: var(--cxsa-slate-500);
  line-height: 1.6;
}

/* Vertical timeline */
.cxsa-timeline {
  position: relative;
  padding-left: 40px;
}

.cxsa-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cxsa-orange-200);
}

.cxsa-timeline__item {
  position: relative;
  padding-bottom: 36px;
}

.cxsa-timeline__item:last-child {
  padding-bottom: 0;
}

.cxsa-timeline__dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cxsa-orange);
  border: 3px solid var(--cxsa-white);
  box-shadow: 0 0 0 3px var(--cxsa-orange-200);
}

.cxsa-timeline__item h4 {
  font-family: var(--cxsa-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--cxsa-ink);
  margin-bottom: 6px;
}

.cxsa-timeline__item p {
  font-size: 15px;
  color: var(--cxsa-slate-600);
  line-height: 1.6;
}

/* --- Tech Stack --- */
.cxsa-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.cxsa-tech-item {
  background: var(--cxsa-white);
  border-radius: var(--cxsa-radius-md);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--cxsa-slate-100);
  transition: all var(--cxsa-transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cxsa-tech-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--cxsa-shadow-md);
  border-color: var(--cxsa-orange-100);
}

.cxsa-tech-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--cxsa-radius-sm);
  background: var(--cxsa-navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cxsa-tech-item__name {
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--cxsa-ink);
}

.cxsa-tech-item__cat {
  font-size: 11px;
  color: var(--cxsa-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Engagement Models --- */
.cxsa-engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cxsa-engage-card {
  background: var(--cxsa-white);
  border-radius: var(--cxsa-radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--cxsa-slate-100);
  transition: all var(--cxsa-transition-base);
  text-align: center;
  position: relative;
}

.cxsa-engage-card:hover {
  border-color: var(--cxsa-orange);
  transform: translateY(-4px);
  box-shadow: var(--cxsa-shadow-lg);
}

.cxsa-engage-card--featured {
  border-color: var(--cxsa-orange);
  background: var(--cxsa-orange-50);
}

.cxsa-engage-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cxsa-orange);
  color: var(--cxsa-white);
  font-family: var(--cxsa-font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--cxsa-radius-full);
  white-space: nowrap;
}

.cxsa-engage-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cxsa-navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--cxsa-navy);
}

.cxsa-engage-card--featured .cxsa-engage-card__icon {
  background: var(--cxsa-orange);
  color: var(--cxsa-white);
}

.cxsa-engage-card h3 {
  font-family: var(--cxsa-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--cxsa-ink);
  margin-bottom: 12px;
}

.cxsa-engage-card p {
  font-size: 15px;
  color: var(--cxsa-slate-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cxsa-engage-card__features {
  text-align: left;
  margin-bottom: 24px;
}

.cxsa-engage-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cxsa-slate-700);
  padding: 6px 0;
}

.cxsa-engage-card__features li::before {
  content: '✓';
  color: var(--cxsa-success);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* --- Comparison Table --- */
.cxsa-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--cxsa-radius-lg);
  overflow: hidden;
  box-shadow: var(--cxsa-shadow-md);
}

.cxsa-compare-table thead {
  background: var(--cxsa-navy);
}

.cxsa-compare-table th {
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--cxsa-white);
  padding: 16px 24px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cxsa-compare-table td {
  padding: 14px 24px;
  font-size: 15px;
  color: var(--cxsa-slate-700);
  border-bottom: 1px solid var(--cxsa-slate-100);
  background: var(--cxsa-white);
}

.cxsa-compare-table tbody tr:hover td {
  background: var(--cxsa-navy-50);
}

.cxsa-compare-table .cxsa-check {
  color: var(--cxsa-success);
  font-weight: 700;
}

.cxsa-compare-table .cxsa-cross {
  color: var(--cxsa-slate-300);
}

/* --- Industries --- */
.cxsa-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cxsa-industry-item {
  background: var(--cxsa-white);
  border-radius: var(--cxsa-radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--cxsa-slate-100);
  transition: all var(--cxsa-transition-base);
}

.cxsa-industry-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--cxsa-shadow-md);
  border-color: var(--cxsa-orange-100);
}

.cxsa-industry-item__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.cxsa-industry-item h4 {
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--cxsa-ink);
}

/* --- FAQ Accordion --- */
.cxsa-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.cxsa-faq-item {
  border-bottom: 1px solid var(--cxsa-slate-200);
}

.cxsa-faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--cxsa-ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--cxsa-transition-fast);
}

.cxsa-faq-item__question:hover {
  color: var(--cxsa-orange);
}

.cxsa-faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cxsa-navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cxsa-navy);
  flex-shrink: 0;
  transition: all var(--cxsa-transition-base);
}

.cxsa-faq-item--active .cxsa-faq-item__icon {
  background: var(--cxsa-orange);
  color: var(--cxsa-white);
  transform: rotate(45deg);
}

.cxsa-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--cxsa-transition-slow), padding var(--cxsa-transition-slow);
}

.cxsa-faq-item--active .cxsa-faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.cxsa-faq-item__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cxsa-slate-600);
}

/* --- CTA Banner --- */
.cxsa-cta-banner {
  background: var(--cxsa-grad-navy-orange);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cxsa-cta-banner--navy {
  background: var(--cxsa-navy);
}

.cxsa-cta-banner--orange {
  background: var(--cxsa-orange);
}

.cxsa-cta-banner h2 {
  font-family: var(--cxsa-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--cxsa-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cxsa-cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cxsa-cta-banner .cxsa-btn-group {
  justify-content: center;
}

/* Decorative circles for CTA */
.cxsa-cta-banner::before,
.cxsa-cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.cxsa-cta-banner::before {
  width: 300px;
  height: 300px;
  background: var(--cxsa-white);
  top: -100px;
  right: -50px;
}

.cxsa-cta-banner::after {
  width: 200px;
  height: 200px;
  background: var(--cxsa-white);
  bottom: -80px;
  left: -40px;
}

/* --- Proficiency Bars --- */
.cxsa-skill-bar {
  margin-bottom: 20px;
}

.cxsa-skill-bar__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cxsa-skill-bar__name {
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--cxsa-ink);
}

.cxsa-skill-bar__pct {
  font-weight: 600;
  font-size: 14px;
  color: var(--cxsa-orange);
}

.cxsa-skill-bar__track {
  width: 100%;
  height: 8px;
  background: var(--cxsa-slate-100);
  border-radius: var(--cxsa-radius-full);
  overflow: hidden;
}

.cxsa-skill-bar__fill {
  height: 100%;
  border-radius: var(--cxsa-radius-full);
  background: var(--cxsa-grad-navy-orange);
  transition: width 1.2s ease;
}

/* --- Badge/Tag --- */
.cxsa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--cxsa-radius-full);
  font-family: var(--cxsa-font-display);
  font-size: 12px;
  font-weight: 600;
}

.cxsa-badge--navy {
  background: var(--cxsa-navy-50);
  color: var(--cxsa-navy);
}

.cxsa-badge--orange {
  background: var(--cxsa-orange-50);
  color: var(--cxsa-orange-700);
}

.cxsa-badge--success {
  background: var(--cxsa-success-soft);
  color: var(--cxsa-success);
}

/* --- Two Column Layout --- */
.cxsa-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cxsa-two-col--reverse {
  direction: rtl;
}

.cxsa-two-col--reverse > * {
  direction: ltr;
}

.cxsa-two-col__content h2 {
  font-family: var(--cxsa-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  color: var(--cxsa-ink);
  margin-bottom: 16px;
}

.cxsa-two-col__content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cxsa-slate-600);
  margin-bottom: 24px;
}

.cxsa-two-col__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cxsa-two-col__visual img {
  border-radius: var(--cxsa-radius-xl);
  box-shadow: var(--cxsa-shadow-lg);
}

.cxsa-section--navy .cxsa-two-col__content h2 {
  color: var(--cxsa-white);
}

.cxsa-section--navy .cxsa-two-col__content p {
  color: rgba(255,255,255,0.75);
}

/* --- List with checks --- */
.cxsa-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--cxsa-slate-700);
  padding: 8px 0;
  line-height: 1.5;
}

.cxsa-check-list li::before {
  content: '✓';
  color: var(--cxsa-success);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cxsa-check-list--orange li::before {
  content: '→';
  color: var(--cxsa-orange);
}

/* --- Tab Component --- */
.cxsa-tabs {
  display: flex;
  gap: 4px;
  background: var(--cxsa-slate-100);
  border-radius: var(--cxsa-radius-full);
  padding: 4px;
  margin-bottom: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.cxsa-tab {
  padding: 10px 24px;
  border-radius: var(--cxsa-radius-full);
  font-family: var(--cxsa-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--cxsa-slate-600);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--cxsa-transition-fast);
}

.cxsa-tab:hover {
  color: var(--cxsa-navy);
}

.cxsa-tab--active {
  background: var(--cxsa-white);
  color: var(--cxsa-navy);
  box-shadow: var(--cxsa-shadow-sm);
}

.cxsa-tab-content {
  display: none;
}

.cxsa-tab-content--active {
  display: block;
}

/* --- Testimonial / Quote --- */
.cxsa-quote-card {
  background: var(--cxsa-white);
  border-radius: var(--cxsa-radius-lg);
  padding: 36px;
  border: 1px solid var(--cxsa-slate-100);
  position: relative;
}

.cxsa-quote-card::before {
  content: '"';
  font-family: var(--cxsa-font-display);
  font-size: 72px;
  color: var(--cxsa-orange-100);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.cxsa-quote-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cxsa-slate-700);
  font-style: italic;
  padding-top: 24px;
  margin-bottom: 20px;
}

.cxsa-quote-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cxsa-quote-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cxsa-navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cxsa-font-display);
  font-weight: 700;
  color: var(--cxsa-navy);
  font-size: 16px;
}

.cxsa-quote-card__info h4 {
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--cxsa-ink);
}

.cxsa-quote-card__info p {
  font-size: 13px;
  color: var(--cxsa-slate-500);
}

/* --- Divider --- */
.cxsa-divider {
  width: 60px;
  height: 4px;
  border-radius: var(--cxsa-radius-full);
  background: var(--cxsa-orange);
  margin: 16px 0;
}

.cxsa-divider--center {
  margin: 16px auto;
}

/* --- Image placeholder / Illustration --- */
.cxsa-illustration {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: var(--cxsa-radius-xl);
  background: var(--cxsa-grad-navy-right);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cxsa-white);
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.cxsa-illustration::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(240,128,48,0.15), transparent 50%);
}

/* --- Accordion (Engagement Models) --- */
.cxsa-accordion-item {
  border: 1px solid var(--cxsa-slate-200);
  border-radius: var(--cxsa-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--cxsa-transition-fast);
}

.cxsa-accordion-item:hover {
  border-color: var(--cxsa-orange-200);
}

.cxsa-accordion-item--active {
  border-color: var(--cxsa-orange);
  box-shadow: var(--cxsa-shadow-md);
}

.cxsa-accordion-trigger {
  width: 100%;
  background: var(--cxsa-white);
  border: none;
  padding: 20px 24px;
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--cxsa-ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cxsa-accordion-trigger__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cxsa-navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--cxsa-navy);
  flex-shrink: 0;
  transition: all var(--cxsa-transition-base);
}

.cxsa-accordion-item--active .cxsa-accordion-trigger__icon {
  background: var(--cxsa-orange);
  color: var(--cxsa-white);
  transform: rotate(180deg);
}

.cxsa-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--cxsa-transition-slow);
}

.cxsa-accordion-item--active .cxsa-accordion-body {
  max-height: 500px;
}

.cxsa-accordion-body__inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cxsa-slate-600);
}

/* --- Horizontal Scroll Cards --- */
.cxsa-scroll-cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cxsa-scroll-cards::-webkit-scrollbar {
  height: 6px;
}

.cxsa-scroll-cards::-webkit-scrollbar-track {
  background: var(--cxsa-slate-100);
  border-radius: 3px;
}

.cxsa-scroll-cards::-webkit-scrollbar-thumb {
  background: var(--cxsa-orange-300);
  border-radius: 3px;
}

.cxsa-scroll-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

/* --- Number List --- */
.cxsa-number-list {
  counter-reset: cxsa-counter;
}

.cxsa-number-list__item {
  counter-increment: cxsa-counter;
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cxsa-slate-100);
}

.cxsa-number-list__item:last-child {
  border-bottom: none;
}

.cxsa-number-list__item::before {
  content: counter(cxsa-counter, decimal-leading-zero);
  font-family: var(--cxsa-font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--cxsa-orange-100);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
}

.cxsa-number-list__item h4 {
  font-family: var(--cxsa-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--cxsa-ink);
  margin-bottom: 6px;
}

.cxsa-number-list__item p {
  font-size: 15px;
  color: var(--cxsa-slate-600);
  line-height: 1.6;
}

/* --- Icon Feature Row --- */
.cxsa-icon-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cxsa-icon-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cxsa-icon-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--cxsa-radius-sm);
  background: var(--cxsa-orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cxsa-orange);
  flex-shrink: 0;
}

.cxsa-icon-feature__text h4 {
  font-family: var(--cxsa-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--cxsa-ink);
  margin-bottom: 4px;
}

.cxsa-icon-feature__text p {
  font-size: 14px;
  color: var(--cxsa-slate-500);
  line-height: 1.5;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .cxsa-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cxsa-stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .cxsa-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cxsa-hero__inner {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --cxsa-section-py: 64px;
    --cxsa-section-py-sm: 48px;
  }

  .cxsa-grid--2,
  .cxsa-grid--3,
  .cxsa-grid--2-1,
  .cxsa-grid--1-2 {
    grid-template-columns: 1fr;
  }

  .cxsa-feature-grid {
    grid-template-columns: 1fr;
  }

  .cxsa-engage-grid {
    grid-template-columns: 1fr;
  }

  .cxsa-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cxsa-two-col--reverse {
    direction: ltr;
  }

  .cxsa-hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .cxsa-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .cxsa-hero__visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .cxsa-stats-bar {
    gap: 32px;
  }

  .cxsa-stat__number {
    font-size: 32px;
  }

  .cxsa-stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cxsa-process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cxsa-process-step::after {
    display: none;
  }

  .cxsa-process-step {
    display: flex;
    text-align: left;
    gap: 16px;
    padding: 0;
  }

  .cxsa-process-step__circle {
    margin: 0;
    flex-shrink: 0;
  }

  .cxsa-icon-features {
    grid-template-columns: 1fr;
  }

  .cxsa-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cxsa-btn-group {
    justify-content: center;
  }

  .cxsa-tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .cxsa-container {
    padding: 0 16px;
  }

  .cxsa-hero {
    padding: 48px 0;
  }

  .cxsa-hero h1 {
    font-size: 28px;
  }

  .cxsa-card {
    padding: 24px;
  }

  .cxsa-stat-cards {
    grid-template-columns: 1fr;
  }

  .cxsa-industry-grid {
    grid-template-columns: 1fr;
  }

  .cxsa-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cxsa-btn {
    width: 100%;
    justify-content: center;
  }

  .cxsa-btn-group {
    flex-direction: column;
  }
}

/* --- Utility Classes --- */
.cxsa-text-center { text-align: center; }
.cxsa-text-left { text-align: left; }
.cxsa-text-right { text-align: right; }
.cxsa-mb-0 { margin-bottom: 0; }
.cxsa-mb-1 { margin-bottom: 8px; }
.cxsa-mb-2 { margin-bottom: 16px; }
.cxsa-mb-3 { margin-bottom: 24px; }
.cxsa-mb-4 { margin-bottom: 32px; }
.cxsa-mt-3 { margin-top: 24px; }
.cxsa-mt-4 { margin-top: 32px; }
.cxsa-mx-auto { margin-left: auto; margin-right: auto; }
.cxsa-fw-600 { font-weight: 600; }
.cxsa-fw-700 { font-weight: 700; }
.cxsa-fw-800 { font-weight: 800; }
.cxsa-color-navy { color: var(--cxsa-navy); }
.cxsa-color-orange { color: var(--cxsa-orange); }
.cxsa-color-white { color: var(--cxsa-white); }
.cxsa-color-slate { color: var(--cxsa-slate-600); }
