:root{
  --orange-top:#f17630;
  --orange-bottom:#e64a38;
  --tile-white:#ffffff;
  --tile-number:#111;
  --muted-white:rgba(255,255,255,0.95);
  --card-border:#2b2b2b;
  --card-shadow: 0 20px 45px rgba(0,0,0,0.25);
  --max-width:980px;
  --cta-yellow-top:#ffd46a;
  --cta-yellow-bottom:#ffb84a;
}

/* page reset */
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:"Montserrat",system-ui,-apple-system,"Segoe UI",Roboto,Arial;background:#2b2b2b}

/* hero section with orange gradient */
.hero {
  background: linear-gradient(180deg,var(--orange-top) 0%,var(--orange-bottom) 100%);
  padding: 36px 18px 120px;
  color:var(--muted-white);
  position: relative;
  overflow: visible;
}

.wrap {
  max-width:var(--max-width);
  margin:0 auto;
  text-align:center;
  position:relative;
}

/* mascot placed on left and overlapping */
.mascot {
  position: absolute;
  left: 12px;
  top: 54px;
  width:160px;
  z-index: 6;
  pointer-events:none;
}

/* top heading + countdown */
.title {
  font-size:44px;
  font-weight:800;
  color:#fff;
  letter-spacing:0.6px;
  margin:6px 0 12px;
  text-transform:uppercase;
}

.subtitle {
  font-weight:600;
  color: rgba(255,255,255,0.95);
  font-size:14px;
  margin-bottom:12px;
}

/* countdown tiles row */
.count-row {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin: 6px 0 6px;
}

.tile {
  background: var(--tile-white);
  width:68px;
  height:68px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:32px;
  color:var(--tile-number);
  box-shadow: 0 8px 0 rgba(0,0,0,0.14);
  position:relative;
}

/* small decorative orange dot on tiles to match screenshot look */
.tile::after {
  content:'';
  position:absolute;
  right:-10px;
  top:50%;
  transform:translateY(-50%);
  width:6px;height:6px;border-radius:50%;
  background: transparent;
}

.sep {
  font-weight:900;
  font-size:36px;
  color: #fff;
  padding-bottom:6px;
}

.labels {
  display:flex;
  justify-content:center;
  gap:38px;
  margin-top:8px;
  font-size:12px;
  color: rgba(255,255,255,0.95);
}

.note {
  margin-top:10px;
  font-weight:700;
  text-decoration:underline;
  color: rgba(255,255,255,0.95);
  font-size:13px;
}


/* central white presentation card */
.card-wrap { display:flex; justify-content:center; position:relative; z-index:5; }
.card {
  width:86%;
  max-width:813px;
  background:#fff;
  border-radius:14px;
  padding:22px 26px 28px;
  box-shadow: var(--card-shadow);
  border: 8px solid #000;
  text-align:center;
}

.card .top-title { font-size:20px; color:#333; margin:6px 0; font-weight:700; }
.card .brand { font-size:22px; font-weight:800; color:#111; margin:4px 0 18px; letter-spacing:0.6px; }

/* video image with play overlay */

.video {
  width:100%;
  max-width:835px;
  margin: 4px auto 18px;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
  position:relative;
  background:#f6f6f8;
  height: 315px;
}

.video img { width:100%; height:auto; display:block; }
.video::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 ratio → change to 75% for 4:3 */
}

.video iframe,
.video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:68px;height:68px;border-radius:50%;
  background: rgba(255,255,255,0.95);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 22px rgba(0,0,0,0.18);
  font-size:22px;color:#e64a38;
  cursor:pointer;
}

