/* ── WEBINAR PAGE ── */
.webinar-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 96px 24px 80px;
}

/* Badge */
.webinar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent, #00c8ff);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.webinar-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent, #00c8ff);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(.7)}
}

/* Hero text */
.webinar-hero-text {
  margin-bottom: 36px;
}
.webinar-hero-text h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
}
.webinar-hero-text h1 .accent {
  background: linear-gradient(90deg,#0057ff,#00c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.webinar-hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

/* Meta row */
.webinar-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.webinar-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.webinar-meta-item span.icon { font-size: 15px; }

/* ── VIDEO PLAYER ── */
.video-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0e1a;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(0,200,255,.05);
  margin-bottom: 40px;
}

/* YouTube / iframe embed */
.video-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.video-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Placeholder shown when no real URL */
.video-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg,#0d1220 0%,#0a1628 100%);
  cursor: pointer;
  transition: background .3s;
}
.video-placeholder:hover { background: linear-gradient(135deg,#111827 0%,#0d1e38 100%); }
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0057ff,#00c8ff);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(0,200,255,.35);
  transition: transform .2s, box-shadow .2s;
}
.video-placeholder:hover .play-btn {
  transform: scale(1.08);
  box-shadow: 0 0 56px rgba(0,200,255,.5);
}
.play-btn svg { margin-left: 4px; }
.video-placeholder-label {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* Progress hint */
.video-progress-hint {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.progress-bar-mini {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
  max-width: 200px;
}
.progress-bar-mini-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,#0057ff,#00c8ff);
  border-radius: 99px;
  transition: width .5s ease;
}

/* ── WHAT YOU'LL LEARN ── */
.learn-section {
  margin-bottom: 40px;
}
.learn-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.learn-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media(max-width:560px){ .learn-points{ grid-template-columns:1fr; } }
.learn-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s;
}
.learn-point:hover { border-color: rgba(0,200,255,.2); }
.lp-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.lp-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.lp-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.4; }

/* ── CTA BLOCK ── */
.webinar-cta-block {
  background: linear-gradient(135deg, rgba(0,87,255,.12) 0%, rgba(0,200,255,.08) 100%);
  border: 1px solid rgba(0,200,255,.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.webinar-cta-block::before {
  content:'';
  position:absolute;
  top:-60px; right:-60px;
  width:200px; height:200px;
  background: radial-gradient(circle, rgba(0,200,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent, #00c8ff);
  margin-bottom: 12px;
}
.cta-block-title {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-block-sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.cta-block-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,#0057ff,#00c8ff);
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(0,87,255,.35);
}
.cta-block-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,87,255,.5);
}
.cta-trust {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  margin: 40px 0;
}