.csp-page {
  --csp-navy: #061b49;
  --csp-navy-2: #0d2c67;
  --csp-blue: #174f9b;
  --csp-orange: #f59b19;
  --csp-green: #4f7f24;
  --csp-red: #d9352c;
  --csp-ink: #13213b;
  --csp-muted: #5c667a;
  --csp-line: #d9dfeb;
  --csp-soft: #f4f7fb;
  --csp-white: #ffffff;
  --csp-shadow: 0 18px 46px rgba(8, 28, 72, 0.16);
  --csp-radius: 8px;

  color: var(--csp-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: var(--csp-white);
  scroll-behavior: smooth;
}

.csp-page *,
.csp-page *::before,
.csp-page *::after { box-sizing: border-box; }
.csp-page img,
.csp-page svg { display: block; }
.csp-page a { color: inherit; }
.csp-page .csp-container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.csp-page .hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--csp-white);
  background: var(--csp-navy);
}
.csp-page .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.csp-page .hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 73, 0.92) 0%, rgba(6, 27, 73, 0.74) 36%, rgba(6, 27, 73, 0.18) 68%, rgba(6, 27, 73, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 27, 73, 0.32), rgba(6, 27, 73, 0.04));
}
.csp-page .hero-content {
  position: relative;
  z-index: 1;
  max-width: 710px;
  padding: 50px 0;
}
.csp-page .hero-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.csp-page .hero-badge {
  width: 82px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.34));
}
.csp-page .eyebrow {
  margin: 0 0 12px;
  color: var(--csp-orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.csp-page .hero-identity .eyebrow { margin: 0; }
.csp-page .hero h1,
.csp-page .section h2,
.csp-page .cta-section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}
.csp-page .hero h1 { max-width: 650px; font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 900; }
.csp-page .hero-lede { margin: 22px 0 0; color: var(--csp-white); font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 800; }
.csp-page .hero-copy { max-width: 590px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.9); font-size: 1.07rem; }
.csp-page .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.csp-page .csp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.csp-page .csp-button:hover,
.csp-page .csp-button:focus-visible { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); }
.csp-page .csp-button svg { width: 19px; height: 19px; fill: currentColor; }
.csp-page .csp-button.primary { color: var(--csp-navy); background: var(--csp-orange); }
.csp-page .csp-button.secondary { color: var(--csp-white); border-color: rgba(255, 255, 255, 0.72); background: rgba(255, 255, 255, 0.12); }
.csp-page .csp-button.light.primary { color: var(--csp-navy); background: var(--csp-white); }

.csp-page .trust-band { color: var(--csp-white); background: var(--csp-navy); border-top: 4px solid var(--csp-orange); }
.csp-page .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.csp-page .trust-grid div { min-height: 86px; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 18px 20px; border-left: 1px solid rgba(255, 255, 255, 0.2); }
.csp-page .trust-grid div:first-child { border-left: 0; }
.csp-page .trust-grid strong { color: var(--csp-white); font-size: 0.92rem; line-height: 1.1; text-transform: uppercase; }
.csp-page .trust-grid span { color: rgba(255, 255, 255, 0.76); font-size: 0.86rem; }

.csp-page .section { padding: 86px 0; }
.csp-page .section-light { background: var(--csp-soft); }
.csp-page .section-white { background: var(--csp-white); }
.csp-page .split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr); gap: 54px; align-items: center; }
.csp-page .section-copy h2,
.csp-page .section-heading h2,
.csp-page .comparison-header h2,
.csp-page .cta-section h2 { color: var(--csp-navy); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 900; }
.csp-page .section-copy p,
.csp-page .section-heading p,
.csp-page .cta-section p { color: var(--csp-muted); font-size: 1rem; }
.csp-page .promise-list { display: grid; gap: 14px; }
.csp-page .promise-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--csp-line);
  border-radius: var(--csp-radius);
  background: var(--csp-white);
  box-shadow: 0 10px 26px rgba(8, 28, 72, 0.06);
}
.csp-page .csp-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--csp-white);
  background: var(--csp-navy);
  border-radius: 50%;
  font-weight: 900;
}
.csp-page .csp-icon.amber { background: var(--csp-orange); }
.csp-page .promise-item h3,
.csp-page .process-card h3,
.csp-page .framework-step h3,
.csp-page .comparison-card h3,
.csp-page .difference-item h3 { margin: 0; color: var(--csp-navy); line-height: 1.18; }
.csp-page .promise-item p,
.csp-page .process-card p,
.csp-page .framework-step p,
.csp-page .difference-item p { margin: 6px 0 0; color: var(--csp-muted); }
.csp-page .section-heading { margin-bottom: 42px; }
.csp-page .section-heading.narrow { max-width: 720px; }

