.section-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 8px;
}

/* ---------- The Problem ---------- */

.problem {
  padding: 120px 40px 0;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subheading {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--blue-light);
  margin-bottom: 32px;
}

.section-intro {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  color: #33415C;
  max-width: 920px;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  background: #F5F7FC;
  border-radius: 14px;
  padding: 28px 32px 32px;
}

.problem-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.problem-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 12px;
}

.problem-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #17265C;
}

/* ---------- What users said ---------- */

.testimonials {
  padding: 120px 40px 140px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials .section-heading {
  margin-bottom: 32px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  border: 1px solid var(--blue-light);
  border-radius: 14px;
  padding: 28px 32px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #17265C;
}

.testimonial-role {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8A96AC;
  margin-top: 2px;
}

.testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #33415C;
}

/* ---------- Ideation ---------- */

.ideation {
  padding: 120px 40px 0;
}

.ideation-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ideation-heading {
  color: #4B3FE4;
}

.ideation-subheading {
  color: #A79CF5;
}

.ideation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ideation-card {
  background: #F1EEFC;
  border-radius: 14px;
  padding: 28px 32px 32px;
}

.ideation-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #A79CF5;
  margin-bottom: 12px;
}

.ideation-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #241C5C;
  margin-bottom: 12px;
}

.ideation-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #4A4470;
}

/* ---------- Old Flow vs New Flow ---------- */

.flow {
  padding: 120px 40px 140px;
}

.flow-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.flow-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 8px;
}

.flow-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: #17265C;
  margin-bottom: 40px;
}

.flow-accordion {
  border: 1px solid #E7ECF3;
  border-radius: 16px;
  overflow: hidden;
}

.flow-item + .flow-item {
  border-top: 1px solid #E7ECF3;
}

.flow-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.flow-item.is-open .flow-item-header {
  background: #F7F8FB;
}

.flow-item-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #9AA6B8;
  width: 22px;
  flex-shrink: 0;
}

.flow-item-name {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #17265C;
}

.flow-item-chevron {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: #9AA6B8;
  transition: transform 0.3s ease;
}

.flow-item.is-open .flow-item-chevron {
  transform: rotate(90deg);
  color: var(--blue);
}

.flow-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.flow-item.is-open .flow-item-body {
  grid-template-rows: 1fr;
}

.flow-item-body-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.flow-item-col {
  padding: 22px 28px 26px;
}

.flow-item-col--old {
  background: #FDF3F2;
}

.flow-item-col--new {
  background: #F1FAF4;
}

.flow-item-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.flow-item-col--old .flow-item-tag {
  color: #B23B2E;
}

.flow-item-col--new .flow-item-tag {
  color: #1E7A46;
}

.flow-item-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.flow-item-col .stage-tag {
  margin-top: 2px;
}

.flow-item-col--old .flow-item-text {
  color: #B23B2E;
}

.flow-item-col--new .flow-item-text {
  color: #1E7A46;
}

/* ---------- Solution ---------- */

.solution {
  padding: 120px 40px 140px;
}

.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solution-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 56px;
}

.solution-item + .solution-item {
  margin-top: 100px;
}

.solution-item-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #17265C;
  margin-bottom: 24px;
}

.solution-item-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: #33415C;
  max-width: 880px;
  margin-bottom: 32px;
}

.solution-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.solution-bullets p {
  position: relative;
  padding-left: 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #1A1A1A;
}

.solution-bullets p::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.verification-panel {
  padding: 0;
}

.verification-panel--boxed {
  background: #F7F8FB;
  border-radius: 20px;
  padding: 10px;
}

.verification-panel + .verification-panel {
  margin-top: 32px;
}

.verification-panel-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #17265C;
  margin-bottom: 6px;
}

.verification-panel-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #8A96AC;
  margin-bottom: 28px;
}

.verification-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.verification-shot {
  display: block;
  width: 100%;
}

