.cert-page {
  --cert-orange: #ff3d0a;
  --cert-blue: #2563eb;
  --cert-ink: #071227;
  --cert-muted: #39445a;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 92, 34, .055), transparent 34%),
    #fff;
  color: var(--cert-ink);
  padding-bottom: 42px;
}

.cert-container {
  width: min(1210px, calc(100% - 64px));
  margin: 0 auto;
}

.cert-page img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}

.cert-hero {
  text-align: center;
  padding: 36px 0 18px;
}

.cert-eyebrow {
  margin: 0 auto 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--cert-orange);
  font-size: 24px;
  line-height: 1;
}

.cert-eyebrow span {
  width: 42px;
  height: 2px;
  background: var(--cert-orange);
  display: block;
}

.cert-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 900;
}

.cert-hero h1 span {
  color: var(--cert-orange);
}

.cert-hero > p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: #313b50;
  font-size: 22px;
  line-height: 1.38;
}

.cert-panel {
  position: relative;
  margin-top: 28px;
  padding: 18px 14px 14px;
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .055);
}

.section-badge {
  position: absolute;
  left: -8px;
  top: 4px;
  min-width: 130px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 18px 18px 0;
  background: var(--cert-orange);
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 12px 22px rgba(255, 61, 10, .18);
  z-index: 1;
}

.cert-blue .section-badge {
  background: var(--cert-blue);
  box-shadow: 0 12px 22px rgba(37, 99, 235, .18);
}

.cert-section-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  margin: 0 18px 24px 150px;
  min-height: 64px;
}

.cert-section-head img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.cert-section-head h2 {
  margin: 0 0 6px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

.cert-section-head p {
  margin: 0;
  color: #26344a;
  font-size: 16px;
  line-height: 1.45;
}

.cert-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.cert-card {
  min-height: 374px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 18px 24px;
  border: 1px solid #e4e7ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .05);
}

.cert-page .cert-card::after {
  content: none;
  display: none;
}

.cert-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.cert-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.13;
  letter-spacing: 0;
  font-weight: 900;
}

.cert-card strong {
  display: block;
  min-height: 52px;
  color: #142036;
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 500;
}

.cert-card span {
  width: 30px;
  height: 2px;
  margin: 18px auto;
  background: var(--cert-orange);
}

.cert-card p {
  margin: 0;
  color: #172136;
  font-size: 15px;
  line-height: 1.55;
}

.cert-blue .cert-card span {
  background: var(--cert-blue);
}

.industry-grid .cert-card {
  min-height: 282px;
  justify-content: flex-start;
}

.cert-page .industry-card {
  color: var(--cert-ink);
  background: #fff;
  background-image: none;
  overflow: visible;
  position: relative;
  display: flex;
  align-items: center;
  padding: 22px 18px 24px;
}

.cert-page .industry-card::before {
  display: none;
}

.industry-card img {
  width: 92px;
  height: 86px;
  margin-bottom: 16px;
}

.industry-card h3 {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cert-ink);
  text-shadow: none;
}

.industry-card p {
  font-size: 15.5px;
  line-height: 1.48;
}

.cert-feature-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 26px 30px;
  border: 1px solid #e5e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
}

.cert-feature-strip article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 98px;
  padding: 0 22px;
  border-right: 1px solid #dfe3eb;
}

.cert-feature-strip article:first-child {
  padding-left: 0;
}

.cert-feature-strip article:last-child {
  border-right: 0;
  padding-right: 0;
}

.cert-feature-strip img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.cert-feature-strip h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 900;
}

.cert-feature-strip p {
  margin: 0;
  color: #26344a;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .cert-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cert-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .cert-feature-strip article {
    border: 1px solid #edf0f5;
    border-radius: 12px;
    padding: 18px;
  }

  .cert-feature-strip article:first-child,
  .cert-feature-strip article:last-child {
    padding: 18px;
  }
}

@media (max-width: 760px) {
  .cert-container {
    width: min(100% - 28px, 560px);
  }

  .cert-hero {
    padding-top: 28px;
  }

  .cert-eyebrow {
    gap: 10px;
    font-size: 15px;
    line-height: 1.35;
  }

  .cert-eyebrow span {
    width: 24px;
  }

  .cert-hero h1 {
    font-size: 42px;
  }

  .cert-hero > p:last-child {
    font-size: 17px;
  }

  .cert-panel {
    padding: 74px 12px 12px;
  }

  .section-badge {
    left: 12px;
    top: 12px;
    border-radius: 14px;
    min-width: 112px;
    height: 42px;
    font-size: 14px;
  }

  .cert-section-head {
    margin: 0 0 18px;
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .cert-section-head img {
    width: 46px;
    height: 46px;
  }

  .cert-section-head h2 {
    font-size: 28px;
  }

  .cert-card-grid,
  .cert-feature-strip {
    grid-template-columns: 1fr;
  }

  .cert-card {
    min-height: auto;
  }

  .industry-card h3 {
    min-height: 0;
  }

  .cert-feature-strip article {
    grid-template-columns: 58px 1fr;
  }
}
