.main { margin: 54px auto 0 auto; }
@media only screen and (max-width: 1200px) { .main { margin: 49px auto 0 auto; } }
@media only screen and (max-width: 600px) { .main { margin: 46px auto 0 auto; } .main__hero { min-height: 160px; } }


.szWrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(128, 0, 0, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(128, 0, 0, 0.05) 0%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(128, 0, 0, 0.02) 0%, transparent 100%),
    linear-gradient(180deg, #f9f6f6 0%, #ffffff 40%, #f7f3f4 70%, #ffffff 100%);
}
.szWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../images/catalog/dedicated_trainings.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 250px, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 250px, black 85%, transparent 100%);
}

.sz {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1050px) {
  .sz {
    padding: 30px 15px 50px 15px;
  }
}

/* ====== HERO ====== */
.sz__hero {
  text-align: center;
  margin: 0 0 60px 0;
}
.sz__heroIcon {
  font-size: 48px;
  color: #800000;
  margin: 0 0 20px 0;
  opacity: 0.8;
}
.sz__h1 {
  color: #800000;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.2em;
}
@media only screen and (max-width: 1050px) {
  .sz__h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 600px) {
  .sz__h1 {
    font-size: 24px;
  }
}
.sz__heroSubtitle {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
  max-width: 700px;
  margin: 0 auto 30px auto;
}
.sz__heroSubtitle strong {
  color: #222;
  font-weight: 700;
}
@media only screen and (max-width: 1050px) {
  .sz__heroSubtitle {
    font-size: 16px;
  }
}
.sz__heroCta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #800000;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
.sz__heroCta:hover {
  background: #a00000;
  box-shadow: 0 6px 25px rgba(128, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* ====== SECTION HEADERS ====== */
.sz__sectionHeader {
  text-align: center;
  margin: 0 0 35px 0;
}
.sz__faqToggleAll {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 99px;
  border: 2px solid #800000;
  background: transparent;
  color: #800000;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .3s ease;
}
.sz__faqToggleAll:hover {
  background: #800000;
  color: #fff;
}
.sz__h2 {
  color: #800000;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.3em;
}
@media only screen and (max-width: 1050px) {
  .sz__h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .sz__h2 {
    font-size: 22px;
  }
}
.sz__sectionSubtitle {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== BENEFITS ====== */
.sz__benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 0 0 70px 0;
}
@media only screen and (max-width: 450px) {
  .sz__benefits {
    grid-template-columns: 1fr;
  }
}
.sz__benefitCard {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.sz__benefitCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.4) 55%,
    transparent 80%
  );
  transition: none;
  pointer-events: none;
  z-index: 1;
}
.sz__benefitCard:hover::before {
  animation: sz-shine 0.7s ease forwards;
}
@keyframes sz-shine {
  0% { left: -100%; }
  100% { left: 140%; }
}
.sz__benefitCard:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 32px rgba(128, 0, 0, 0.12),
    0 2px 8px rgba(128, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(128, 0, 0, 0.18);
}
.sz__benefitIcon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(128, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #800000;
  margin: 0 0 16px 0;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.sz__benefitCard:hover .sz__benefitIcon {
  background: #800000;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(128, 0, 0, 0.25);
}
.sz__benefitIcon i {
  transition: color 0.4s ease;
}
.sz__benefitCard:hover .sz__benefitIcon i {
  color: white;
}
.sz__benefitTitle {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}
.sz__benefitCard:hover .sz__benefitTitle {
  color: #800000;
}
.sz__benefitDesc {
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6em;
  margin: 0;
}

/* ====== STEPS ====== */
.sz__steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 0 70px 0;
}
.sz__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sz__step:hover {
  border-color: rgba(128, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.08);
}
.sz__stepNumber {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #800000;
  color: white;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sz__stepContent {
  flex: 1;
}
.sz__stepTitle {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
}
.sz__stepDesc {
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6em;
  margin: 0;
}
.sz__stepBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 20px;
  background: #800000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.sz__stepBtn:hover {
  background: #5c0000;
  transform: translateX(4px);
}
.sz__stepConnector {
  width: 3px;
  height: 24px;
  background: linear-gradient(180deg, #800000 0%, rgba(128, 0, 0, 0.2) 100%);
  margin: 0 0 0 47px;
  border-radius: 3px;
}
@media only screen and (max-width: 600px) {
  .sz__stepConnector {
    margin: 0 0 0 37px;
  }
  .sz__stepNumber {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }
  .sz__step {
    gap: 14px;
    padding: 18px;
  }
}

/* ====== WHY US ====== */
.sz__why {
  width: 100%;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px;
  margin: 0 0 70px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}
@media only screen and (max-width: 1050px) {
  .sz__why {
    padding: 25px 20px;
  }
}
.sz__whyContent {
  text-align: center;
  margin: 0 0 35px 0;
}
.sz__whyText {
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.7em;
  max-width: 800px;
  margin: 15px auto 0 auto;
}
.sz__whyText strong {
  color: #222;
  font-weight: 700;
}
.sz__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 850px) {
  .sz__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 450px) {
  .sz__stats {
    grid-template-columns: 1fr;
  }
}
.sz__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  border-radius: 12px;
  background: rgba(128, 0, 0, 0.04);
}
.sz__statNumber {
  font-size: 36px;
  font-weight: 800;
  color: #800000;
  line-height: 1.1em;
}
@media only screen and (max-width: 600px) {
  .sz__statNumber {
    font-size: 28px;
  }
}
.sz__statLabel {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin: 4px 0 0 0;
}