@media (max-width: 900px) {
  .problem-grid,
  .testimonials-grid,
  .ideation-grid {
    grid-template-columns: 1fr;
  }

  .flow-item-body-inner {
    grid-template-columns: 1fr;
  }

  .flow-item-header {
    padding: 18px 20px;
  }

  .solution-item-title {
    font-size: 24px;
  }

  .verification-row,
  .verification-grid {
    grid-template-columns: 1fr;
  }

  .verification-panel--boxed {
    padding: 24px;
  }
}

/* ---------- Case title variant ---------- */

.case-title--dark {
  color: #1A1A1A;
}

/* ---------- Context ---------- */

.context {
  padding: 120px 40px;
}

.context-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.context-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 28px;
}

.context-quote {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #17265C;
  max-width: 880px;
  border-left: 3px solid #17265C;
  padding-left: 24px;
  margin-bottom: 32px;
}

.context-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: #33415C;
  max-width: 880px;
  margin-bottom: 48px;
}

.context-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.context-card {
  flex: 1 1 300px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px 28px 32px;
  box-shadow: 0 12px 32px rgba(2, 42, 107, 0.1);
}

.context-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--blue);
  margin-bottom: 12px;
}

.context-card-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #33415C;
}

@media (max-width: 900px) {
  .context-quote {
    font-size: 22px;
  }
}

/* ---------- Shared section eyebrow ---------- */

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 8px;
}

/* ---------- Understanding the user ---------- */

.users {
  padding: 0 40px 120px;
}

.users-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.users-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #17265C;
  margin-bottom: 40px;
}

.users-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.user-card {
  background: #FFFFFF;
  border: 1px solid #E7ECF3;
  border-radius: 16px;
  padding: 28px 24px;
}

.user-avatar {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.user-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #17265C;
  text-align: center;
  margin-bottom: 6px;
}

.user-role {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8A96AC;
  text-align: center;
  margin-bottom: 20px;
}

.user-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #33415C;
  margin-bottom: 20px;
}

.user-callout {
  background: #FDF0EE;
  border-radius: 10px;
  padding: 16px;
}

.user-callout-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #C0392B;
  margin-bottom: 8px;
}

.user-callout-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #B23B2E;
}

/* ---------- Problem statement ---------- */

.problem-statement {
  padding: 0 40px 140px;
}

.problem-statement-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-statement-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #17265C;
  margin-bottom: 20px;
}

.problem-statement-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: #33415C;
  max-width: 920px;
  margin-bottom: 40px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-item {
  border: 1.5px solid #6C5CE7;
  border-radius: 14px;
  padding: 24px 28px;
}

.problem-item-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #6C5CE7;
  margin-bottom: 8px;
}

.problem-item-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #17265C;
  margin-bottom: 10px;
}

.problem-item-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #4A5578;
}

@media (max-width: 900px) {
  .users-grid,
  .problem-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Approach ---------- */

.approach {
  padding: 0 40px 140px;
}

.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  margin-top: 32px;
}

.approach-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #17265C;
  margin-bottom: 24px;
}

.hypothesis-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hypothesis-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #E7ECF3;
  border-radius: 14px;
  padding: 20px 24px;
}

.hypothesis-number {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hypothesis-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #17265C;
  margin-bottom: 6px;
}

.hypothesis-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #4A5578;
}

.decision-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-left: 24px;
  margin-bottom: 20px;
}

.decision-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.decisions-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.decision-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #ECEAF5;
  border-radius: 16px;
  overflow: hidden;
}

.decision-cell {
  padding: 20px 24px;
}

.decision-cell--q {
  background: #FDF4F3;
}

.decision-cell--d {
  background: #F3F5FD;
}

.decision-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.decision-cell--q .decision-label {
  color: #C0392B;
}

.decision-cell--d .decision-label {
  color: var(--blue);
}

.decision-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #33415C;
}

@media (max-width: 900px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .decision-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Before / After ---------- */

.before-after {
  padding: 0 40px 140px;
}

.before-after-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.before-after-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #17265C;
  margin-bottom: 20px;
}