.csp-page .how-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.96)),
    var(--csp-white);
}
.csp-page .how-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 38px;
  align-items: end;
  margin-bottom: 38px;
}
.csp-page .trust-note {
  padding: 22px;
  color: var(--csp-white);
  border-radius: var(--csp-radius);
  background: linear-gradient(135deg, var(--csp-navy), var(--csp-navy-2));
  box-shadow: var(--csp-shadow);
}
.csp-page .trust-note img {
  width: 154px;
  height: auto;
  margin-bottom: 12px;
}
.csp-page .trust-note strong {
  display: block;
  color: var(--csp-white);
  font-size: 1.25rem;
  line-height: 1.1;
}
.csp-page .trust-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}
.csp-page .process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.csp-page .process-card {
  position: relative;
  min-height: 210px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--csp-line);
  border-radius: var(--csp-radius);
  background: var(--csp-white);
  box-shadow: 0 12px 30px rgba(8, 28, 72, 0.07);
}
.csp-page .process-card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--csp-orange), var(--csp-blue));
}
.csp-page .process-card-wide { grid-column: span 2; }
.csp-page .process-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--csp-white);
  background: var(--csp-navy);
  border-radius: 50%;
}
.csp-page .process-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.csp-page .process-number {
  position: absolute;
  right: 18px;
  top: 18px;
  color: rgba(13, 44, 103, 0.14);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.csp-page .process-card h3 {
  margin-top: 18px;
  padding-right: 24px;
  font-size: 1rem;
}

.csp-page .framework-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.csp-page .framework-step {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--csp-line);
  border-radius: var(--csp-radius);
  background: var(--csp-white);
  box-shadow: 0 12px 30px rgba(8, 28, 72, 0.08);
}
.csp-page .framework-step.educate { border-top: 5px solid var(--csp-navy); }
.csp-page .framework-step.encourage { border-top: 5px solid var(--csp-orange); }
.csp-page .framework-step.enforce { border-top: 5px solid var(--csp-blue); }
.csp-page .framework-step.improve { border-top: 5px solid var(--csp-green); }
.csp-page .step-number { color: rgba(13, 44, 103, 0.18); font-size: 3rem; font-weight: 900; line-height: 1; }

.csp-page .comparison-section { color: var(--csp-white); background: linear-gradient(135deg, var(--csp-navy) 0%, var(--csp-navy-2) 70%, #173f83 100%); }
.csp-page .comparison-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.csp-page .comparison-header h2 { color: var(--csp-white); }
.csp-page .view-toggle { display: flex; flex: 0 0 auto; padding: 4px; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 8px; background: rgba(255, 255, 255, 0.1); }
.csp-page .toggle-button { min-height: 38px; padding: 8px 13px; color: rgba(255, 255, 255, 0.86); font: inherit; font-size: 0.9rem; font-weight: 800; border: 0; border-radius: 6px; background: transparent; cursor: pointer; }
.csp-page .toggle-button.is-active { color: var(--csp-navy); background: var(--csp-white); }
.csp-page .comparison-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.csp-page .comparison-grid::before { position: absolute; left: 50%; top: 50%; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; content: "VS"; color: var(--csp-white); font-size: 0.9rem; font-weight: 900; background: var(--csp-navy); border: 4px solid var(--csp-white); border-radius: 50%; transform: translate(-50%, -50%); }
.csp-page .comparison-grid.is-angeltrax-only { grid-template-columns: minmax(0, 1fr); max-width: 640px; }
.csp-page .comparison-grid.is-angeltrax-only::before,
.csp-page .comparison-grid.is-angeltrax-only [data-column="problem"] { display: none; }
.csp-page .comparison-card { padding: 30px; border-radius: var(--csp-radius); background: var(--csp-white); box-shadow: var(--csp-shadow); }
.csp-page .comparison-card.problem h3 { color: var(--csp-red); }
.csp-page .comparison-card.angeltrax h3 { color: var(--csp-green); }
.csp-page .comparison-card ul { display: grid; gap: 14px; margin: 22px 0 0; padding: 0; list-style: none; }
.csp-page .comparison-card li { display: flex; align-items: flex-start; gap: 12px; color: var(--csp-ink); font-weight: 700; }
.csp-page .status-icon { position: relative; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; }
.csp-page .status-icon.no { background: var(--csp-red); }
.csp-page .status-icon.no::before,
.csp-page .status-icon.no::after { position: absolute; left: 6px; top: 10px; width: 10px; height: 2px; content: ""; background: var(--csp-white); }
.csp-page .status-icon.no::before { transform: rotate(45deg); }
.csp-page .status-icon.no::after { transform: rotate(-45deg); }
.csp-page .status-icon.yes { background: var(--csp-green); }
.csp-page .status-icon.yes::after { position: absolute; left: 6px; top: 5px; width: 8px; height: 12px; content: ""; border: solid var(--csp-white); border-width: 0 2px 2px 0; transform: rotate(42deg); }

.csp-page .difference-lead { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr); gap: 36px; align-items: center; margin-bottom: 42px; }
.csp-page .difference-lead .section-heading { margin-bottom: 0; }
.csp-page .partnership-visual { min-height: 220px; margin: 0; overflow: hidden; border: 1px solid var(--csp-line); border-radius: var(--csp-radius); box-shadow: var(--csp-shadow); }
.csp-page .partnership-visual img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; object-position: center center; }
.csp-page .difference-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.csp-page .difference-item { min-height: 290px; padding: 22px; border: 1px solid var(--csp-line); border-radius: var(--csp-radius); background: var(--csp-white); box-shadow: 0 10px 26px rgba(8, 28, 72, 0.06); }
.csp-page .difference-item .csp-icon { margin-bottom: 20px; }

