.safety-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #102a31;
}

.safety-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.safety-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 42, 49, 0.96), rgba(16, 42, 49, 0.7) 48%, rgba(16, 42, 49, 0.22)),
    repeating-linear-gradient(135deg, rgba(255, 209, 102, 0.16) 0 2px, transparent 2px 18px);
}

.safety-hero .container {
  position: relative;
  z-index: 1;
}

.safety-hero__content {
  max-width: 780px;
  padding: 120px 0 90px;
}

.safety-hero__eyebrow,
.safety-section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  color: #14313a;
  background: #ffd166;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.safety-hero h1 {
  margin: 22px 0 18px;
  color: #fff;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 800;
}

.safety-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.65;
}

.safety-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.safety-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.safety-hero__link:hover {
  color: #ffd166;
}

.safety-hero__badge {
  position: absolute;
  right: 15px;
  bottom: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  padding: 16px 18px;
  color: #12313a;
  background: rgba(255, 255, 255, 0.92);
  border-left: 5px solid #d94f35;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  font-weight: 800;
}

.safety-stats,
.safety-intro,
.safety-principles,
.safety-risk,
.safety-docs,
.safety-cta {
  padding: 92px 0;
}

.safety-stats {
  padding-top: 0;
  background: #f4f8f7;
}

.safety-stats__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  transform: translateY(-46px);
  background: #dce6e3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18, 49, 58, 0.14);
}

.safety-stat {
  min-height: 180px;
  padding: 30px;
  background: #fff;
}

.safety-stat strong {
  display: block;
  color: #d94f35;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.safety-stat span {
  display: block;
  margin-top: 12px;
  color: #12313a;
  font-size: 17px;
  font-weight: 800;
}

.safety-stat p,
.safety-intro p,
.safety-principle p,
.safety-step p,
.safety-risk p,
.safety-doc p,
.safety-cta p {
  margin: 10px 0 0;
  color: #65767b;
  line-height: 1.65;
}

.safety-intro {
  padding-top: 46px;
  background: #f4f8f7;
}

.safety-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.safety-intro__copy,
.safety-intro__panel {
  padding: 42px;
  background: #fff;
  border: 1px solid #dbe6e3;
  border-radius: 6px;
}

.safety-intro__copy h2,
.safety-section-head h2,
.safety-risk__header h2,
.safety-docs h2,
.safety-cta h2 {
  margin: 18px 0 0;
  color: #12313a;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 850;
}

.safety-intro__panel {
  position: relative;
  color: #fff;
  background: #12313a;
  border-color: #12313a;
  overflow: hidden;
}

.safety-intro__panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(255, 209, 102, 0.22);
  transform: rotate(12deg);
}

.safety-intro__panel h3 {
  position: relative;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.safety-intro__panel p {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.safety-principles {
  background: #fff;
}

.safety-section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.safety-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.safety-principle {
  min-height: 270px;
  padding: 30px;
  background: #f7faf9;
  border: 1px solid #dce7e4;
  border-radius: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.safety-principle:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(18, 49, 58, 0.12);
}

.safety-principle__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #d94f35;
  border-radius: 6px;
  font-size: 24px;
}

.safety-principle h3 {
  margin-top: 24px;
  color: #12313a;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 850;
}

.safety-process {
  padding: 92px 0;
  background: #12313a;
}

.safety-section-head--light h2 {
  color: #fff;
}

.safety-process__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  overflow: hidden;
}

.safety-step {
  min-height: 300px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.safety-step span {
  display: block;
  color: #ffd166;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.safety-step h3 {
  margin-top: 58px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.safety-step p {
  color: rgba(255, 255, 255, 0.72);
}

.safety-risk {
  background: #f4f8f7;
}

.safety-risk__header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.safety-risk__table {
  display: grid;
  gap: 12px;
}

.safety-risk-row {
  display: grid;
  grid-template-columns: 120px minmax(170px, 0.8fr) minmax(180px, 0.8fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  background: #fff;
  border-left: 6px solid #7aa37b;
  border-radius: 6px;
}

.safety-risk-row--medium {
  border-left-color: #d8a22d;
}

.safety-risk-row--high,
.safety-risk-row--critical {
  border-left-color: #d94f35;
}

.safety-risk-row span {
  display: inline-flex;
  justify-content: center;
  padding: 8px 10px;
  color: #12313a;
  background: #eef4f2;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.safety-risk-row h3,
.safety-risk-row strong {
  color: #12313a;
  font-size: 18px;
  line-height: 1.3;
}

.safety-risk-row p {
  margin-top: 0;
}

.safety-docs {
  background: #fff;
}

.safety-docs__content {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 38px;
}

.safety-docs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.safety-doc {
  padding: 24px;
  background: #f7faf9;
  border: 1px solid #dce7e4;
  border-radius: 6px;
}

.safety-doc img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 4px;
}

.safety-doc span {
  color: #d94f35;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.safety-doc h3 {
  margin-top: 8px;
  color: #12313a;
  font-size: 22px;
  line-height: 1.25;
}

.safety-doc a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #12313a;
  font-weight: 900;
}

.safety-cta {
  background: #f4f8f7;
}

.safety-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  color: #fff;
  background: #12313a;
  border-radius: 6px;
}

.safety-cta h2 {
  color: #fff;
}

.safety-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.safety-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  flex: 0 0 auto;
}

.safety-cta__phone {
  color: #ffd166;
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 1199px) {
  .safety-hero h1 {
    font-size: 48px;
  }

  .safety-stats__grid,
  .safety-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-principles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-risk-row {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 767px) {
  .safety-hero {
    min-height: auto;
  }

  .safety-hero__content {
    padding: 96px 0 120px;
  }

  .safety-hero h1 {
    font-size: 38px;
  }

  .safety-hero p {
    font-size: 16px;
  }

  .safety-hero__badge {
    left: 15px;
    right: 15px;
    bottom: 18px;
    max-width: none;
  }

  .safety-stats,
  .safety-intro,
  .safety-principles,
  .safety-risk,
  .safety-docs,
  .safety-cta,
  .safety-process {
    padding: 62px 0;
  }

  .safety-stats__grid,
  .safety-intro__grid,
  .safety-principles__grid,
  .safety-process__list,
  .safety-risk__header,
  .safety-docs__content,
  .safety-docs__grid {
    grid-template-columns: 1fr;
  }

  .safety-stats__grid {
    transform: none;
    margin-top: 0;
  }

  .safety-intro {
    padding-top: 62px;
  }

  .safety-intro__copy,
  .safety-intro__panel,
  .safety-cta__inner {
    padding: 28px;
  }

  .safety-intro__copy h2,
  .safety-section-head h2,
  .safety-risk__header h2,
  .safety-docs h2,
  .safety-cta h2 {
    font-size: 30px;
  }

  .safety-risk-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .safety-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .safety-cta__actions {
    align-items: flex-start;
  }
}
