html {
  scroll-behavior: smooth;
}

.webinar-hero {
  background: #0b1a38;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.webinar-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.webinar-hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.wb-hero-form-panel {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.wb-hero-form-panel .wb-hero-form-title,
.wb-hero-form-panel .form-header-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0b1a38;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #dde3ec;
}
.wb-hero-form-panel .form-group {
  margin-bottom: 14px;
}
.wb-hero-form-panel .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #112b4a;
  margin-bottom: 4px;
}
.wb-hero-form-panel .form-label sup {
  color: #d63031;
}
.wb-hero-form-panel .form-control,
.wb-hero-form-panel .form-input {
  display: block;
  width: 100%;
  font-size: 0.85rem;
  color: #1a2b45;
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 4px;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wb-hero-form-panel .form-control:focus,
.wb-hero-form-panel .form-input:focus {
  border-color: #1660d6;
  box-shadow: 0 0 0 3px rgba(22, 96, 214, 0.12);
}
.wb-hero-form-panel .form-feedback-error {
  font-size: 0.72rem;
  color: #d63031;
  margin-top: 3px;
}
.wb-hero-form-panel .form-radio-group {
  display: flex;
  gap: 10px;
}
.wb-hero-form-panel .form-radio-option {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.wb-hero-form-panel .form-radio-option input[type=radio] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.wb-hero-form-panel .form-radio-option .form-radio-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 8px;
  border: 1.5px solid #dde3ec;
  border-radius: 6px;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.wb-hero-form-panel .form-radio-option .form-radio-box .date {
  font-size: 14px;
  color: #485664;
}
.wb-hero-form-panel .form-radio-option .form-radio-box .time {
  font-size: 16px;
  font-weight: 500;
  color: #1a2b45;
}
.wb-hero-form-panel .form-radio-option input[type=radio]:checked + .form-radio-box {
  border-color: #1660d6;
  background: rgba(22, 96, 214, 0.06);
}
.wb-hero-form-panel .form-radio-option input[type=radio]:checked + .form-radio-box .time {
  color: #1660d6;
}
.wb-hero-form-panel .form-radio-option:hover .form-radio-box {
  border-color: rgb(181.7396226415, 194.6679245283, 214.0603773585);
}
.wb-hero-form-panel .dwn-priv p,
.wb-hero-form-panel .wb-form-consent {
  font-size: 0.72rem;
  color: #485664;
  line-height: 1.55;
  margin: 0;
}
.wb-hero-form-panel .dwn-priv p a,
.wb-hero-form-panel .wb-form-consent a {
  color: #1660d6;
  text-decoration: none;
}
.wb-hero-form-panel .dwn-priv p a:hover,
.wb-hero-form-panel .wb-form-consent a:hover {
  text-decoration: underline;
}
.wb-hero-form-panel .input-row {
  margin-top: 16px;
}
.wb-hero-form-panel input[type=submit],
.wb-hero-form-panel button[type=submit],
.wb-hero-form-panel .wb-form-submit {
  display: block;
  width: 100%;
  background: #1660d6;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  padding: 11px;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  transition: background 0.2s;
}
.wb-hero-form-panel input[type=submit]:hover,
.wb-hero-form-panel button[type=submit]:hover,
.wb-hero-form-panel .wb-form-submit:hover {
  background: rgb(18.1966101695, 79.4033898305, 177.0033898305);
}

.success-msg-card {
  display: none;
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.success-msg-card .success-msg h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #0b1a38;
  line-height: 1.55;
}

.wb-badge {
  display: inline-block;
  background: #0c774a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.wb-date-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 10px;
  max-width: max-content;
}
.wb-date-chip .date-time-slot {
  font-size: 13px;
  color: #fff;
}
.wb-date-chip .date-time-slot .date {
  border: 1px solid #565d60;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #1841d7;
  padding: 8px 12px;
  font-weight: 500;
}
.wb-date-chip .date-time-slot .time {
  border: 1px solid #565d60;
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-weight: 300;
  padding: 8px 12px;
  background-color: #000;
}

.wb-hero-title {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 18px;
}

.wb-hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 28px;
}

.wb-speakers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.wb-speaker-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wb-speaker-mini img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.wb-speaker-mini .wb-speaker-mini__name {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
  margin-bottom: 2px;
}
.wb-speaker-mini .wb-speaker-mini__role {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  line-height: 1.3;
}

.wb-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wb-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}
.wb-meta-item .wb-meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wb-meta-item .wb-meta-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}
.wb-meta-item .wb-meta-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.wb-meta-item .wb-meta-date {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}