.before-after-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: #33415C;
  max-width: 960px;
  margin-bottom: 40px;
}

.stage-table {
  border: 1px solid #E7ECF3;
  border-radius: 16px;
  overflow: hidden;
}

.stage-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
}

.stage-row + .stage-row {
  border-top: 1px solid #E7ECF3;
}

.stage-cell {
  padding: 24px 28px;
}

.stage-cell--label {
  background: #F7F8FB;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #17265C;
}

.stage-cell--old {
  background: #FDF3F2;
}

.stage-cell--new {
  background: #F1FAF4;
}

.stage-row--head .stage-cell {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
}

.stage-row--head .stage-cell--label {
  color: #9AA6B8;
}

.stage-row--head .stage-cell--old {
  color: #B23B2E;
}

.stage-row--head .stage-cell--new {
  color: #1E7A46;
}

.stage-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #33415C;
  margin-bottom: 14px;
}

.stage-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
}

.stage-tag--old {
  background: #FBDCD8;
  color: #B23B2E;
}

.stage-tag--new {
  background: #D6F0DE;
  color: #1E7A46;
}

@media (max-width: 900px) {
  .stage-row {
    grid-template-columns: 1fr;
  }

  .stage-cell--label {
    font-weight: 700;
  }
}

/* ---------- Solution (by component) ---------- */

.solution {
  position: relative;
  padding: 120px 40px 140px;
  overflow: hidden;
}

.solution-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}

.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solution-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #17265C;
  margin-bottom: 20px;
}

.solution-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: #33415C;
  max-width: 920px;
  margin-bottom: 40px;
}

.component-card {
  overflow: hidden;
}

.component-card + .component-card {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(2, 42, 107, 0.12);
}

.component-text {
  padding: 32px 0 36px;
}

.component-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.component-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid #1A1A1A;
  border-radius: 999px;
  padding: 4px 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1A1A1A;
}

.component-tag--staff {
  border-color: var(--blue);
  color: var(--blue);
}

.component-tag--contractor {
  border-color: #C0392B;
  color: #C0392B;
}

.component-tag--material {
  border-color: #1E7A46;
  color: #1E7A46;
}

.component-tag--audit {
  border-color: transparent;
  background: #E7E3FB;
  color: #4B3FE4;
}

.component-tag--notifications {
  border-color: transparent;
  background: #FCEEDD;
  color: #C77B2E;
}

.component-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1A1A1A;
}

.component-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #33415C;
  margin-bottom: 24px;
}

.component-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.component-bullets p {
  position: relative;
  padding-left: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #1A1A1A;
}

.component-bullets p::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.component-mockup-wrap {
  padding: 24px 0 0;
}

.component-shot {
  display: block;
  width: 100%;
}

.component-mockup-row {
  display: flex;
  gap: 10px;
  padding: 24px 0 0;
}

.component-shot-sm {
  flex-shrink: 0;
  width: 252px;
}

.component-mockup-row .component-shot-sm {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

.component-mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0 0;
}

.component-mockup-grid .component-shot-sm {
  width: 100%;
}

.component-mockup-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1.5px dashed #B8C2D9;
  border-radius: 12px;
  padding: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8A96AC;
  text-align: center;
}

@media (max-width: 900px) {
  .component-text {
    padding: 28px 0;
  }

  .component-mockup-wrap {
    padding: 20px 0 0;
  }

  .component-mockup-grid {
    grid-template-columns: 1fr;
  }

  .component-mockup-row {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .component-mockup-row .component-shot-sm {
    flex: 0 0 auto;
    width: 200px;
  }
}

/* ---------- Impact ---------- */

.impact {
  padding: 0 40px 140px;
}

.impact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin: 40px 0 56px;
}

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  padding: 20px 22px;
}

.impact-number {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  color: #17265C;
}

