html {
  overflow-x: hidden;
}

body {
  overflow: visible;
}

.wb-nowrap {
  white-space: nowrap;
}

.wb-page .section-title {
  color: #1D1D1F;
}

/* ------------------------------------------------------------------------ */
/* hero                                                                      */
/* ------------------------------------------------------------------------ */
.wb-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 620px at 88% -12%, rgba(247, 105, 32, 0.55) 0%, rgba(226, 84, 20, 0.26) 38%, rgba(120, 44, 12, 0.1) 64%, rgba(14, 14, 16, 0) 82%),
    linear-gradient(180deg, #131315 0%, #0C0C0E 100%);
}

.wb-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 48px;
}

.wb-hero__row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.wb-hero__content {
  flex: 0 1 640px;
  min-width: 0;
}

.wb-hero__badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(250, 109, 33, 0.45);
  border-radius: 50px;
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FBA265;
}

.wb-hero__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  color: #FFFFFF;
}

.wb-hero__date {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #FA6D21;
}

.wb-hero__lead {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
}

.wb-hero__list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.wb-hero__list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 34px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.wb-hero__list li:last-child {
  margin-bottom: 0;
}

.wb-hero__list li::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #FA6D21 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2 4.8 8.5 9.5 3.8' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  border-radius: 50%;
}

.wb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.wb-hero__btn {
  padding: 14px 24px;
}

.wb-hero__msg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #FA6D21;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  transition: 0.2s;
}

.wb-hero__msg:hover {
  background: rgba(250, 109, 33, 0.16);
  color: #FFFFFF;
}

.wb-hero__msg img {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.wb-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-hero__meta li {
  position: relative;
  padding-left: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.wb-hero__meta li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #FA6D21;
  border-radius: 50%;
}

.wb-hero__media {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 0;
}

.wb-hero__img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-left: auto;
}