/* ====== FAQ ====== */
.sz__faq {
  width: 100%;
  margin: 0 0 70px 0;
}
.sz__faqItem {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  margin: 0 0 10px 0;
  overflow: hidden;
  transition: border-color 0.3s;
}
.sz__faqItem--active {
  border-color: rgba(128, 0, 0, 0.2);
}
.sz__faqQuestion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-align: left;
}
.sz__faqQuestion span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.sz__faqQuestion i {
  font-size: 14px;
  color: #800000;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.sz__faqItem--active .sz__faqQuestion i {
  transform: rotate(180deg);
}
.sz__faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.sz__faqItem--active .sz__faqAnswer {
  max-height: 300px;
  padding: 0 22px 20px 22px;
}
.sz__faqAnswer p {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.7em;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .sz__faqQuestion {
    padding: 15px 16px;
  }
  .sz__faqQuestion span {
    font-size: 15px;
  }
}

/* ====== CTA SECTION ====== */
.sz__ctaSection {
  width: 100%;
  text-align: center;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  scroll-margin-top: 120px;
}
@media only screen and (max-width: 1050px) {
  .sz__ctaSection {
    padding: 35px 20px;
  }
}
.sz__ctaIcon {
  font-size: 40px;
  color: #800000;
  margin: 0 0 16px 0;
  opacity: 0.8;
}
.sz__ctaTitle {
  font-size: 28px;
  font-weight: 800;
  color: #800000;
  margin: 0 0 12px 0;
  line-height: 1.3em;
}
@media only screen and (max-width: 600px) {
  .sz__ctaTitle {
    font-size: 22px;
  }
}
.sz__ctaText {
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 25px 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.sz__ctaButtons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.sz__ctaBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.sz__ctaBtn--primary {
  background: #800000;
  color: white;
}
.sz__ctaBtn--primary:hover {
  background: #a00000;
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.3);
  transform: translateY(-2px);
}
.sz__ctaBtn--outline {
  background: white;
  color: #800000;
  border: 2px solid #800000;
}
.sz__ctaBtn--outline:hover {
  background: rgba(128, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.15);
  transform: translateY(-2px);
}
@media only screen and (max-width: 450px) {
  .sz__ctaButtons {
    flex-direction: column;
  }
  .sz__ctaBtn {
    width: 100%;
    justify-content: center;
  }
}