.impact-next-eyebrow {
  margin-bottom: 8px;
}

.impact-next-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #33415C;
}

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Impact & retrospective (stat + note variant) ---------- */

.impact-subheading {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 32px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.impact-stat {
  border: 1px solid #E7ECF3;
  border-radius: 14px;
  padding: 24px 26px;
}

.impact-stat-figure {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 10px;
}

.impact-stat-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.45;
  color: #33415C;
}

.impact-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.impact-note {
  border: 1px solid;
  border-radius: 14px;
  padding: 22px 24px;
}

.impact-note-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.impact-note-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.impact-note--worked {
  background: #F1FAF4;
  border-color: #CDEBD8;
}

.impact-note--worked .impact-note-label,
.impact-note--worked .impact-note-text {
  color: #1E7A46;
}

.impact-note--different {
  background: #FDF3F2;
  border-color: #F6D9D5;
}

.impact-note--different .impact-note-label,
.impact-note--different .impact-note-text {
  color: #B23B2E;
}

.impact-note--next {
  background: #F1EEFC;
  border-color: #DCD5F7;
}

.impact-note--next .impact-note-label,
.impact-note--next .impact-note-text {
  color: #4B3FE4;
}

@media (max-width: 900px) {
  .impact-stats,
  .impact-notes {
    grid-template-columns: 1fr;
  }
}

/* ---------- Shot carousel (one screen at a time) ---------- */

.shot-carousel {
  position: relative;
}

.shot-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.shot-carousel-track::-webkit-scrollbar {
  display: none;
}

.shot-carousel-item {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  display: block;
}

.shot-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #FFFFFF;
  color: #17265C;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 30, 60, 0.18);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shot-carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
}

.shot-carousel-btn[disabled] {
  opacity: 0;
  pointer-events: none;
}

.shot-carousel-btn--prev {
  left: 16px;
}

.shot-carousel-btn--next {
  right: 16px;
}

.shot-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.shot-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #D5DCE8;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.shot-carousel-dots button.is-active {
  background: var(--blue);
  transform: scale(1.2);
}

/* ---------- Approval panel (point 3) ---------- */

.approval-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  background: linear-gradient(160deg, #E4EAFC 0%, #C9D6F5 100%);
  border-radius: 20px;
  padding: 64px 40px;
}

.approval-shot {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .approval-panel {
    padding: 40px 24px;
  }

  .approval-shot {
    width: 260px;
  }
}

/* ---------- Journey stepper (before/after, sequential) ---------- */

.journey-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.journey-track-line {
  position: absolute;
  top: 14px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: #E7ECF3;
}

.journey-track-fill {
  position: absolute;
  top: 14px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.journey-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  flex: 1;
}

.journey-node-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #D5DCE8;
  color: #9AA6B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.journey-node-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #9AA6B8;
  text-align: center;
  transition: color 0.25s ease;
  max-width: 100px;
}

.journey-node.is-active .journey-node-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #FFFFFF;
  transform: scale(1.15);
}

.journey-node.is-active .journey-node-label {
  color: var(--blue);
}

.journey-node-check {
  display: none;
  width: 12px;
  height: 12px;
}

.journey-node.is-complete .journey-node-dot {
  background: #1E7A46;
  border-color: #1E7A46;
}

.journey-node.is-complete .journey-node-num {
  display: none;
}

.journey-node.is-complete .journey-node-check {
  display: block;
}

.journey-node.is-complete .journey-node-label {
  color: #1E7A46;
}

.journey-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #E7ECF3;
  border-radius: 16px;
  overflow: hidden;
}

.journey-panel.is-active {
  display: grid;
}

@media (max-width: 900px) {
  .journey-track {
    flex-wrap: wrap;
    row-gap: 24px;
  }

  .journey-track-line,
  .journey-track-fill {
    display: none;
  }

  .journey-node {
    flex: 0 0 30%;
  }

  .journey-panel {
    grid-template-columns: 1fr;
  }
}