.wb-meta-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15);
  margin: 4px 0;
}

.wb-learn {
  padding: 72px 0 64px;
  background: #fff;
}

.wb-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #0b1a38;
  margin-bottom: 40px;
  text-align: center;
}

.wb-learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wb-learn-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.wb-learn-item .wb-learn-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #1660d6;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.wb-learn-item p {
  color: #1d2630;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.wb-why {
  padding: 72px 0 64px;
  background: #f4f6fb;
}

.wb-why-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dde3ec;
  padding: 28px 24px;
  height: 100%;
}
.wb-why-card .wb-why-icon {
  width: 48px;
  height: 48px;
  background: #eaf0fb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.wb-why-card .wb-why-icon svg {
  width: 22px;
  height: 22px;
  stroke: #1660d6;
  fill: none;
  stroke-width: 1.8;
}
.wb-why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b1a38;
  margin-bottom: 10px;
}
.wb-why-card p {
  font-size: 14px;
  color: #1d2630;
  line-height: 1.65;
  margin: 0;
}

.wb-speakers {
  padding: 72px 0 64px;
  background: #fff;
}

.wb-speaker-card {
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 8px;
  overflow: hidden;
}
.wb-speaker-card .wb-speaker-card__top {
  height: 4px;
  background: #1660d6;
}
.wb-speaker-card:nth-child(even) .wb-speaker-card__top {
  background: #1ab26a;
}
.wb-speaker-card .wb-speaker-card__body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 576px) {
  .wb-speaker-card .wb-speaker-card__body {
    flex-direction: row;
  }
}
.wb-speaker-card .wb-speaker-card__profile {
  text-align: center;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .wb-speaker-card .wb-speaker-card__profile {
    width: 140px;
  }
}
.wb-speaker-card .wb-speaker-card__profile img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dde3ec;
  margin-bottom: 12px;
}
.wb-speaker-card .wb-speaker-card__profile .wb-speaker-card__name {
  font-weight: 500;
  font-size: 0.95rem;
  color: #0b1a38;
  line-height: 1.3;
  margin-bottom: 4px;
}
.wb-speaker-card .wb-speaker-card__profile .wb-speaker-card__role {
  font-size: 0.78rem;
  color: #5a6a7e;
  font-style: italic;
  line-height: 1.4;
}
.wb-speaker-card .wb-speaker-card__bio {
  font-size: 0.88rem;
  color: #3d4d60;
  line-height: 1.7;
  padding-top: 4px;
}
@media (min-width: 576px) {
  .wb-speaker-card .wb-speaker-card__bio {
    border-left: 1px solid #dde3ec;
    padding-left: 24px;
  }
}

.wb-cta {
  background: #0e2252;
  padding: 64px 0;
  text-align: center;
}
.wb-cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.wb-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 28px;
  line-height: 1.65;
}
.wb-cta .wb-cta-btn {
  display: inline-block;
  background: #1660d6;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.wb-cta .wb-cta-btn:hover {
  background: rgb(18.1966101695, 79.4033898305, 177.0033898305);
  color: #fff;
}

.success-msg-card {
  width: 100%;
  min-height: 400px;
  height: 100%;
  margin: 30px 0;
  margin-left: auto;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-box-shadow: 0 4px 12px -1px hsla(213.33, 49.74%, 52.18%, 0.29);
  box-shadow: 0 4px 12px -1px hsla(213.33, 49.74%, 52.18%, 0.29);
  display: none;
}