/* LP Webinar — custom uniquement */

.lp-hero {
  position: relative;
  overflow: hidden;
  background: #222222;
  color: #ffffff;
  padding: 0;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle 3px, rgba(237,169,0,.9) 99%, transparent),
    radial-gradient(circle 2px, rgba(255,255,255,.4) 99%, transparent);
  background-size: 140px 140px, 90px 90px;
  background-position: 0 0, 40px 60px;
  animation: lp-drift 60s linear infinite;
}
@keyframes lp-drift {
  to { background-position: 0 -1400px, 40px -840px; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero::after { animation: none; }
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
}
.lp-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lp-hero h1 em { font-style: normal; color: #eda900; }
.lp-hero .lp-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 26px;
  max-width: 540px;
}
.lp-kicker {
  display: inline-block;
  background: #eda900;
  color: #222222;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.lp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.lp-meta .lp-meta-item .k {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.lp-meta .lp-meta-item .v {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.lp-countdown {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.lp-countdown .cell {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  min-width: 66px;
  padding: 10px 8px;
  text-align: center;
}
.lp-countdown .num {
  font-size: 1.55rem;
  font-weight: 700;
  color: #eda900;
  display: block;
}
.lp-countdown .lbl {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.webinar-form-wrapper {
  background: #ffffff;
  border-radius: 8px;
  border-top: 5px solid #eda900;
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  overflow: hidden;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #eda900;
  margin-bottom: 12px;
}
.lp-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #eda900;
}
.lp-learn-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.lp-icebreaker {
  font-size: 1.08rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 28px;
  border-bottom: none;
  padding: 0;
  text-align: center;
}
.lp-learn-body p {
  font-size: 1rem;
  color: #333;
  line-height: 1.65;
  padding: 18px 0;
  border-bottom: 1px solid #e3e6ea;
  text-align: center;
}
.lp-learn-body p:last-child { border-bottom: none; }
.lp-scard {
  background: #ffffff;
  border: 1px solid #e3e6ea;
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
}
.lp-avatar-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  display: block;
}
.lp-scard h3 { font-size: 1.02rem; margin-bottom: 4px; }
.lp-scard .role {
  font-size: .82rem;
  font-weight: 600;
  color: #eda900;
  margin-bottom: 10px;
}
.lp-scard p { font-size: .87rem; color: #666; }
.lp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  justify-content: center;
}
.lp-chip {
  font-size: .88rem;
  font-weight: 600;
  color: #222222;
  border: 1.5px solid #222222;
  border-radius: 999px;
  padding: 9px 18px;
  background: #ffffff;
}
.lp-chip.gold { border-color: #eda900; color: #eda900; }
@media (max-width: 767px) {
  .lp-hero-inner { padding: 40px 0 56px; }
  .lp-countdown .cell { min-width: 54px; }
  .lp-meta { gap: 16px; }
}