/* ============================================================
   CODEXXA STAFF AUGMENTATION V2 — Common Stylesheet
   Prefix: cxse-  (Codexxa Staff Extension)
   Brand: Codexxa (codexxa.in) — STRICT COLOR COMPLIANCE
   Colors: Navy #202060 + Orange #F08030 ONLY
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* ── PRIMARY BRAND COLORS (from codexxa.in) ── */
  --cxse-navy: #202060;
  --cxse-navy-900: #15143d;
  --cxse-navy-800: #1a1a52;
  --cxse-navy-700: #202060;
  --cxse-navy-600: #2d2d7a;
  --cxse-navy-500: #3d3d99;
  --cxse-navy-400: #6868b8;
  --cxse-navy-300: #9e9ed4;
  --cxse-navy-200: #cfcfe8;
  --cxse-navy-100: #e8e8f5;
  --cxse-navy-50: #f4f4fb;

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

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

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

  /* Gradients — ONLY navy+orange brand gradient */
  --cxse-grad-brand: linear-gradient(135deg, #202060 0%, #F08030 100%);
  --cxse-grad-navy: linear-gradient(90deg, #202060 0%, #2d2d7a 100%);
  --cxse-grad-light: linear-gradient(180deg, #f4f4fb 0%, #ffffff 100%);
  --cxse-grad-hero-overlay: linear-gradient(135deg, rgba(32,32,96,0.92) 0%, rgba(32,32,96,0.7) 100%);

  /* Typography — matching codexxa.in exactly */
  --cxse-font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --cxse-font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --cxse-font-mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  /* Spacing — matching codexxa.in section padding */
  --cxse-section-py: 96px;
  --cxse-section-py-sm: 64px;
  --cxse-container-max: 1200px;
  --cxse-gap: 24px;
  --cxse-gap-lg: 40px;

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

  /* Shadows — using brand navy for shadows */
  --cxse-shadow-sm: 0 1px 3px rgba(32,32,96,0.08);
  --cxse-shadow-md: 0 4px 16px rgba(32,32,96,0.1);
  --cxse-shadow-lg: 0 8px 32px rgba(32,32,96,0.12);
  --cxse-shadow-xl: 0 16px 48px rgba(32,32,96,0.16);
  --cxse-shadow-orange: 0 8px 24px rgba(240,128,48,0.3);

  /* Transitions */
  --cxse-transition-fast: 0.2s ease;
  --cxse-transition-base: 0.3s ease;
  --cxse-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 to wrapper) --- */
.cxse-page-wrapper {
  font-family: var(--cxse-font-body);
  color: var(--cxse-slate-700);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

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

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

/* --- Container — matches codexxa.in max-width --- */
.cxse-container {
  max-width: var(--cxse-container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* --- Section — matches codexxa.in section padding: 96px 0 --- */
.cxse-section {
  padding: var(--cxse-section-py) 0;
}

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

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

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

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

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

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

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

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

.cxse-section--cream {
  background: #FFFBEC;
}

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

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

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

/* Section Head — matches codexxa.in: centered, max-width 760px */
.cxse-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

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

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

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

.cxse-grad-text {
  background: var(--cxse-grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --- Cards — strict navy/orange brand colors only --- */
.cxse-card {
  background: var(--cxse-white);
  border-radius: var(--cxse-radius-lg);
  padding: 32px;
  transition: all var(--cxse-transition-base);
  border: 1px solid var(--cxse-slate-100);
}

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

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

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

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

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

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

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

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

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

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

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

.cxse-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cxse-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cxse-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cxse-grid--2-1 { grid-template-columns: 2fr 1fr; }
.cxse-grid--1-2 { grid-template-columns: 1fr 2fr; }
.cxse-grid--gap-lg { gap: var(--cxse-gap-lg); }

/* --- Hero Banner — matching codexxa.in hero pattern --- */
.cxse-hero {
  position: relative;
  padding: 84px 0 100px;
  overflow: hidden;
}

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

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

.cxse-hero--gradient {
  background: var(--cxse-grad-brand);
  color: var(--cxse-white);
}

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

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

.cxse-hero__content {
  flex: 1;
}

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

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

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

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

/* Hero H1 — matching codexxa.in: font-weight 800, size 45px, line-height 1.4 */
.cxse-hero h1 {
  font-family: var(--cxse-font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.15;
  color: var(--cxse-ink);
  margin-bottom: 20px;
}

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

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

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

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

/* Hero with image background — matching codexxa.in hero-bg pattern */
.cxse-hero--bg-image {
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* --- Stats Bar — matching codexxa.in stat styles --- */
.cxse-stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Highlight column */
.cxse-compare-table .cxse-highlight-col {
  background: var(--cxse-orange-50);
  font-weight: 600;
}

.cxse-compare-table thead .cxse-highlight-col {
  background: var(--cxse-orange);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --- CTA Banner — matching codexxa.in CTA pattern --- */
.cxse-cta-banner {
  background: var(--cxse-grad-brand);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.cxse-cta-banner::before,
.cxse-cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--cxse-white);
  opacity: 0.08;
}

.cxse-cta-banner::before {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.cxse-cta-banner::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --- CSS Illustration (placeholder for sections without images) --- */
.cxse-illustration {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: var(--cxse-radius-xl);
  background: var(--cxse-grad-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cxse-white);
  font-size: 64px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

  .cxse-hero { padding: 56px 0 64px; }

  .cxse-stats-bar { gap: 32px; }
  .cxse-stat__number { font-size: 32px; }

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

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

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

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

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

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

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

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

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

  .cxse-compare-table { font-size: 14px; }
  .cxse-compare-table th, .cxse-compare-table td { padding: 10px 14px; }
}

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

  .cxse-hero { padding: 40px 0 48px; }

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

  .cxse-card { padding: 24px; }

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

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

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

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

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

  .cxse-compare-table th, .cxse-compare-table td { padding: 8px 10px; font-size: 13px; }
}

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