.imp { font-weight:800; color:#222; font-size:20px; margin-top:6px; }
.card p { color:#555; line-height:1.6; font-size:14px; margin:8px auto 0; max-width:92%; }

/* big CTA button */
.cta-wrap { margin-top:28px; display:flex; justify-content:center; }
.cta {
  background: linear-gradient(180deg,var(--cta-yellow-top),var(--cta-yellow-bottom));
  padding:14px 28px;
  border-radius:16px;
  font-weight:800;
  color:#222;
  border:none;
  box-shadow: 0 12px 0 rgba(0,0,0,0.16);
  font-size:16px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-transform:uppercase;
}

.cta .wh {
  width:20px;height:20px;border-radius:50%;
  background: rgba(255,255,255,0.9);
  display:inline-flex;align-items:center;justify-content:center;font-size:12px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.08);
}

/* floating round scroll-top button at right */
.scroll-top {
  position: fixed;
  right:28px;
  bottom:28px;
  width:42px;height:42px;border-radius:50%;
  background: rgba(0,0,0,0.45);
  color:#fff;border:none;font-weight:700;cursor:pointer;z-index:999;
  box-shadow:0 8px 0 rgba(0,0,0,0.35);
}

/* responsiveness */
@media (max-width:560px){
  .mascot{ left:8px; width:128px; top:64px; }
  .tile{ width:60px; height:60px; font-size:26px; }
  .sep{ font-size:30px; }
  .card{ width:92%; padding:18px; }
  .video{ max-width:420px;height:auto }
}

@media (max-width:560px){
  .title{ font-size:28px; }
  .mascot{ width:96px; left:6px; top:70px; transform:translateY(-4%); }
  .tile{ width:52px; height:52px; font-size:20px; }
  .labels{ gap:14px; }
  .cta{ padding:12px 20px; font-size:14px; }
}

.webinar-section {
  width: 100%;
  padding: 50px 20px;
  background: linear-gradient(180deg,var(--orange-top) 0%,var(--orange-bottom) 100%);
  border-radius: 10px;
  box-sizing: border-box;
  color: #fff;
}

.webinar-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.webinar-greeting {
  font-size: 28px;
  font-weight: 700;
  color: #dff3ff;
  margin-bottom: 10px;
}

.webinar-logo img {
  height: 90px;
  width: auto;
  margin-bottom: 20px;
}

.webinar-text {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.webinar-title {
  font-size: 40px;
  font-weight: 800;
  color: #dff3ff;
  margin: 20px 0;
}


/* COUNTDOWN */
.countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.count-tile {
  background: #d0ecff;
  color: #111;
  width: 90px;
  height: 80px;
  font-weight: 800;
  font-size: 32px;
  border-radius: 10px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.separator {
  font-size: 40px;
  font-weight: 800;
  color: #eaf6ff;
}

.count-labels {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.9;
}

.webinar-note {
  margin-top: 18px;
  font-size: 15px;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .count-tile {
    width: 65px;
    height: 60px;
    font-size: 24px;
  }

  .separator {
    font-size: 30px;
  }

  .count-labels {
    gap: 25px;
    font-size: 11px;
  }

  .webinar-title {
    font-size: 28px;
  }

  .webinar-greeting {
    font-size: 22px;
  }
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
}

.unit {
  text-align: center;
}

.digits {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.digit {
  background: #fff;
  color: #000;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 7px 3px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  display: inline-block;
  min-width: 48px;
}

.colon {
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  margin: 0 -8px;
  display: flex;
  align-items: center;
  line-height: 1;
  margin-top: -26px;
}

.unit small {
  margin-top: 6px;
  display: block;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 500;
}


@media(max-width: 600px) {
  .digit { font-size: 1.8rem; min-width: 29px; padding: 15px 4px; }
  .colon { font-size: 2rem; }
}


.tile {
  background: var(--tile-white);
  width:68px;
  height:68px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:32px;
  color:var(--tile-number);
  box-shadow: 0 8px 0 rgba(0,0,0,0.14);
  position:relative;
}

/* small decorative orange dot on tiles to match screenshot look */
.tile::after {
  content:'';
  position:absolute;
  right:-10px;
  top:50%;
  transform:translateY(-50%);
  width:6px;height:6px;border-radius:50%;
  background: transparent;
}

.sep {
  font-weight:900;
  font-size:36px;
  color: #fff;
  padding-bottom:6px;
}

.labels {
  display:flex;
  justify-content:center;
  gap:38px;
  margin-top:8px;
  font-size:12px;
  color: rgba(255,255,255,0.95);
}

.note {
  margin-top:10px;
  font-weight:700;
  text-decoration:underline;
  color: rgba(255,255,255,0.95);
  font-size:13px;
}

/* thin dark separator bars (like screenshot) */
.sep-line {
  /*height:6px;*/
  /*background: rgba(0,0,0,0.18);*/
  margin: 30px 0;
  width:100%;
} 

.card-wrap { display:flex; justify-content:center; position:relative; z-index:5; }
.card {
  width:86%;
  max-width:813px;
  background:#fff;
  border-radius:14px;
  padding:22px 26px 28px;
  box-shadow: var(--card-shadow);
  border: 8px solid #000;
  text-align:center;
}

.card .top-title { font-size:20px; color:#333; margin:6px 0; font-weight:700; }
.card .brand { font-size:22px; font-weight:800; color:#111; margin:4px 0 18px; letter-spacing:0.6px; }

/* video image with play overlay */
.video {
  width:100%;
  max-width:835px;
  margin: 4px auto 18px;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
  position:relative;
  background:#f6f6f8;
}
.video img { width:100%; height:auto; display:block; }

.play {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:68px;height:68px;border-radius:50%;
  background: rgba(255,255,255,0.95);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 22px rgba(0,0,0,0.18);
  font-size:22px;color:#e64a38;
  cursor:pointer;
}

.imp { font-weight:800; color:#222; font-size:20px; margin-top:6px; }
.card p { color:#555; line-height:1.6; font-size:14px; margin:8px auto 0; max-width:92%; }

/* big CTA button */
.cta-wrap { margin-top:28px; display:flex; justify-content:center; }
.cta {
  background: linear-gradient(180deg,var(--cta-yellow-top),var(--cta-yellow-bottom));
  padding:14px 28px;
  border-radius:16px;
  font-weight:800;
  color:#222;
  border:none;
  box-shadow: 0 12px 0 rgba(0,0,0,0.16);
  font-size:16px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-transform:uppercase;
}

.cta .wh {
  width:20px;height:20px;border-radius:50%;
  background: rgba(255,255,255,0.9);
  display:inline-flex;align-items:center;justify-content:center;font-size:12px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.08);
}

/* floating round scroll-top button at right */
.scroll-top {
  position: fixed;
  right:28px;
  bottom:28px;
  width:42px;height:42px;border-radius:50%;
  background: rgba(0,0,0,0.45);
  color:#fff;border:none;font-weight:700;cursor:pointer;z-index:999;
  box-shadow:0 8px 0 rgba(0,0,0,0.35);
}

/* responsiveness */
@media (max-width:900px){
  .mascot{ left:8px; width:128px; top:64px; }
  .tile{ width:60px; height:60px; font-size:26px; }
  .sep{ font-size:30px; }
  .card{ width:92%; padding:18px; }
  .video{ max-height:420px; }
}

@media (max-width:560px){
  .title{ font-size:28px; }
  .mascot{ width:96px; left:6px; top:70px; transform:translateY(-4%); }
  .tile{ width:52px; height:52px; font-size:20px; }
  .labels{ gap:14px; }
  .cta{ padding:12px 20px; font-size:14px; }
}

.mascot {
  position: absolute;
  left: 36px;  
  top: 550px;   
  width: 195px;
  z-index: 5;
}

.register-btn {
  background-color: #ff7f00;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;

}

.register-btn:hover {
  background-color: #ff6000;
}


.steps-section { padding:34px 18px; background: #fff; }
.container { max-width:var(--max-w); margin:0 auto; }

.section-title {
  text-align:center;
  font-size:28px;
  font-weight:800;
  margin: 6px 0 26px;
  letter-spacing:0.5px;
}

/* rows grid */
.steps-row {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  /*align-items:center;*/
  padding: 26px 0;
  position:relative;
}

/* left thumbnail column */
.thumb-wrap { position:relative; display:flex; justify-content:flex-start; }
.thumb-card {
  width:100%;
  /*max-width:520px;*/
  background:var(--dark-frame);
  border-radius:10px;
  padding:18px;
  /*box-shadow: 0 12px 30px rgba(0,0,0,0.12);*/
  position:relative;
  overflow:visible;
}
.thumb-card img { width:100%; display:block; border-radius:6px; }

/* circular play button */
.play-btn {
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:64px;
  height:64px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.95);
  color:var(--dark-frame);
  font-size:22px;
  font-weight:700;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  cursor:pointer;
}

/* mascot that overlaps right side of thumb */
.thumb-mascot {
  position:absolute;
  right:-36px;                 /* moves mascot to overlap the separator area */
  bottom: -6px;
  width:120px;
  z-index:6;
  pointer-events:none;
  transform:translateY(0);
}

/* right text column */
.step-text { padding:0 8px; text-align:left;padding-top: 31px; }
.step-text h3 { margin:0 0 8px; font-size:22px; font-weight:800; color:#222; }
.step-text p { margin:0 0 14px; color:#555; line-height:1.6; font-size:18px; max-width:520px; }

.btn-cta {
  display:inline-block;
  background: linear-gradient(180deg,#ffd46a,#ffb84a);
  color:#111;
  padding:12px 22px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  box-shadow: 0 12px 0 rgba(0,0,0,0.12), 0 6px 18px rgba(0,0,0,0.12);
}

/* horizontal separator bars that "cut" across layout */
.sep-line {
  height:8px;
  background: var(--sep-color);
  width:100%;
  margin: 0;
  position:relative;
  z-index:10; /* above mascot so it visually cuts it */
}

/* smaller screens: stack */
@media (max-width:900px){
  .steps-row { grid-template-columns: 1fr; gap:0px; }
  .thumb-wrap { justify-content:center; }
  .thumb-mascot { right:-18px; width:96px; bottom:-12px; }
  .step-text { text-align:center;padding-top:0px }
}

@media (max-width:480px){
  .play-btn { left:12px; width:52px; height:52px; font-size:18px; }
  .thumb-mascot { right:-6px; width:84px; }
  .container { padding:0 10px; }
  .section-title { font-size:20px; }
}

.brand {

  height: fit-content;
 
}
