:root {
    --primary-color: #0284c7;
    --primary-dark: #0369a1;
    --primary-light: #38bdf8;
    --hero-bg: #0284c7;        /* tick color */
    --hero-bg-light: #0369a1;
    --bg-light: #f0f9ff;
    --bg-lighter: #e0f2fe;
    --border-color: #bae6fd;
    --text-dark: #0c2340;
    --text-muted: #475569;
  }

  


  /* TOP HEADER - Darker sky blue with reduced height */
  /* ================= LIVE HERO ================= */

.live-hero {
  background: linear-gradient(135deg, #0f4c81, #0d6efd);
  padding:25px 0 20px;
  color: #fff;
}

.live-hero .container{
  max-width:1400px;
}


.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.badge-live-status {
  background: #dc2626;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.badge-live-date {
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.hero-title{
  width:100%;
  max-width:none;
  font-size:27px;
  line-height:1.2;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 14px;
}

.hero-card {
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Instructor */
.instructor-wrap {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.instructor-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;

  border: 3px solid #fff;
}

.instructor-card .label {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.8;
}

.designation {
  font-size: 14px;
  opacity: 0.9;
}

/* Details */
.details-card .recording-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.details-card .recording-header h4 {
  margin: 0;
  font-weight: 600;
}

.detail-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.detail-item i {
  font-size: 18px;
  background: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 50%;
}

.detail-item p {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

.detail-item strong {
  font-size: 14px;
}

/* Guarantee */
.guarantee-img {
  max-width: 140px;
  margin-bottom: 12px;
}

.refund-link {
  font-size: 14px;
  opacity: 0.9;
}
.hero-inner{
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
}

.refund-tooltip-wrapper{
  position:relative;
  display:inline-block;
  cursor:pointer;
}

/* tooltip card */
.refund-tooltip{
  position:absolute;
  bottom:140%;
  left:50%;
  transform:translateX(-50%) translateY(10px);
  width:300px;

  background:#0f172a;
  color:#cbd5e1;

  border-radius:14px;
  padding:18px;

  box-shadow:0 20px 50px rgba(0,0,0,.4);

  opacity:0;
  pointer-events:none;
  transition:.25s;
  z-index:50;
}

/* arrow */
.refund-tooltip::after{
  content:"";
  position:absolute;
  bottom:-8px;
  left:50%;
  transform:translateX(-50%);
  border-width:8px;
  border-style:solid;
  border-color:#0f172a transparent transparent transparent;
}

/* show on hover */
.refund-tooltip-wrapper:hover .refund-tooltip{
  opacity:1;
  transform:translateX(-50%) translateY(0);
  pointer-events:auto;
}

/* title */
.tooltip-title{
  font-weight:600;
  margin-bottom:10px;
  display:flex;
  gap:8px;
  align-items:center;
  color:#e2e8f0;
}

/* list */
.refund-tooltip ul{
  padding-left:18px;
  margin:0 0 12px;
}

.refund-tooltip li{
  font-size:12px;
  margin-bottom:6px;
}

/* link */
.refund-tooltip a{
  color:#60a5fa;
  font-size:12px;
  text-decoration:none;
}

.refund-tooltip a:hover{
  text-decoration:underline;
}


/* Responsive */
@media (max-width: 992px) {
    .details-grid {
  grid-template-columns: 1fr;
}
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 26px;
    text-wrap:balance;
  }
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}



  /* MAIN CONTAINER */
  .main-container {
    width: 100%;
    padding: 0.8rem 3%; /* Reduced padding */
  }

  /* PRICING SECTION - reduced height */
  .pricing-wrapper {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12);
    margin-bottom: 1.1rem; /* Reduced */
    border: 2px solid var(--border-color);
    width: 100%;
  }

  .pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.9rem; /* Reduced */
    text-align: center;
  }

  .pricing-header h4 {
    font-size: 1.25rem; /* Slightly smaller */
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }

  .pricing-form {
    background: white;
    padding: 1.2rem; /* Reduced */
  }

  .pricing-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem; /* Reduced */
    margin-bottom: 0.9rem; /* Reduced */
  }

  .pricing-column-title {
    display:flex;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.7rem; /* Reduced */
    justify-content: center;
    gap: 8px;
  }

  .pricing-column-title i{
  font-size:18px;
  color:var(--primary-color);
}

  .pricing-option-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 0.65rem; /* Reduced */
    margin-bottom: 0.4rem; /* Reduced */
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
  }

  .pricing-option-label:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 14px rgba(2, 132, 199, 0.16);
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    transform: translateY(-1px);
  }

  .pricing-option-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    margin-right: 0.7rem;
  }

  .pricing-text {
    font-size: 0.95rem; /* Slightly smaller */
    font-weight: 500;
    color: var(--text-dark);
  }

  .pricing-amount {
    font-size: 1.1rem; /* Slightly smaller */
    font-weight: 600;
    color: var(--primary-color);
  }

  /* TOTAL AMOUNT SECTION - reduced height */
  .total-amount-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    padding: 0.7rem; /* Reduced */
    text-align: center;
    margin: 0.6rem; /* Reduced */
    border: 1px solid var(--border-color);
    color: white;
  }

  .total-label {
    font-size: 0.82rem; /* Slightly smaller */
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.3rem; /* Reduced */
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .total-amount-display {
    font-size: 2.0rem; /* Slightly smaller */
    font-weight: 600;
    color: #ffffff;
  }

  .total-amount-display small {
    font-size: 0.95rem; /* Slightly smaller */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.4rem; /* Reduced */
  }

  /* CTA BUTTONS - reduced spacing */
  .cta-buttons {
    display: flex;
    gap: 0.6rem; /* Reduced */
    justify-content: center;
    margin-top: 0.7rem; /* Reduced */
    flex-wrap: wrap;
  }

  .btn-custom {
    padding: 0.80rem 2rem; /* Slightly reduced */
    font-size: 1.0rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.03em;
  }

  .btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }

  .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(2, 132, 199, 0.25);
  }

  .btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 5px 18px rgba(2, 132, 199, 0.25);
  }

  .btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 24px rgba(2, 132, 199, 0.32);
  }

  /* SUBSCRIPTION SECTION */
  .subscription-container {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12);
    margin-bottom: 1rem; /* Reduced */
    border: 2px solid var(--border-color);
    width: 100%;
  }

  .subscription-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.7rem; /* Reduced */
    text-align: center;
  }

  .subscription-header h4 {
    font-size: 1.1rem; /* Slightly smaller */
    font-weight: 600;
    margin: 0;
  }

  .subscription-body {
    background: white;
    padding: 1rem; /* Reduced */
  }

  .subscription-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem; /* Reduced */
    margin-bottom: 0.5rem; /* Reduced */
  }

  .subscription-option {
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    padding: 0.6rem; /* Reduced */
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
  }

  .subscription-option:hover {
    border-color: #10b981;
    box-shadow: 0 5px 16px rgba(16, 185, 129, 0.12);
    transform: translateY(-1px);
  }

  .subscription-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 0.9rem;
    accent-color: #10b981;
    cursor: pointer;
  }

  .subscription-option.highlighted {
    background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 100%);
    border-color: #10b981;
  }

  .subscription-option-content {
    display: flex;
    align-items: center;
    gap: 1.0rem;
  }

  .subscription-option-text h6 {
    font-size: 0.98rem; /* Slightly smaller */
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }

  .subscription-option-text small {
    color: var(--text-muted);
    font-size: 0.88rem; /* Slightly smaller */
    font-weight: 500;
  }

  .subscription-price {
    font-size: 1.15rem; /* Slightly smaller */
    font-weight: 600;
    color: #10b981;
  }

  .btn-subscription {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.8rem 2.5rem; /* Slightly reduced */
    font-size: 1.0rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: block;
    margin: 0.9rem auto 0; /* Reduced */
    box-shadow: 0 5px 18px rgba(16, 185, 129, 0.2);
  }

  .btn-subscription:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 24px rgba(16, 185, 129, 0.25);
  }

  /* WEBINAR DETAILS SECTION */
  .details-container {
    margin-bottom: 1.8rem; /* Reduced */
  }

  .section-header {
    margin-bottom: 1.3rem; /* Reduced */
  }

  .section-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.35rem;
  }

  .section-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
  }

  .section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
  }

  /* OVERVIEW SECTION */
  .overview-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: 14px;
    padding: 1.5rem; /* Reduced */
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.6rem; /* Reduced */
  }

  .overview-box h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.7rem; /* Reduced */
  }

  .overview-content {
    color: var(--text-dark);
    font-size: 1.02rem;
    line-height: 1.7;
    font-weight: 500;
  }

  /* THREE COLUMN SECTIONS */
  .detail-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem; /* Reduced */
    margin-bottom: 1.8rem; /* Reduced */
  }

  .detail-column {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    border-radius: 14px;
    padding: 1.4rem; /* Reduced */
    border: 2px solid var(--border-color);
    transition: all 0.25s ease;
  }

  .detail-column:hover {
    border-color: var(--primary-color);
    box-shadow: 0 7px 20px rgba(2, 132, 199, 0.12);
    transform: translateY(-2px);
  }

  .detail-column-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.0rem;
  }

  .detail-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.2), rgba(56, 189, 248, 0.2));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
  }

  .webinar-list {
    color: var(--text-dark);
    font-size: 1.0rem;
    line-height: 1.7;
    font-weight: 500;
  }

  .webinar-list ul {
    list-style: none;
  }

  .webinar-list li {
    margin-bottom: 0.7rem;
    padding-left: 1.6rem;
    position: relative;
  }

  .webinar-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.0rem;
  }

  /* SPEAKER SECTION */
  .speaker-card {
    background: white;
    border-radius: 18px;
    border: 2px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12);
    overflow: hidden;
    width: 100%;
  }

  .speaker-header {
    border-bottom: 2px solid var(--border-color);
    padding: 1.0rem; /* Reduced */
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  }

  .speaker-header h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin: 0;
  }

  .speaker-header i {
    color: var(--primary-color);
    font-size: 1.25rem;
  }

  .speaker-body {
    padding: 1.8rem; /* Reduced */
  }

  .speaker-grid {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 2.0rem; /* Reduced */
    align-items: start;
  }

  .speaker-image-wrapper {
    text-align: center;
  }

  .speaker-photo {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    /* object-fit: cover; */
    border: 3px solid var(--primary-color);
    margin-bottom: 0.9rem;
    box-shadow: 0 7px 22px rgba(2, 132, 199, 0.25);
  }

  .verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
  }

  .speaker-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
  }

  .speaker-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.0rem;
    color: var(--text-muted);
    font-size: 0.96rem;
    font-weight: 500;
  }

  .speaker-meta i {
    color: var(--primary-color);
    margin-right: 0.35rem;
  }

  .speaker-bio {
    color: var(--text-dark);
    font-size: 1.0rem;
    line-height: 1.7;
    font-weight: 500;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero-info-bar {
      grid-template-columns: 1.1fr 1.4fr;
      grid-template-rows: auto auto;
    }

    .hero-info-bar > .money-back-section {
      grid-column: 1 / -1;
      flex-direction: row;
      justify-content: center;
      gap: 1.0rem;
    }

    .header-top-row {
      flex-direction: column;
      align-items: flex-start;
    }

    .header-title {
      font-size: 1.7rem;
    }

    .pricing-columns {
      grid-template-columns: 1fr;
    }

    .detail-columns {
      grid-template-columns: 1fr;
    }

    .subscription-grid {
      grid-template-columns: 1fr;
    }

    .speaker-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .webinar-header {
      padding: 1.0rem 0 1.5rem; /* Reduced */
    }

    .header-inner {
      padding: 0 2%;
    }

    .header-title {
      font-size: 1.5rem;
    }

    .hero-info-bar {
      grid-template-columns: 1fr;
      gap: 1.0rem; /* Reduced */
    }

    .main-container {
      padding: 1.5rem 2%; /* Reduced */
    }

    .pricing-form {
      padding: 1.3rem; /* Reduced */
    }

    .pricing-columns {
      gap: 1.0rem; /* Reduced */
      margin-bottom: 1.1rem; /* Reduced */
    }

    .cta-buttons {
      gap: 0.7rem; /* Reduced */
      margin-top: 1.1rem; /* Reduced */
    }

    .btn-custom {
      padding: 0.8rem 1.8rem; /* Reduced */
      font-size: 0.98rem;
      flex: 1;
      min-width: 120px;
    }

    .subscription-body {
      padding: 1.3rem; /* Reduced */
    }

    .subscription-grid {
      gap: 0.9rem; /* Reduced */
      margin-bottom: 0.9rem; /* Reduced */
    }

    .total-amount-display {
      font-size: 1.9rem; /* Slightly smaller */
    }

    .overview-box {
      padding: 1.3rem; /* Reduced */
      margin-bottom: 1.4rem; /* Reduced */
    }

    .details-container {
      margin-bottom: 1.4rem; /* Reduced */
    }

    .speaker-body {
      padding: 1.4rem; /* Reduced */
    }

    .speaker-grid {
      gap: 1.4rem; /* Reduced */
    }

    .section-header {
      margin-bottom: 1.0rem; /* Reduced */
    }
  }

  @media (max-width: 480px) {
    .webinar-header {
      padding: 0.8rem 0 1.2rem; /* Reduced */
    }

    .header-inner {
      padding: 0 2%;
    }

    .header-title {
      font-size: 1.3rem;
    }

    .header-top-row {
      gap: 0.7rem;
    }

    .header-badges {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      gap: 0.45rem;
    }

    .hero-info-bar {
      gap: 0.8rem; /* Reduced */
    }

    .instructor-photo {
      width: 80px; /* Slightly smaller */
      height: 80px; /* Slightly smaller */
    }

    .main-container {
      padding: 1.0rem 2%; /* Reduced */
    }

    .pricing-form {
      padding: 1.0rem; /* Reduced */
    }

    .detail-columns {
      gap: 0.9rem; /* Reduced */
      margin-bottom: 1.3rem; /* Reduced */
    }

    .detail-column {
      padding: 1.1rem; /* Reduced */
    }

    .cta-buttons {
      flex-direction: column;
      gap: 0.5rem; /* Reduced */
      margin-top: 0.9rem; /* Reduced */
    }

    .btn-custom {
      width: 100%;
      padding: 0.85rem 1.3rem; /* Reduced */
      font-size: 0.98rem;
    }

    .total-amount-display {
      font-size: 1.7rem; /* Slightly smaller */
    }

    .section-title {
      font-size: 1.18rem;
    }

    .overview-box {
      padding: 1.1rem; /* Reduced */
      margin-bottom: 1.1rem; /* Reduced */
    }

    .speaker-photo {
      width: 118px;
      height: 118px;
    }

    .speaker-info h4 {
      font-size: 1.15rem;
    }

    .subscription-grid {
      gap: 0.7rem; /* Reduced */
    }

    .subscription-option {
      padding: 1.0rem; /* Reduced */
      flex-direction: column;
      text-align: center;
    }

    .subscription-option-content {
      flex-direction: column;
      gap: 0.7rem; /* Reduced */
      width: 100%;
    }

    .btn-subscription {
      width: 100%;
      margin: 0.9rem 0 0; /* Reduced */
      padding: 0.8rem 1.3rem; /* Reduced */
      font-size: 0.98rem;
    }
  }