.csp-page .cta-section {
  position: relative;
  overflow: hidden;
  padding: 45px 0;
  color: var(--csp-white);
  background: linear-gradient(135deg, rgba(6, 27, 73, 0.96), rgba(13, 44, 103, 0.94)), var(--csp-navy);
}
.csp-page .cta-section::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(50vw, 760px);
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 27, 73, 0.74), rgba(6, 27, 73, 0.2) 48%, rgba(6, 27, 73, 0.5)),
    url("/images/industries/csp/angeltrax-stop-arm-safety-consultation-background.png") right center / auto 100% no-repeat;
  opacity: 0.78;
}
.csp-page .cta-inner { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr); gap: 34px; align-items: center; }
.csp-page .cta-section h2,
.csp-page .cta-section p { color: var(--csp-white); }
.csp-page .cta-section p { max-width: 680px; color: rgba(255, 255, 255, 0.82); }
.csp-page .cta-visual-panel {
  position: relative;
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.csp-page .cta-visual-image { display: none; }
.csp-page .cta-button {
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

@media (max-width: 980px) {
  .csp-page .split,
  .csp-page .how-lead,
  .csp-page .cta-inner,
  .csp-page .difference-lead { grid-template-columns: 1fr; }
  .csp-page .process-grid,
  .csp-page .framework-grid,
  .csp-page .difference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .csp-page .comparison-header { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .csp-page .csp-container { width: min(100% - 28px, 1120px); }
  .csp-page .hero { min-height: 650px; }
  .csp-page .hero-image { object-position: 58% center; }
  .csp-page .hero-scrim { background: linear-gradient(90deg, rgba(6, 27, 73, 0.94) 0%, rgba(6, 27, 73, 0.82) 58%, rgba(6, 27, 73, 0.5) 100%); }
  /* .csp-page .hero-content { padding: 144px 0 76px; } */
  .csp-page .hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .csp-page .hero-identity { align-items: flex-start; flex-direction: column; gap: 12px; }
  .csp-page .hero-badge { width: 72px; }
  .csp-page .csp-button { width: 100%; }
  .csp-page .trust-grid,
  .csp-page .process-grid,
  .csp-page .framework-grid,
  .csp-page .comparison-grid,
  .csp-page .difference-grid { grid-template-columns: 1fr; }
  .csp-page .process-card-wide { grid-column: auto; }
  .csp-page .trust-grid div { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .csp-page .trust-grid div:first-child { border-top: 0; }
  .csp-page .section { padding: 62px 0; }
  .csp-page .promise-item { grid-template-columns: 48px 1fr; padding: 18px; }
  .csp-page .promise-item .csp-icon { width: 44px; height: 44px; }
  .csp-page .comparison-grid { display: flex; flex-direction: column; }
  .csp-page .comparison-grid::before { position: static; margin: -2px auto; transform: none; }
  .csp-page .comparison-card { padding: 24px; }
  .csp-page .view-toggle { width: 100%; }
  .csp-page .toggle-button { flex: 1 1 0; }
  .csp-page .difference-item,
  .csp-page .framework-step { min-height: auto; }
  .csp-page .cta-inner { gap: 24px; }
  .csp-page .cta-visual-panel { min-height: 128px; }
  .csp-page .cta-section::before {
    width: 100%;
    opacity: 0.3;
  }
}