@media (max-width: 1023px) {
  .wb-hero__media {
    display: none;
  }

  .wb-hero__content {
    flex: 1 1 auto;
  }

  .wb-hero__title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .wb-hero .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .wb-hero__badge {
    display: none;
  }

  .wb-hero__title {
    font-size: 30px;
    line-height: 40px;
  }

  .wb-hero__date {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .wb-hero__lead,
  .wb-hero__list li {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-hero__list li::before {
    top: 1px;
  }

  .wb-hero__actions {
    gap: 12px;
  }

  .wb-hero__btn {
    display: block;
    width: 100%;
  }

  .wb-hero__msg {
    flex: 1 1 0;
    min-width: 0;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* intro                                                                     */
/* ------------------------------------------------------------------------ */
.wb-intro__row {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.wb-intro__main {
  flex: 1.1 1 0;
  min-width: 0;
}

.wb-intro__aside {
  flex: 1 1 0;
  min-width: 0;
}

.wb-intro__text {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.wb-intro__subtitle {
  margin: 24px 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-intro__accent {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.wb-chips li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1D1D1F;
}

.wb-chips li::after {
  content: '→';
  color: #FA6D21;
}

.wb-card-period {
  padding: 24px;
  background: #FFF5EF;
  border-radius: 16px;
  border: 1px solid #FFD9C2
}

.wb-card-period__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: #FA6D21;
  border-radius: 50px;
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.wb-card-period__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #1D1D1F;
}

.wb-card-period__text {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #74748B;
}

.wb-card-period__dates {
  display: flex;
  gap: 16px;
}

.wb-date {
  flex: 1 1 0;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 8px;
  text-align: center;
}

.wb-date--start {
  background: #FA6D21;
}

.wb-date--end {
  background: #FFFFFF;
  border: 1px solid #F6DFD1;
}

.wb-date__label {
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.wb-date__value {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}

.wb-date--start .wb-date__label {
  color: rgba(255, 255, 255, 0.85);
}

.wb-date--start .wb-date__value {
  color: #FFFFFF;
}

.wb-date--end .wb-date__label {
  color: #74748B;
}

.wb-date--end .wb-date__value {
  color: #1D1D1F;
}

@media (max-width: 1023px) {
  .wb-intro__row {
    flex-direction: column;
    gap: 32px;
  }

  .wb-intro__main,
  .wb-intro__aside {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wb-intro__text,
  .wb-intro__subtitle,
  .wb-intro__accent,
  .wb-card-period__text {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-card-period {
    padding: 20px 16px;
  }

  .wb-card-period__dates {
    gap: 12px;
  }

  .wb-intro__btn {
    display: block;
    width: 100%;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* scanner                                                                   */
/* ------------------------------------------------------------------------ */
.wb-scanner {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F8 100%);
}

.wb-scanner__card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: #1D1D1F url(../img/webinar-etrn/scanner-bg.webp) no-repeat;
  background-position: 100% -120px;
  background-size: auto 100%;
  border-radius: 16px;
}

.wb-scanner__main {
  position: relative;
  z-index: 1;
  flex: 1.15 1 0;
  min-width: 0;
}

.wb-scanner__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #FFFFFF;
}

.wb-scanner__subtitle {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.wb-scanner__text {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.wb-scanner__accent {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.wb-scanner__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.wb-scanner__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: #2A2A2C;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.wb-scanner__list li:last-child {
  margin-bottom: 0;
}

.wb-scanner__list li::before {
  content: '';
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: #FA6D21 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 7.3 5.7 10 11 4.4' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  border-radius: 50%;
}

.wb-scanner__side {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
}

.wb-mock {
  padding: 20px;
  background: #FFFFFF;
  border-radius: 12px;
}

.wb-mock__label {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FA6D21;
}

.wb-mock__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #1D1D1F;
}

.wb-mock__bar {
  height: 8px;
  margin-bottom: 10px;
  background: #ECEEF1;
  border-radius: 50px;
}

.wb-mock__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(45deg, #F3521F 2.56%, #F78720 100%);
  border-radius: inherit;
}

.wb-mock__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #74748B;
}

.wb-mock__caption {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #74748B;
}

.wb-mock__risks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-mock__risks li {
  padding: 6px 14px;
  background: #FFF0E6;
  border-radius: 50px;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #FA6D21;
}

.wb-scanner__gift {
  position: absolute;
  right: 2%;
  bottom: 0;
  z-index: 2;
  width: 378px;
  height: auto;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .wb-scanner__card {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 32px 24px;
    background-size: 100% auto;
  }

  .wb-scanner__gift {
    right: 0;
    width: 280px;
  }
}

@media (max-width: 767px) {
  .wb-scanner__card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .wb-scanner__title {
    font-size: 24px;
    line-height: 32px;
  }

  .wb-scanner__text,
  .wb-scanner__accent,
  .wb-scanner__subtitle,
  .wb-scanner__list li {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-scanner__btn {
    display: block;
    width: 100%;
  }

  .wb-scanner__gift {
    width: 205px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* fails                                                                     */
/* ------------------------------------------------------------------------ */
.wb-fails__row {
  display: flex;
  align-items: flex-start;
  gap: 68px;
}

.wb-fails__main {
  flex: 1 1 0;
  min-width: 0;
}

.wb-fails__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 38px;
  line-height: 50px;
  color: #1D1D1F;
}

.wb-fails__text {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.wb-fails__accent {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-fails__list {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 1px solid #ECEEF1;
  list-style: none;
}

.wb-fails__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #ECEEF1;
}

.wb-fails__item:last-child {
  border-bottom: 0;
}

.wb-fails__num {
  flex: 0 0 60px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #FA6D21;
}

.wb-fails__body {
  flex: 1 1 auto;
  min-width: 0;
}

.wb-fails__name {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-fails__desc {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #74748B;
}

@media (max-width: 1023px) {
  .wb-fails__row {
    flex-direction: column;
    gap: 32px;
  }

  .wb-fails__main,
  .wb-fails__list {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wb-fails__title {
    font-size: 28px;
    line-height: 38px;
  }

  .wb-fails__text,
  .wb-fails__accent,
  .wb-fails__name,
  .wb-fails__desc {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-fails__list {
    padding-left: 12px;
  }

  .wb-fails__item {
    gap: 12px;
  }

  .wb-fails__num {
    flex-basis: 40px;
    font-size: 20px;
    line-height: 28px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* stage / gain — shared card grid                                           */
/* ------------------------------------------------------------------------ */
.wb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.wb-grid__card {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  padding: 24px;
  background: #F9F9F9;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
}

.wb-grid--2 .wb-grid__card {
  flex: 0 0 calc((100% - 24px) / 2);
  max-width: calc((100% - 24px) / 2);
}

.wb-grid__num {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #F7C7A7;
}

.wb-grid__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  background: #FA6D21;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: #FFFFFF;
}

.wb-grid__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-grid__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #74748B;
}

.wb-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: #FFF5EF;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.wb-tags li {
  padding: 8px 16px;
  background: #F9F9F9;
  border: 1px solid #ECEEF1;
  border-radius: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1D1D1F;
}

.wb-howto__lead {
  margin: -8px 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

@media (max-width: 1023px) {
  .wb-grid__card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .wb-grid {
    gap: 16px;
  }

  .wb-grid__card,
  .wb-grid--2 .wb-grid__card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 16px;
  }

  .wb-howto__lead {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-grid__title,
  .wb-grid__text,
  .wb-note {
    font-size: 15px;
    line-height: 22px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* focus                                                                     */
/* ------------------------------------------------------------------------ */
.wb-focus__row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.wb-focus__card {
  flex: 0.82 1 0;
  min-width: 0;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
}

.wb-focus__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #1D1D1F;
}

.wb-focus__text {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #74748B;
}

.wb-focus__text:last-child {
  margin-bottom: 0;
}

.wb-focus__text b {
  font-weight: 700;
  color: #1D1D1F;
}

.wb-focus__list {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-dot {
  position: relative;
  padding: 12px 16px 12px 34px;
  background: #F9F9F9;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-dot::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 16px;
  width: 6px;
  height: 6px;
  background: #FA6D21;
  border-radius: 50%;
}

@media (max-width: 1023px) {
  .wb-focus__row {
    flex-direction: column;
    gap: 24px;
  }

  .wb-focus__card,
  .wb-focus__list {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wb-focus__card {
    padding: 20px 16px;
  }

  .wb-focus__title {
    font-size: 18px;
    line-height: 26px;
  }

  .wb-focus__text,
  .wb-dot {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-focus__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .wb-dot {
    padding: 10px 16px 10px 32px;
  }

  .wb-dot::before {
    top: 18px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* program                                                                   */
/* ------------------------------------------------------------------------ */
.wb-program__lead {
  margin: -8px 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.wb-acc__item {
  margin-bottom: 16px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
  transition: 0.2s;
}

.wb-acc__item:last-child {
  margin-bottom: 0;
}

.wb-acc__item.is-open {
  background: #FFF5EF;
  border-color: #FA6D21;
}

.wb-acc__q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px 20px;
  background: none;
  border: 0;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.wb-acc__num {
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #FA6D21;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  transition: 0.2s;
}

.wb-acc__item.is-open .wb-acc__num {
  background: #1D1D1F;
}

.wb-acc__label {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-acc__q::after {
  content: '';
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background: url(../img/devops-audit/faq-plus.svg) center/16px 16px no-repeat;
}

.wb-acc__item.is-open .wb-acc__q::after {
  background-image: url(../img/devops-audit/faq-minus.svg);
}

.wb-acc__q--static {
  cursor: default;
}

.wb-acc__q--static::after {
  content: none;
}

.wb-acc__a {
  display: none;
  padding: 0 20px 20px 60px;
}

.wb-acc__item.is-open .wb-acc__a {
  display: block;
}

.wb-acc__intro {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #B99C8C;
}

.wb-acc__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-acc__list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 18px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-acc__list li:last-child {
  margin-bottom: 0;
}

.wb-acc__list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 2px;
  width: 5px;
  height: 5px;
  background: #FA6D21;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .wb-program__lead {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-acc__item {
    margin-bottom: 12px;
  }

  .wb-acc__q {
    gap: 12px;
    padding: 14px 16px;
    align-items: flex-start;
  }

  .wb-acc__label {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-acc__q::after {
    margin-top: 3px;
  }

  .wb-acc__a {
    padding: 0 16px 16px 52px;
  }

  .wb-acc__list li {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-acc__list li::before {
    top: 9px;
  }
}

@media (max-width: 479px) {
  .wb-acc__a {
    padding-left: 16px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* audience                                                                  */
/* ------------------------------------------------------------------------ */
.wb-audience__lead,
.wb-audience__label {
  margin: -8px 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.wb-audience__label {
  margin: 24px 0 16px;
  color: #74748B;
}

.wb-audience__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.wb-audience__card {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
}

.wb-audience__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  color: #FA6D21;
}

.wb-audience__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #74748B;
}

.wb-audience__roles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-audience__roles .wb-dot--wide {
  grid-column: span 2;
}

@media (max-width: 1023px) {
  .wb-audience__card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

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

@media (max-width: 767px) {
  .wb-audience__lead,
  .wb-audience__label,
  .wb-audience__text {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-audience__grid {
    gap: 16px;
  }

  .wb-audience__card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 16px;
  }

  .wb-audience__roles {
    grid-template-columns: minmax(0, 1fr);
  }

  .wb-audience__roles .wb-dot--wide {
    grid-column: auto;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* fit                                                                       */
/* ------------------------------------------------------------------------ */
.wb-fit__row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wb-fit__list {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-fit__list li {
  position: relative;
  margin-bottom: 8px;
  padding: 12px 16px 12px 48px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wb-fit__list li:last-child {
  margin-bottom: 0;
}

.wb-fit__list li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 14px;
  width: 22px;
  height: 23px;
  background: url(../img/webinar-etrn/check.svg) center no-repeat;
}

.wb-fit__aside {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px;
  background: #F9F9F9;
  border-radius: 8px;
}

.wb-fit__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  color: #1D1D1F;
}

.wb-fit__text {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #74748B;
}

.wb-fit__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .wb-fit__row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .wb-fit__list li,
  .wb-fit__text {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-fit__list li {
    padding: 10px 16px 10px 44px;
  }

  .wb-fit__list li::before {
    top: 10px;
  }

  .wb-fit__aside {
    padding: 20px 16px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* why                                                                       */
/* ------------------------------------------------------------------------ */
.wb-why {
  background: #1D1D1F;
}

.wb-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wb-why__lead {
  grid-column: span 2;
  grid-row: span 2;
  padding: 32px;
  background: linear-gradient(45deg, #F3521F 2.56%, #F78720 100%);
  border-radius: 12px;
}

.wb-why__badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #FFFFFF;
}

.wb-why__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #FFFFFF;
}

.wb-why__text {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.88);
}

.wb-why__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wb-why__stack li {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #FFFFFF;
}

.wb-why__card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: #29292A;
  border-radius: 12px;
}

.wb-why__num {
  position: absolute;
  top: 4px;
  right: 16px;
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.wb-why__name {
  position: relative;
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  color: #FFFFFF;
}

.wb-why__desc {
  position: relative;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1023px) {
  .wb-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wb-why__lead {
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  .wb-why__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wb-why__lead {
    grid-column: span 1;
    padding: 24px 16px;
  }

  .wb-why__title {
    font-size: 20px;
    line-height: 30px;
  }

  .wb-why__text,
  .wb-why__desc {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-why__card /* пункты без раскрытия — ни плюса, ни курсора-указателя */
{
    padding: 20px 16px;
  }

  .wb-why__num {
    font-size: 48px;
    line-height: 60px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* speaker                                                                   */
/* ------------------------------------------------------------------------ */
.wb-speaker__lead {
  margin: -8px 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.wb-speaker__row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.wb-speaker__card {
  flex: 1.15 1 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
}

.wb-speaker__photo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #F9F9F9;
}

.wb-speaker__body {
  flex: 1 1 auto;
  min-width: 0;
}

.wb-speaker__name {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  color: #1D1D1F;
}

.wb-speaker__role {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FA6D21;
}

.wb-speaker__bio {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #74748B;
}

.wb-speaker__aside {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px;
  background: #FFF5EF;
  border-radius: 8px;
}

.wb-speaker__aside p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

@media (max-width: 1023px) {
  .wb-speaker__row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .wb-speaker__lead,
  .wb-speaker__bio,
  .wb-speaker__aside p {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-speaker__card {
    gap: 16px;
    padding: 20px 16px;
  }

  .wb-speaker__photo {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .wb-speaker__aside {
    padding: 20px 16px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* cta — extends .da-cta from landing-base.css                               */
/* ------------------------------------------------------------------------ */
.wb-cta .da-cta__inner {
  align-items: flex-start;
  gap: 48px;
}

.wb-cta .da-cta__main {
  flex: 1 1 auto;
  max-width: 594px;
}

.wb-cta .da-cta__side {
  flex: 0 0 488px;
  max-width: 488px;
}

.wb-cta .da-cta__text {
  color: rgba(255, 255, 255, 0.7);
}

.wb-cta__highlight {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(250, 109, 33, 0.2) 0%, rgba(250, 109, 33, 0.06) 100%);
  border: 1px solid rgba(250, 109, 33, 0.35);
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.92);
}

.wb-cta__panel {
  padding: 24px;
  background: #3E3E43;
  border-radius: 12px;
}

.wb-cta__facts {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.wb-cta__fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wb-cta__fact:first-child {
  padding-top: 0;
}

.wb-cta__fact-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.wb-cta__fact-value {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  text-align: right;
}

.wb-cta__panel-title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.wb-cta__points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.wb-cta__points li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 26px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.wb-cta__points li:last-child {
  margin-bottom: 0;
}

.wb-cta__points li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.4 6.4 11.8 13 4.8' fill='none' stroke='%23FA6D21' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}

.wb-cta__panel-btn {
  display: block;
  width: 100%;
}

@media (max-width: 1023px) {
  .wb-cta .da-cta__side {
    flex: 0 0 auto;
    max-width: none;
  }

  .wb-cta .da-cta__main {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .wb-cta__highlight,
  .wb-cta__points li {
    font-size: 15px;
    line-height: 22px;
  }

  .wb-cta__panel {
    padding: 20px 16px;
  }
}
/* ------------------------------------------------------------------------ */
