body {
  margin: 0;
  background: #f4f7f6;
  color: #162523;
  font-family: Montserrat, Arial, sans-serif;
}

main {
  overflow: hidden;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--site-header-space);
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 14, 23, .96) 0%, rgba(5, 14, 23, .76) 43%, rgba(5, 14, 23, .14) 100%),
    url('/assets/img/szbe_wide-scaled.jpg') center right / cover no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, rgba(235, 193, 121, .28), transparent 32%),
    linear-gradient(0deg, rgba(5, 14, 23, .98) 0%, transparent 38%);
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: #ebc179;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  margin: 0 0 1.25rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: .92;
}

.hero-lead {
  max-width: 660px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-actions .btn,
.cta-panel .btn {
  border-radius: 8px;
  padding: .82rem 1.2rem;
  font-weight: 800;
}

.home-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.home-highlights {
  position: relative;
  margin-top: -3rem;
  z-index: 2;
}

.highlight-item {
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(37, 91, 87, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 60px rgba(20, 36, 34, .1);
}

.highlight-number {
  display: block;
  margin-bottom: 1.25rem;
  color: rgba(37, 91, 87, .22);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: .8;
}

.highlight-item h2,
.training-item h3 {
  margin: 0 0 .75rem;
  color: #255b57;
  font-weight: 900;
}

.highlight-item p,
.training-item p,
.section-copy {
  margin: 0;
  color: #5d6a68;
  line-height: 1.7;
}

.training-section {
  background:
    linear-gradient(180deg, #f4f7f6 0%, #fff 100%);
}

.section-title {
  margin: 0 0 1.1rem;
  color: #10221f;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.03;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.training-item {
  min-height: 260px;
  padding: 1.5rem;
  border-radius: 8px;
  background: #10221f;
  color: #fff;
}

.training-item:nth-child(2) {
  background: #255b57;
}

.training-item:nth-child(3) {
  background: #ebc179;
  color: #10221f;
}

.training-item span {
  display: inline-flex;
  margin-bottom: 1.3rem;
  color: currentColor;
  font-size: 2rem;
}

.training-item h3 {
  color: currentColor;
}

.training-item p {
  color: rgba(255, 255, 255, .76);
}

.training-item:nth-child(3) p {
  color: rgba(16, 34, 31, .72);
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 91, 87, .96), rgba(16, 34, 31, .98)),
    url('/assets/img/szbe_wide-scaled.jpg') center / cover no-repeat;
  color: #fff;
}

.cta-panel h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.04;
}

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

  .training-item {
    min-height: auto;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .home-hero {
    background:
      linear-gradient(180deg, rgba(5, 14, 23, .28) 0%, rgba(5, 14, 23, .86) 56%, #07111f 100%),
      url('/assets/img/szbe_wide-scaled.jpg') 62% center / cover no-repeat;
  }

  .home-hero .row {
    align-items: end !important;
    padding-bottom: 4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }
}
