/* ============================================================
   CODEXXA PROFESSIONAL DESIGN — Common Stylesheet
   Prefix: cxpd-  (Codexxa Professional Design)
   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) ── */
  --cxpd-navy: #202060;
  --cxpd-navy-900: #15143d;
  --cxpd-navy-800: #1a1a52;
  --cxpd-navy-700: #202060;
  --cxpd-navy-600: #2d2d7a;
  --cxpd-navy-500: #3d3d99;
  --cxpd-navy-400: #6868b8;
  --cxpd-navy-300: #9e9ed4;
  --cxpd-navy-200: #cfcfe8;
  --cxpd-navy-100: #e8e8f5;
  --cxpd-navy-50: #f4f4fb;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --- Grid Layouts --- */
.cxpd-grid { display: grid; gap: var(--cxpd-gap); }
.cxpd-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cxpd-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cxpd-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cxpd-grid--2-1 { grid-template-columns: 2fr 1fr; }
.cxpd-grid--1-2 { grid-template-columns: 1fr 2fr; }
.cxpd-grid--gap-lg { gap: var(--cxpd-gap-lg); }

/* --- Hero Banner --- */
.cxpd-hero {
  position: relative;
  padding: 84px 0 100px;
  overflow: hidden;
}

.cxpd-hero--split { background: var(--cxpd-grad-light); }
.cxpd-hero--overlay { background: var(--cxpd-grad-hero-overlay), var(--cxpd-navy); color: var(--cxpd-white); }
.cxpd-hero--gradient { background: var(--cxpd-grad-brand); color: var(--cxpd-white); }
.cxpd-hero--centered { text-align: center; }

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

.cxpd-hero__content { flex: 1; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cxpd-section--navy .cxpd-stat__number { color: var(--cxpd-white); }
.cxpd-section--navy .cxpd-stat__label { color: rgba(255,255,255,0.6); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cxpd-compare-table .cxpd-check { color: var(--cxpd-success); font-weight: 700; }
.cxpd-compare-table .cxpd-cross { color: var(--cxpd-slate-300); }

.cxpd-compare-table .cxpd-highlight-col { background: var(--cxpd-orange-50); font-weight: 600; }
.cxpd-compare-table thead .cxpd-highlight-col { background: var(--cxpd-orange); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cxpd-cta-banner::before { width: 300px; height: 300px; top: -100px; right: -50px; }
.cxpd-cta-banner::after { width: 200px; height: 200px; bottom: -80px; left: -40px; }

/* --- Skill Bars --- */
.cxpd-skill-bar { margin-bottom: 20px; }

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

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

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

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

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

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

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

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

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

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

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

.cxpd-section--navy .cxpd-two-col__content h2 { color: var(--cxpd-white); }
.cxpd-section--navy .cxpd-two-col__content p { color: rgba(255,255,255,0.75); }

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

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

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

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

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

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

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

.cxpd-tab-content { display: none; }
.cxpd-tab-content--active { display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cxpd-badge--navy { background: var(--cxpd-navy-50); color: var(--cxpd-navy); }
.cxpd-badge--orange { background: var(--cxpd-orange-50); color: var(--cxpd-orange-700); }
.cxpd-badge--success { background: var(--cxpd-success-soft); color: var(--cxpd-success); }

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

.cxpd-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 --- */
@media (max-width: 1024px) {
  .cxpd-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cxpd-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .cxpd-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .cxpd-hero__inner { gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --cxpd-section-py: 64px;
    --cxpd-section-py-sm: 48px;
  }
  .cxpd-grid--2, .cxpd-grid--3, .cxpd-grid--2-1, .cxpd-grid--1-2 { grid-template-columns: 1fr; }
  .cxpd-feature-grid { grid-template-columns: 1fr; }
  .cxpd-engage-grid { grid-template-columns: 1fr; }
  .cxpd-two-col { grid-template-columns: 1fr; gap: 32px; }
  .cxpd-two-col--reverse { direction: ltr; }
  .cxpd-hero__inner { flex-direction: column; text-align: center; }
  .cxpd-hero__subtitle { margin-left: auto; margin-right: auto; }
  .cxpd-hero__visual { width: 100%; max-width: 400px; margin: 0 auto; }
  .cxpd-hero { padding: 56px 0 64px; }
  .cxpd-stats-bar { gap: 32px; }
  .cxpd-stat__number { font-size: 32px; }
  .cxpd-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .cxpd-process-steps { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cxpd-process-step::after { display: none; }
  .cxpd-process-step { display: flex; text-align: left; gap: 16px; padding: 0; }
  .cxpd-process-step__circle { margin: 0; flex-shrink: 0; }
  .cxpd-icon-features { grid-template-columns: 1fr; }
  .cxpd-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .cxpd-btn-group { justify-content: center; }
  .cxpd-tech-grid { grid-template-columns: repeat(3, 1fr); }
  .cxpd-compare-table { font-size: 14px; }
  .cxpd-compare-table th, .cxpd-compare-table td { padding: 10px 14px; }
}

@media (max-width: 480px) {
  .cxpd-container { padding: 0 16px; }
  .cxpd-hero { padding: 40px 0 48px; }
  .cxpd-hero h1 { font-size: 28px; }
  .cxpd-card { padding: 24px; }
  .cxpd-stat-cards { grid-template-columns: 1fr; }
  .cxpd-industry-grid { grid-template-columns: 1fr; }
  .cxpd-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .cxpd-btn { width: 100%; justify-content: center; }
  .cxpd-btn-group { flex-direction: column; }
  .cxpd-compare-table th, .cxpd-compare-table td { padding: 8px 10px; font-size: 13px; }
}

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