* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1B3A8C;
  --primary-dark: #142D6E;
  --accent: #fd5f07;
  --accent-dark: #d94f00;
  --neutral: #e0e6ec;
  --secondary: #EEF2FA;
  --text-primary: #1B3A8C;
  --text-secondary: #ddd;
  --shadow-primary: 0 0px 0px 0 rgb(27 58 140 / 10%), 0 0 2px 0 rgb(27 58 140 / 10%), 0 2px 0px 0 rgb(27 58 140 / 20%);
  --gradient-primary: linear-gradient(90deg, var(--primary) 1.82%, #2B5EC2 98.91%);
  --gradient-card: linear-gradient(-45deg, var(--neutral) 1%, var(--secondary) 99%);
  --bg-page: #fafafa;
  --radius: 14px;

  --bg-body: #fafafa;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-surface: #f8fafc;
  --bg-input: #f8fafc;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-border: rgba(27, 58, 140, 0.06);
  --dropdown-bg: #ffffff;
  --hero-from: #EEF2FA;
  --hero-to: #DCE4F5;
  --section-alt: #ffffff;
  --modal-bg: #ffffff;
}

/* Utility classes */
.bg-primary { background-color: var(--primary) !important; }
.bg-gradient { background: var(--gradient-primary); }
.bg-neutral { background-color: var(--neutral) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.text-primary { color: var(--primary) !important; }
.text-neutral { color: var(--neutral) !important; }
.text-secondary { color: var(--secondary) !important; }
.shadow-primary { box-shadow: var(--shadow-primary); }
.form-wrap { border-radius: 1rem; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-body);
  color: var(--text-body);
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body > .ce-footer { margin-top: auto; }

/* Scroll to Top / Bottom */
.scroll-btns {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.scroll-btns.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.scroll-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(27,58,140,0.25);
}

.scroll-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

@media (max-width: 575.98px) {
  .scroll-btns { bottom: 16px; left: 16px; }
  .scroll-btn { width: 38px; height: 38px; }
}

.wrapper { padding: 4rem 0; }
.post { padding: 1rem; }

/* ═══════════════════════════════════════════
   HEADER — ConferenceEarth
   ═══════════════════════════════════════════ */
.ce-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.ce-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.ce-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.ce-header__brand img {
  height: 65px;
  width: auto;
}

.ce-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ce-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  position: relative;
}

.ce-nav-link:hover {
  color: var(--primary);
  background: var(--secondary);
  text-decoration: none;
}

.ce-nav-link.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--secondary);
}

.ce-nav-dropdown {
  position: relative;
}

.ce-dropdown-menu {
  border: 0 !important;
  border-radius: 16px !important;
  padding: 8px !important;
  background: var(--dropdown-bg) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04) !important;
  min-width: 280px !important;
  margin-top: 8px !important;
}

.ce-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px !important;
  border-radius: 12px !important;
  color: #1f2937 !important;
  text-decoration: none !important;
  transition: background 0.15s ease;
}

.ce-dropdown-item:hover {
  background: var(--secondary) !important;
}

.ce-dropdown-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}

.ce-dropdown-item small {
  display: block;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
}

.ce-dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ce-dropdown-icon--live {
  background: #fef2f2;
  color: #dc2626;
}

.ce-dropdown-icon--rec {
  background: #f0fdf4;
  color: #16a34a;
}

.ce-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ce-search {
  position: relative;
  display: flex;
  align-items: center;
}

.ce-search__input {
  height: 38px;
  width: 200px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 13px;
  background: var(--bg-input);
  color: var(--text-body);
  outline: none;
  transition: all 0.2s ease;
}

.ce-search__input:focus {
  width: 260px;
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(27, 58, 140, 0.08);
}

.ce-search__btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ce-header__icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.ce-header__icon:hover {
  color: var(--primary);
  background: var(--secondary);
  text-decoration: none;
}

.ce-header__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ce-header__login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.ce-header__login:hover {
  background: #142D6E;
  text-decoration: none;
  color: #fff !important;
}

.ce-header__toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
}

/* Mobile Nav */
.ce-mobile-nav {
  border-top: 1px solid var(--border-light);
  padding: 16px 0;
  background: var(--bg-card);
}

.ce-mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
}

.ce-mobile-link:hover,
.ce-mobile-link.active {
  color: var(--primary);
  text-decoration: none;
}

.ce-mobile-link--cta {
  margin-top: 12px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  border: 0;
  font-weight: 600;
}

.ce-mobile-link--cta:hover {
  color: #fff;
}

.ce-mobile-search {
  position: relative;
  margin-bottom: 12px;
}

.ce-mobile-search__input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  background: var(--bg-input);
  color: var(--text-body);
}

.ce-mobile-search__btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .ce-dropdown-menu.dropdown-menu {
    display: none;
  }
  .ce-nav-dropdown:hover .ce-dropdown-menu.dropdown-menu,
  .ce-nav-dropdown.is-open .ce-dropdown-menu.dropdown-menu {
    display: block;
  }
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.ce-hero {
  padding: 80px 0 48px;
  position: relative;
  overflow: hidden;
  background: var(--bg-body);
}

.ce-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ce-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ce-hero__orb--1 {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -80px;
  background: rgba(27, 58, 140, 0.08);
}

.ce-hero__orb--2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -60px;
  background: rgba(27, 58, 140, 0.05);
}

.ce-hero__orb--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 45%;
  background: rgba(27, 58, 140, 0.03);
}

.ce-hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.ce-hero__content {
  position: relative;
  z-index: 1;
}

.ce-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--secondary);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.ce-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  animation: wgc-pulse 1.5s ease-in-out infinite;
}

.ce-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.ce-hero__highlight {
  color: var(--primary);
  position: relative;
}

.ce-hero__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.ce-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ce-hero__btn-primary {
  min-height: 48px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 12px;
}

.ce-hero__btn-outline {
  min-height: 48px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 12px;
}

/* Hero right — floating cards */
.ce-hero__visual {
  position: relative;
  height: 380px;
  z-index: 1;
}

.ce-hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  min-width: 260px;
  animation: ce-float 6s ease-in-out infinite;
}

.ce-hero__card strong {
  display: block;
  font-size: 14px;
  color: var(--text-heading);
}

.ce-hero__card small {
  font-size: 12px;
  color: var(--text-faint);
}

.ce-hero__card--1 { top: 20px; right: 0; animation-delay: 0s; }
.ce-hero__card--2 { top: 140px; right: 40px; animation-delay: -2s; }
.ce-hero__card--3 { top: 260px; right: 10px; animation-delay: -4s; }

@keyframes ce-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ce-hero__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ce-hero__card-icon--green { background: #f0fdf4; color: #16a34a; }
.ce-hero__card-icon--blue { background: #EEF2FA; color: #1B3A8C; }
.ce-hero__card-icon--amber { background: #fffbeb; color: #d97706; }

/* Trust bar */
.ce-hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.ce-hero__trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ce-hero__trust-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ce-hero__trust-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 999px;
}

@media (max-width: 991.98px) {
  .ce-hero__visual {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .ce-hero {
    padding: 48px 0 36px;
  }

  .ce-hero__title {
    font-size: 1.8rem;
  }

  .ce-hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 32px;
  }
}

/* Hero social proof strip */
.ce-hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.ce-hero__avatars {
  display: flex;
}

.ce-hero__avatar-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--bg-body);
  margin-right: -8px;
  position: relative;
}

.ce-hero__avatar-dot:nth-child(1) { background: #1B3A8C; z-index: 4; }
.ce-hero__avatar-dot:nth-child(2) { background: #1B3A8C; z-index: 3; }
.ce-hero__avatar-dot:nth-child(3) { background: #16a34a; z-index: 2; }
.ce-hero__avatar-dot:nth-child(4) { background: #d97706; z-index: 1; }

.ce-hero__proof-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 4px;
}

.ce-hero__proof-text strong {
  color: var(--text-heading);
}

/* ═══════════════════════════════════════════
   VALUE PROPOSITIONS
   ═══════════════════════════════════════════ */
.ce-values {
  padding: 56px 0;
  background: var(--section-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.ce-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ce-value {
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.ce-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: var(--primary);
}

.ce-value__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ce-value__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 8px;
}

.ce-value__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .ce-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .ce-values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ce-values {
    padding: 40px 0;
  }

  .ce-value {
    padding: 20px 16px;
  }
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.ce-section {
  padding: 64px 0;
}

.ce-section--alt {
  background: var(--section-alt);
}

.ce-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ce-section__header-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ce-section__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ce-section__icon--live {
  background: #fef2f2;
  color: #dc2626;
}

.ce-section__icon--rec {
  background: #f0fdf4;
  color: #16a34a;
}

.ce-section__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0;
  line-height: 1.2;
}

.ce-section__desc {
  font-size: 14px;
  color: var(--text-faint);
  margin: 4px 0 0;
}

.ce-empty {
  text-align: center;
  padding: 72px 20px;
  color: var(--text-faint);
  width: 100%;
}

.ce-empty__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--text-faint);
}

.ce-empty h4 {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 6px;
}

.ce-empty p {
  font-size: 14px;
  margin: 0;
  color: var(--text-faint);
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.ce-cta {
  padding: 0 0 72px;
}

.ce-cta__inner {
  background: var(--primary);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.ce-cta__inner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.ce-cta__inner::after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.ce-cta__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.ce-cta__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.ce-cta__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}

.ce-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.main-btn.ce-cta__btn {
  background: #fff !important;
  color: #1B3A8C !important;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.3);
}

.main-btn.ce-cta__btn:hover {
  background: var(--secondary) !important;
  color: #142D6E !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.ce-cta__link {
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.ce-cta__link:hover {
  color: #fff !important;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .ce-cta__inner {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ce-cta__title {
    font-size: 22px;
  }

  .ce-cta__actions {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   FOOTER — ConferenceEarth
   ═══════════════════════════════════════════ */
.ce-footer {
  background: var(--bg-card);
  color: var(--text-body);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.ce-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(27, 58, 140, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.ce-footer__top {
  padding: 56px 0 40px;
  position: relative;
  z-index: 1;
}

.ce-footer__brand { margin-bottom: 20px; }

.ce-footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: none;
  opacity: 1;
}

.ce-footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
}

.ce-footer__social { display: flex; gap: 10px; margin-top: 20px; }

.ce-footer__social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-faint); text-decoration: none; transition: all 0.2s ease;
}

.ce-footer__social a:hover {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

.ce-footer__heading {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px;
}

.ce-footer__links { list-style: none; padding: 0; margin: 0; }
.ce-footer__links li { margin-bottom: 10px; }

.ce-footer__links a {
  color: var(--text-muted) !important;
  text-decoration: none; font-size: 14px; transition: color 0.2s ease;
}

.ce-footer__links a:hover { color: var(--primary) !important; }

.ce-footer__contact { display: flex; flex-direction: column; gap: 14px; }

.ce-footer__contact-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-muted);
}

.ce-footer__contact-row svg {
  flex-shrink: 0; margin-top: 2px; color: var(--primary);
}

.ce-footer__contact-row a {
  color: var(--text-muted) !important; text-decoration: none;
}

.ce-footer__contact-row a:hover { color: var(--primary) !important; }

.ce-footer__payment { margin-top: 24px; }

.ce-footer__payment-label {
  font-size: 12px; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.08em;
  display: block; margin-bottom: 10px;
}

.ce-footer__payment-icons { display: flex; gap: 12px; }
.ce-footer__payment-icons span { font-size: 24px; color: var(--text-faint); }

/* Newsletter Bar */
.ce-footer__newsletter {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.ce-footer__newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}

.ce-footer__newsletter-text strong {
  font-size: 15px; font-weight: 700; color: var(--text-heading); display: block;
}

.ce-footer__newsletter-text span {
  font-size: 13px; color: var(--text-muted);
}

.ce-footer__newsletter-form {
  display: flex; gap: 8px; flex-shrink: 0;
}

.ce-footer__newsletter-form input {
  height: 42px; width: 240px; padding: 0 14px;
  border: 1.5px solid var(--border-color); border-radius: 8px;
  font-size: 13px; background: var(--bg-surface); color: var(--text-body); outline: none;
}

.ce-footer__newsletter-form input:focus { border-color: var(--primary); }
.ce-footer__newsletter-form input::placeholder { color: var(--text-faint); }

.ce-footer__newsletter-form button {
  height: 42px; padding: 0 20px; border: 0; border-radius: 8px;
  background: var(--primary); color: #fff; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}

.ce-footer__newsletter-form button:hover { background: var(--primary-dark); }

/* Bottom bar */
.ce-footer__bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0; font-size: 13px;
  color: var(--text-faint); position: relative; z-index: 1;
}

.ce-footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}

.ce-footer__bottom a {
  color: var(--text-muted) !important; text-decoration: none;
}

.ce-footer__bottom a:hover { color: var(--primary) !important; }

.ce-footer__bottom-links {
  display: flex; gap: 16px;
}

.ce-footer__bottom-links a {
  font-size: 13px; font-weight: 500;
}

@media (max-width: 575.98px) {
  .ce-footer__newsletter-inner { flex-direction: column; text-align: center; }
  .ce-footer__newsletter-form { width: 100%; }
  .ce-footer__newsletter-form input { flex: 1; width: auto; }
  .ce-footer__bottom-inner { justify-content: center; flex-direction: column; gap: 6px; text-align: center; }
}

/* Header scroll effect */
@media (min-width: 1px) {
  .ce-header {
    animation: none;
  }
}

label {
  padding: 0 !important;
}


/* navbar  */
.container-fluid {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
}

@media (max-width: 991px) {
  .container-fluid {
    width: 100%;
  }
}

.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 24px; }

.cont {
  width: 98%;
  margin: auto;
}

.brder {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(209, 213, 219) 0px 0px 0px 1px inset;
  background: white;
  padding: 2%;
}

.navbar-collapse {
  padding-right: 0px !important;
  padding-left: 0px !important;
}




.webinar-card {
  padding: 20px 24px;
  background-color: var(--bg-card);
  display: block;
  position: relative;
  margin: 10px 0;
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.webinar-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.webinar-card .title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  transition: color 0.2s ease;
}

.webinar-card .title a:hover {
  color: var(--primary);
}

.webinar-card .speaker-name {
  color: var(--primary) !important;
  text-decoration: none;
  font-weight: 500;
}

.webinar-layout-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.layout-btn {
  border: 1px solid #cfd7e3;
  background: #fff;
  color: #415164;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.webinar-layout {
  width: 100%;
  padding-bottom: 2rem;

}

.layered-bg {
  padding: 56px 0;
}

/* ═══════════════════════════════════════════
   WEBINAR LISTING PAGE — Hero + Grid
   ═══════════════════════════════════════════ */
.wlp-hero {
  padding: 0 0 36px;
  background: linear-gradient(160deg, #0d1b3e 0%, var(--primary) 50%, #142D6E 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wlp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 350px at 85% 30%, rgba(253,95,7,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.wlp-hero--rec::before {
  background: radial-gradient(ellipse 500px 350px at 85% 30%, rgba(0,180,216,0.10) 0%, transparent 60%);
}

.wlp-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.wlp-bread {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 18px 0 20px;
}

.wlp-bread a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 500;
}

.wlp-bread a:hover { color: #fff; text-decoration: none; }
.wlp-bread svg { color: rgba(255,255,255,0.3); }
.wlp-bread span { color: rgba(255,255,255,0.8); font-weight: 600; }

.wlp-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.wlp-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 480px;
  line-height: 1.6;
}

.wlp-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.wlp-hero__count {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 999px;
}

.wlp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
}

.wlp-hero__badge--live {
  background: rgba(220,38,38,0.2);
  color: #fca5a5;
  border: 1px solid rgba(220,38,38,0.3);
}

.wlp-hero__badge--rec {
  background: rgba(0,180,216,0.15);
  color: #99f6e4;
  border: 1px solid rgba(0,180,216,0.25);
}

.wlp-hero__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f87171;
  animation: wgc-pulse 1.5s ease-in-out infinite;
}

/* Content area */
.wlp-content {
  padding: 36px 0 64px;
  background: var(--bg-body);
}

/* Empty state */
.wlp-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 420px;
  margin: 0 auto;
}

.wlp-empty__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wlp-empty h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 8px;
}

.wlp-empty p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* Pagination wrapper */
.wlp-pagination {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

@media (max-width: 767.98px) {
  .wlp-hero__inner { flex-direction: column; align-items: flex-start; }
  .wlp-hero__title { font-size: 1.4rem; }
  .wlp-content { padding: 24px 0 48px; }
}

.webinar-layout.is-list .live-webinar-grid,
.webinar-layout.is-list .recorded-webinar-grid {
  display: none;
}

.webinar-layout.is-grid .live-webinar-list,
.webinar-layout.is-grid .recorded-webinar-list {
  display: none;
}

.live-webinar-grid {
  margin-top: 10px;
}

/* ── Webinar Grid Card (new design) ── */
/* ═══════════════════════════════════════════
   WEBINAR GRID CARD — Ticket Style
   ═══════════════════════════════════════════ */
.wgc-item {
  padding: 0 12px 24px;
  display: flex;
}

.wgc-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.wgc-link:hover {
  text-decoration: none;
  color: inherit;
}

.wgc {
  background: var(--bg-card);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  height: 100%;
}

.wgc:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(27, 58, 140, 0.10),
    0 8px 16px rgba(27, 58, 140, 0.06);
  border-color: rgba(27, 58, 140, 0.15);
}

/* Left accent stripe */
.wgc__stripe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wgc--live .wgc__stripe {
  background: linear-gradient(180deg, #dc2626 0%, #f97316 100%);
}

.wgc--recorded .wgc__stripe {
  background: linear-gradient(180deg, var(--primary) 0%, #00B4D8 100%);
}

.wgc:hover .wgc__stripe {
  width: 6px;
}

/* Date block — left side */
.wgc__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  max-width: 80px;
  padding: 24px 8px;
  margin: 16px 0 16px 16px;
  border-radius: 14px;
  flex-shrink: 0;
  position: relative;
  text-align: center;
}

.wgc--live .wgc__date-block {
  background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
  border: 1px solid #fecaca;
}

.wgc--recorded .wgc__date-block {
  background: linear-gradient(135deg, var(--secondary) 0%, #DCE4F5 100%);
  border: 1px solid rgba(27, 58, 140, 0.12);
}

.wgc__date-day {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.wgc--live .wgc__date-day {
  color: #dc2626;
}

.wgc--recorded .wgc__date-day {
  color: var(--primary);
}

.wgc__date-month {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.wgc--live .wgc__date-month {
  color: #92400e;
}

.wgc--recorded .wgc__date-month {
  color: var(--text-muted);
}

.wgc__date-icon {
  margin-bottom: 4px;
}

.wgc--recorded .wgc__date-icon {
  color: var(--primary);
}

/* Body — right side content */
.wgc__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px 22px 20px;
  min-width: 0;
}

/* Top: badge + countdown */
.wgc__top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wgc__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.wgc__badge--live {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.wgc__badge--recorded {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.wgc__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  animation: wgc-pulse 1.5s ease-in-out infinite;
}

@keyframes wgc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.wgc__countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #92400e;
  background: #fef3c7;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #fde68a;
}

.wgc__countdown svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Title */
.wgc__title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-heading);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.wgc:hover .wgc__title {
  color: var(--primary);
}

/* Meta pills */
.wgc__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wgc__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.wgc__meta-item svg {
  color: var(--text-faint);
  flex-shrink: 0;
}

/* Footer: speaker + CTA */
.wgc__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.wgc__speaker {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.wgc__speaker-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
  transition: border-color 0.3s ease;
}

.wgc:hover .wgc__speaker-avatar {
  border-color: var(--primary);
}

.wgc__speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wgc__speaker-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}

.wgc__speaker-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wgc__speaker-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.wgc__speaker-role {
  font-size: 11px;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA pill */
.wgc__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--secondary);
  padding: 6px 14px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.wgc__cta svg {
  transition: transform 0.3s ease;
}

.wgc:hover .wgc__cta {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.wgc:hover .wgc__cta svg {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .wgc-item {
    padding: 0 0 16px;
  }

  .wgc-item.col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 575.98px) {
  .wgc {
    flex-direction: column;
    border-radius: 16px;
  }

  .wgc__stripe {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100% !important;
    height: 4px;
  }

  .wgc:hover .wgc__stripe {
    width: 100% !important;
    height: 5px;
  }

  .wgc__date-block {
    flex-direction: row;
    min-width: unset;
    max-width: unset;
    margin: 12px 16px 0;
    padding: 10px 16px;
    gap: 8px;
    border-radius: 10px;
  }

  .wgc__date-day {
    font-size: 24px;
  }

  .wgc__date-month {
    margin-top: 0;
  }

  .wgc__body {
    padding: 14px 16px 18px;
  }

  .wgc__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .wgc__cta {
    justify-content: center;
    padding: 8px 16px;
  }
}

@media (max-width: 575.98px) {
  .wgc {
    padding: 18px;
  }

  .wgc__title {
    font-size: 15px;
  }

  .webinar-layout-toggle {
    width: 100%;
    justify-content: flex-start;
  }
}
.gap-4 {
  gap: 12px
}

.Instructor {
  padding: 4rem 0;
}

.date-picker {
  width: 90px;
  border-radius: 14px;
  background: var(--secondary);
  text-align: center;
  margin: 0 auto;
  padding: 12px 8px;
  font-weight: 600;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.date-picker .year,
.date-picker .month {
  color: #6b7280;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.date-picker .day {
  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

@media(max-width: 578px) {
  .date-picker {
    margin: 0;
    margin-bottom: 1rem;
  }
}

.date-picker p {
  margin: 0px;
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.search-empty__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid #e6ebf2;
  display: grid;
  place-items: center;
  color: #9aa3af;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 20, 26, 0.08);
}

.search-empty__icon i {
  font-size: 28px;
}

.search-empty__title {
  font-size: 22px;
  color: #475569;
  margin: 8px 0 0;
}

.search-empty__subtitle {
  color: #94a3b8;
  margin: 0 0 6px;
}

.search-empty__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-empty__tag {
  border: 1px solid #cfe1ff;
  color: #1B3A8C;
  background: #f5f9ff;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.search-empty__tag:hover {
  text-decoration: none;
  color: #142D6E;
  border-color: #b8d1ff;
}

.search-empty__cta {
  background: #1B3A8C;
  color: #fff;
  padding: 7px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.search-empty__cta:hover {
  text-decoration: none;
  color: #fff;
  background: #142D6E;
}

.Title-info ul {
  display: block;
}

.Title-info h6 {
  font-size: 16px;
  line-height: 24px;
  color: #4d618a;
  font-weight: 600;
}

.Title-info h5 {
  font-size: 16px;
  line-height: 24px;
  color: #4d618a;
  font-weight: 600;
}

.Title-info ul li {
  display: block;
  color: #333;
  line-height: 30px;
  font-weight: 500;
}

.webinar {
  /* padding: 20px 0px 0px 0px; */
  text-align: center;
  width: 180px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;

  .resp {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



}

/* ══════════════════════════════════════════
   SPEAKER CARD — Premium Design
   ══════════════════════════════════════════ */
.spk-col {
  margin-bottom: 32px;
}

.spk {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-body);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.spk:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(27, 58, 140, 0.15);
  border-color: var(--primary);
  text-decoration: none;
  color: var(--text-body);
}

.spk__visual {
  position: relative;
  overflow: hidden;
}

.spk__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-surface);
}

.spk__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.spk:hover .spk__img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.spk__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.spk:hover .spk__gradient {
  opacity: 1;
}

.spk__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.spk:hover .spk__overlay {
  opacity: 1;
  transform: translateY(0);
}

.spk__overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.spk__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.spk__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.spk__view-btn:hover {
  background: var(--primary);
  color: #fff;
}

.spk__info {
  padding: 18px 18px 20px;
  text-align: center;
  position: relative;
}

.spk__avatar-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--bg-card);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  margin: -44px auto 10px;
  position: relative;
  z-index: 2;
  background: var(--bg-card);
}

.spk__avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spk__name {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 575.98px) {
  .spk__img-wrap {
    aspect-ratio: 4 / 3;
  }

  .spk__info {
    padding: 14px 14px 16px;
  }

  .spk__avatar-ring {
    width: 44px;
    height: 44px;
    margin-top: -36px;
  }
}

/* ══════════════════════════════════════════
   SPEAKERS SECTION — Premium Layout
   ══════════════════════════════════════════ */
.ce-speakers-section {
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  background: var(--bg-body);
}

.ce-speakers-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ce-speakers-bg__shape {
  position: absolute;
  border-radius: 50%;
}

.ce-speakers-bg__shape--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(27, 58, 140, 0.05) 0%, transparent 70%);
}

.ce-speakers-bg__shape--2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(27, 58, 140, 0.04) 0%, transparent 70%);
}

.ce-speakers-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.ce-speakers-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.ce-speakers-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 10px;
}

.ce-speakers-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.ce-speakers-footer {
  text-align: center;
  margin-top: 16px;
}

.speaker-detail {
  padding: 24px;
}

.speaker-detail__card {
  background: #ffffff;
  border-radius: 28px;
  padding: 16px;
  text-align: left;
}

.speaker-detail__avatar {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
}

.speaker-detail__name {
  margin-left: 0;
  margin-bottom: 20px;
}

.speaker-detail__bio {
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.speaker-detail__bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .speaker-detail {
    padding: 40px 0 56px;
  }

  .speaker-detail__card {
    padding: 24px 22px 30px;
  }

  .speaker-detail__avatar {
    width: 120px;
    height: 120px;
  }

  .speaker-detail__bio {
    text-align: left;
  }

  .speaker-detail__name {
    margin-left: 0;
  }
}




.item {
  padding: 20px 20px 12px;
  background-color: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  display: block;
  position: relative;
  margin: 0px 10px px;
  width: 25rem;
}

.Title-info a h5 {
  font-size: 18px;
  line-height: 24px;
  color: #4d618a;
  font-weight: 600;
}

.Title-info a h5:hover {
  font-size: 18px;
  line-height: 24px;
  color: #4d618a;
  font-weight: 600;
  text-decoration: none;
}



.webinar-search-form {
  background-color: #ffffff;
  display: none;
}

.webinar-search-form form {
  padding: 15px;
}

.Search-form {
  float: left;
  width: 20%;
  padding-right: 15px;
}

.Search-form span {
  float: left;
}

.Search-form input {
  width: 100%;
  margin-right: 10px;
}

.webinar-search-form .search_results {
  background: #eaebf8;
  width: 100%;
}

.webinar-search-form .search_results span {
  color: #266dd4;
}

.Search-form span {
  float: left;
}

.sela {
  width: 100%;
  height: 33px;
}

#filter-button {
  font-size: 16px;
  margin-left: 30px;
  cursor: pointer;
  padding: 1px 6px 2px;
  background: #7b3ae7;
  color: #fff;
}

.pagination-numbers {
  float: right;
  margin: 0px;
  padding: 0px;
}

.pagination-numbers li {
  float: left;
  list-style: none;
  padding: 0px 10px;
}

.my-navigation div {
  float: left;
}

.my-navigation div+div {
  margin-left: 0.5rem;
}

.pagination-numbers {
  float: right;
  margin: 0px;
  padding: 0px;
}

.pagination-numbers>.simple-pagination-navigation-disabled {
  background: #55c904;
  color: #fff;
}

.simple-pagination-page-numbers a {
  border: 1px solid var(--text-secondary);
  margin-right: -1px;
  display: block;
  float: left;
  width: 2rem;
  text-align: center;
}

.simple-pagination-page-numbers a {
  border: 1px solid var(--text-secondary);
  margin-right: -1px;
  display: block;
  float: left;
  width: 2rem;
  text-align: center;
}

.pagination-box {
  background-color: #ffffff;
  padding: 15px;
  margin: 20px 0;
  overflow: hidden;
}


.section-heading {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.section-heading--speaker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding-right: 1.2rem;
}

.section-heading--speaker .section-heading__avatar {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, .2));
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
}

.section-heading--speaker .section-heading__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.fwid {
  width: 97%;
  margin: auto;
}

.confr {
  background: #e8e7ff;
  margin-left: -3%;
  margin-right: -3%;
  padding: 2%;
}

.about-section {
  background: #ffffff;
  padding: 16px;
  border: 1px solid var(--secondary);
  border-radius: 8px;
}


.category-badge {
  background-color: var(--secondary);
  color: var(--text-primary);
  padding: 2px 16px;
  border-radius: 1rem;
  margin-bottom: 8px;
  display: inline-block;
  font-size: 14px;
}

.event-title {
  font-weight: 600;
  font-size: 28px;
  color: var(--primary);
  width: 100%;
  margin-bottom: 2rem;
}


@media (min-width: 992px) {

  /* lg and up */
  .event-title {
    width: 60%;
  }
}


.meta-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.meta-table th {
  width: 120px;
  color: #1b2e25;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.meta-table td {
  color: #2f5140;
}

.trainer-pic {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.group-header {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
}

.option-row:last-child {
  border-bottom: none;
}

.option-row label {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: normal !important;
  padding: 2px 8px !important;
  font-size: 15px;
}

.opt-price {
  font-weight: 500;
  margin-left: 10px;
  margin-right: 14px;
  font-size: 14px;
  min-width: 70px;
  text-align: end;
  color: #2f5140;
}

.cta-wrap {
  padding: 14px;
  border-top: 1px solid #eef1f7;
}

.btn-cart {
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 700;
}

.btn-cart:hover {
  color: #fff;
  background: var(--secondary);
}

/* expert section */
.expert-wrap {
  border-top: 4px solid var(--secondary);
  margin-top: 24px;
  padding-top: 22px;
}

.expert-head {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 18px 0;
}

.expert-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

/* mobile spacing */
@media (max-width: 991.98px) {
  .order-card {
    margin-top: 16px;
  }
}



/* Button */
.main-btn {
  align-items: center;
  background-color: var(--primary);
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  color: #ffffff !important;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 42px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px 22px;
  text-align: center;
  touch-action: manipulation;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
  gap: 8px;
}

.main-btn:hover,
.main-btn:focus {
  background-color: #142D6E;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 58, 140, 0.25);
}

.main-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.main-btn:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}

.main-btn--outline {
  background: transparent;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
}

.main-btn--outline:hover {
  background: var(--primary);
  color: #fff !important;
}

.row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}



.conference-header__card {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 20, 26, 0.06);
  padding: 24px;
}

.conference-header__card--story {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: start;
}

.story-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story-action {
  max-width: 360px;
}

.story-action .action-card {
  margin-top: 6px;
}

.story-right {
  display: flex;
  justify-content: stretch;
  flex-direction: column;
  gap: 12px;
}


.conference-header .event-title {
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  margin: 2px 0 8px;
  color: #1b2430;
  line-height: 1.2;
}

.story-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 700;
}

.story-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.story-brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e3e3e3;
  background: #ffffff;
}

.story-brand__name {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e3b4e;
  font-weight: 600;
}

.story-speaker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 12px;
  border-left: 3px solid #1B3A8C;
  background: #f9f7f3;
}

.story-speaker__img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e3e3e3;
  background: #ffffff;
}

.story-speaker__name {
  font-weight: 600;
  color: #1B3A8C;
  font-size: 16px;
}

.story-speaker__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.story-speaker--hero {
  align-items: flex-start;
}

.story-speaker--hero .story-speaker__img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
}

.story-speaker--hero .story-speaker__name {
  font-size: 16px;
  padding-top: 0;
}

.story-coupon {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 88px;
  align-items: stretch;
  border: 1px solid #e6e1dc;
  background: #fbf7f2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(27, 58, 140, 0.08);
  position: relative;
  max-width: 400px;
}

.story-coupon::before,
.story-coupon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 1px solid #e6e1dc;
  border-radius: 50%;
  transform: translateY(-50%);
}

.story-coupon::before {
  left: 56px;
}

.story-coupon::after {
  right: 82px;
}

.story-coupon__ribbon {
  background: #1B3A8C;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.story-coupon__body {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
}

.story-coupon__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #1B3A8C;
  font-weight: 700;
}

.story-coupon__status {
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #1b2430;
  font-weight: 600;
}

.story-coupon__copy {
  border: 1px solid rgba(27, 58, 140, 0.2);
  background: #ffffff;
  color: #1B3A8C;
  padding: 4px 6px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.story-coupon__copy:hover {
  background: #1B3A8C;
  color: #ffffff;
  border-color: #1B3A8C;
  box-shadow: 0 6px 12px rgba(27, 58, 140, 0.2);
  transform: translateY(-1px);
}

.story-coupon__copy:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(27, 58, 140, 0.18);
}

.story-coupon__copy:focus-visible {
  outline: 2px solid #1B3A8C;
  outline-offset: 2px;
}

.story-coupon__copy.is-copied {
  background: #1b2430;
  border-color: #1b2430;
  color: #ffffff;
}

.story-coupon__name {
  font-weight: 700;
  color: #1b2430;
  font-size: 16px;
}

.story-coupon__meta {
  font-size: 12px;
  color: #6b7280;
}

.story-coupon__value {
  background: #1B3A8C;
  color: #ffffff;
  font-weight: 700;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #556476;
}

.story-meta--sub {
  color: #2c7a2f;
  font-weight: 600;
}

.story-meta__dot {
  color: #9aa6b2;
}

.story-info {
  background-image: linear-gradient(-90deg, #e6e5e4 0, #f5f5f5 52%, #e6e6e6 58%, #e9e9e9 63%, #f3f3f3 100%);
  border: 1px solid #e1e1e1;
  padding: 16px;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.story-info__row {
  display: block;
  padding: 0;
}

.story-info__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  display: block;
  margin-bottom: 4px;
}

.story-info__value {
  font-size: 14px;
  font-weight: 600;
  color: #1b2430;
  text-align: left;
}

.story-panel {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 24px 16px;
}

.webinar-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.webinar-desc ul {
  padding: 0rem 2rem;
  /* background: #f5f5f5; */
}

.webinar-desc img {
  max-width: 100%;
  height: auto;
}

.story-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e6e6e6;
}

.story-section__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.conf-speaker-panel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.conf-speaker-panel__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.conf-speaker-panel__bio {
  color: #4b5563;
  line-height: 1.7;
}

.speaker-bio-toggle {
  border: 0;
  background: transparent;
  color: #1B3A8C;
  font-weight: 600;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
}

.conf-speaker-panel__empty {
  color: #6b7280;
  font-style: italic;
}

.side-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 16px 16px 18px;
  position: relative;
}

.side-card__top {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: -16px 0px 12px;
}

.side-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.share-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.share-inline__btn {
  border: 0;
  width: 46px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.share-inline__btn:hover {
  text-decoration: none;
  opacity: 0.9;
}

.share-inline__btn--x {
  background: #111111;
}

.share-inline__btn--linkedin {
  background: #0a66c2;
}

.share-inline__btn--copy {
  background: #1B3A8C;
}

.share-inline__status {
  margin-top: 8px;
  font-size: 12px;
  color: #1B3A8C;
  min-height: 16px;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 14px;
  margin-bottom: 12px;
}

.share-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 12px;
}

.share-chip__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f5f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.share-chip--facebook .share-chip__icon {
  color: #1877f2;
}

.share-chip--linkedin .share-chip__icon {
  color: #0a66c2;
}

.share-chip--x .share-chip__icon {
  color: #111111;
}

.share-chip--whatsapp .share-chip__icon {
  color: #25d366;
}

.share-chip--gmail .share-chip__icon {
  color: #d93025;
}

.share-chip--reddit .share-chip__icon {
  color: #ff4500;
}

.share-chip:hover {
  text-decoration: none;
  color: #1B3A8C;
}

.share-copy {
  position: relative;
  display: flex;
  align-items: center;
}

.share-copy__input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 0 42px 0 10px;
  font-size: 12px;
  background: #ffffff;
}

.share-copy__btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #1B3A8C;
  color: #ffffff;
  cursor: pointer;
}

.action-card__coupon {
  width: 100%;
  height: 150px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

.action-card__coupon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.action-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-card__buttons--inline {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.action-card__buttons--inline .action-btn {
  flex: 1;
  min-width: 0;
  padding: 6px 8px;
  border-radius: 4px;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}

.action-card__buttons--inline .action-btn i {
  font-size: 13px;
}

.action-card__buttons--inline .action-btn--outline {
  border: 1px solid #1B3A8C;
  color: #1B3A8C;
  background: #ffffff;
}

.action-card__buttons--inline .action-btn--solid {
  background: #1B3A8C;
  color: #ffffff;
}

.action-card__buttons--inline .action-btn--solid:hover,
.action-card__buttons--inline .action-btn--outline:hover {
  opacity: 0.9;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.action-btn--outline {
  border: 1px solid #1b2430;
  color: #1b2430;
  background: #ffffff;
}

.action-btn--solid {
  background: var(--text-primary);
  color: #ffffff;
}

.action-btn:hover {
  text-decoration: none;
  opacity: 0.92;
}

.order-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  overflow: hidden;
}

.order-card.side-card {
  padding: 0;
}

.order-card .side-card__top {
  margin: 0;
}

.order-card .card-head {
  padding: 12px 10px;
}

.order-card .card-head h4 {
  margin: 0 0 4px 0;
  color: var(--text-primary);
  font-weight: 700;
}

.related-cards {
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  padding: 16px 14px 0px;
  margin-bottom: 1rem;
}

.related-cards h4 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 6px;
  text-align: center;
  word-break: break-word;
}

.related-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.related-header h4 {
  margin-bottom: 0;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 8px;
}

.related-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

.related-carousel {
  padding: 0 8px;
}

.related-carousel .carousel-inner {
  padding-bottom: 6px;
}

.related-carousel__indicators {
  position: static !important;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-left: 0;
}

.related-carousel__indicators li {
  background-color: #c2c9d1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.related-carousel__indicators .active {
  background-color: #2b3a45;
}

.related-thumb {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-title {
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-width: 0;
}

.related-title:hover {
  text-decoration: underline;
}

.related-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #54616f;
  gap: 12px;
}

@media (max-width: 575.98px) {
  .related-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-meta {
    flex-direction: column;
    gap: 2px;
  }

  .related-thumb {
    width: 100%;
    height: 160px;
  }

}


@media (max-width: 767px) {
  .conference-header {
    padding: 16px 0 0;
  }


  .conference-header__card {
    padding: 20px;
  }

  .conference-header .event-title {
    font-size: 24px;
  }

  .story-panel {
    padding: 18px;
  }

  .conf-speaker-panel {
    flex-direction: column;
  }

  .conference-body {
    padding-top: 16px;
  }

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

  .story-right {
    justify-content: flex-start;
  }

  .story-info {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .story-speaker--hero {
    align-items: flex-start;
  }

  .story-speaker--hero .story-speaker__img {
    width: 84px;
    height: 84px;
  }

  .story-action {
    max-width: 100%;
  }

  .story-coupon {
    max-width: 100%;
}
}


/* Center + width control */
#searchForm.searchbar {
  position: relative;
  width: 100%;
  max-width: 620px;
}

.searchbar-input {
  height: 56px;
  padding: 0 110px 0 12px;
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 20, 26, 0.08);
  font-size: 15px;
}

.searchbar-input:focus {
  outline: 0;
  box-shadow: 0 14px 28px rgba(15, 20, 26, 0.12);
  border-color: #cbd5e1;
}

.searchbar-input::placeholder {
  color: #8b95a5;
}


.searchbar-btn {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  border: 0;
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.searchbar-btn:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(91, 58, 240, 0.3);
}

@media (max-width: 575.98px) {
  .searchbar-input {
    height: 52px;
    padding-right: 18px;
  }

  .searchbar-btn {
    position: static;
    transform: none;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

.truncate-15 {
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.empty-card {
  min-height: 80dvh;
  width: 100%;
  background: #fff;
  border-radius: .5rem;
  gap: 1rem;

  .empty-cart-img {
    width: 150px;
  }
}

.empty-cart-img {
  max-width: 180px;
  /* tweak as you like */
  height: auto;
}

.heading_pera {
  background: var(--gradient-primary) !important;
  color: white;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
  padding: 0.8rem;
}


.cart {
  background-color: #fff;
}
.cart,
.checkout-table {

  /* Minimal, modern inputs for white backgrounds */
  .form-control {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    /* light grey */
    border-radius: .5rem;
    /* softer corners */
    padding: .5rem .675rem;
    /* 10px 14px */
    height: auto;
    line-height: 1;
    color: #111827;
    /* near-black text */
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  }

  .form-control::placeholder {
    color: #9ca3af;
    /* muted placeholder */
    opacity: 1;
    font-size: 14px;
  }

  .form-control:hover {
    border-color: #d1d5db;
  }

  /* Brand focus (matches your #56cd92 green) */
  .form-control:focus {
    background-color: #fff;
    border-color: var(--primary);
    outline: 0;
    box-shadow: none;
  }

  /* Disabled / readonly */
  .form-control[disabled],
  .form-control:disabled {
    background-color: #f8f9fb;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
  }

  .form-control[readonly] {
    background-color: #fbfbfb;
  }

  /* Textarea + select tweaks */
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }

  select.form-control {
    background-color: #fff;
  }

  /* Keep rounded corners inside input-groups/addons */
  .input-group .form-control {
    border-radius: .6rem;
  }

  /* Validation states (optional) */
  .form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 .2rem rgba(239, 68, 68, .15);
  }

  .form-control.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 .2rem rgba(16, 185, 129, .15);
  }

  /* Minor polish for number/search fields */
  input[type=number].form-control::-webkit-outer-spin-button,
  input[type=number].form-control::-webkit-inner-spin-button {
    height: auto;
  }

  input[type=search].form-control {
    -webkit-appearance: none;
  }


  /* ===== Cart table (Bootstrap 4) ===== */
  .table {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 4px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border: 1px solid #e5e7eb;
  }

  .table thead th,
  .table tbody td {
    padding: 8px;
    /* comfy spacing */
    vertical-align: middle;
  }

  .table.table-sticky {
    border-collapse: collapse;
    /* helps with consistent widths */
    width: 100%;
  }

  /* Make head a separate block (stays visible), body scrollable */
  .table.table-sticky thead {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .table.table-sticky tbody {
    display: block;
    max-height: 50vh;
    min-height: 40vh;
    overflow-y: auto;
    width: 100%;
  }

  .table.table-sticky tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }


  /* Column widths – must be set on BOTH th and td */
  .table.table-sticky th:nth-child(1),
  .table.table-sticky td:nth-child(1) {
    width: 6%;
    text-align: center;
    box-sizing: border-box;
  }

  .table.table-sticky th:nth-child(3),
  .table.table-sticky td:nth-child(3) {
    width: 8%;
    text-align: center;
    box-sizing: border-box;
  }

  .table.table-sticky th:nth-child(4),
  .table.table-sticky td:nth-child(4) {
    width: 10%;
    text-align: right;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .table.table-sticky th:nth-child(5),
  .table.table-sticky td:nth-child(5) {
    width: 10%;
    text-align: right;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .table.table-sticky th:nth-child(6),
  .table.table-sticky td:nth-child(6) {
    width: 10%;
    text-align: center;
    box-sizing: border-box;
  }


  .row-gap-4 {
    row-gap: 1rem;
  }


  /* Header row */
  .table thead th {
    /* background:#f8fafc; */
    /* color:#111827; */
    font-weight: 600;
    letter-spacing: .02em;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
  }

  /* Use your existing header row class for brand color */
  .heading-table {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
  }

  /* Body cells */
  .table tbody td {
    color: #374151;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
  }

  /* Hover */
  .table tbody tr:hover {
    background: var(--neutral);
  }

  /* Links inside table */
  .table a.text-dark {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
  }

  .table a.text-dark:hover {
    text-decoration: underline;
  }

  /* Alignments: item #, quantity, remove centered; money right-aligned */
  .table tbody td:nth-child(1),
  .table tbody td:nth-child(3),
  .table tbody td:nth-child(6) {
    text-align: center;
  }

  .table tbody td:nth-child(4),
  .table tbody td:nth-child(5) {
    text-align: right;
    font-variant-numeric: tabular-nums;
    /* tidy numbers */
  }

  /* Totals cell emphasis */
  .table .itotal {
    font-weight: 600;
  }

  /* HRs printed inside the product-name cell */
  .table td hr {
    border: 0;
    border-top: 1px dashed #e5e7eb;
    margin: .25rem 0;
  }

  /* Quantity input inside table */
  .table .iquantity {
    width: 50px;
    text-align: center;
    margin: 0 auto;
  }

  /* Trash icon size */
  .table .fa-trash {
    font-size: 1rem;
  }

  .checkout-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 10px 0 6px;
  }

  .checkout-heading__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    display: inline-block;
  }

  /* Mobile tweaks */
  @media (max-width:575.98px) {

    .table thead th,
    .table tbody td {
      padding: .625rem .75rem;
      font-size: .95rem;
    }

    .table tbody td:nth-child(4),
    .table tbody td:nth-child(5) {
      white-space: nowrap;
    }
  }

  .coupon-total-div {
    padding: 12px 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 8px;
  }


}

/* ===== Seminars Page ===== */
.seminars-hero {
  background-color: #fff;
  background-image: repeating-linear-gradient(60deg, color-mix(in srgb, var(--secondary) 10%, transparent) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(-60deg, color-mix(in srgb, var(--secondary) 10%, transparent) 0 12px, transparent 12px 24px);
  background-size: 48px 48px;
  border-bottom: 2px solid var(--secondary);
  padding: 48px 0 56px;
}

.seminars-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.seminars-hero__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.seminars-hero__subtitle {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.seminars-hero__hint {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.seminars-filter {
  background: #fff;
  padding: 12px 16px 6px;
  border-radius: 2px;
  box-shadow: 0 0px 4px rgba(15, 23, 42, 0.08);
}

.seminars-filter .form-control {
  height: 42px;
  border: 1px solid var(--secondary);
  border-radius: 2px;
  font-size: 14px;
  box-shadow: none;
}

.seminars-filter .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 20%, transparent);
}

.seminars-list {
  background: #fff;
  padding: 60px 0;

}

.seminars-card {
  background: #fff;
  position: relative;
  border-radius: 34px;
  border: 1px solid var(--neutral);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;

  .main-btn {
    background-color: var(--neutral);
    color: #000 !important;
    font-weight: normal;
  }
}

.seminars-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.seminars-card-link:hover {
  text-decoration: none;
}

.seminars-card__header {
  gap: 12px;
  margin-bottom: 10px;
}

.seminars-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
  padding-right: 70px;
  min-height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.speaker-avatar-group {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  align-items: end;
  margin-bottom: 10px;
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
}

.seminars-card__avatar {
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .18);
  object-fit: cover;
}

.seminars-card__badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--primary);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 1;
}

.seminars-presenter {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.seminars-presenter strong {
  color: var(--primary);
}

.seminars-meta {
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
  color: var(--text-primary);
  font-size: 13px;
  display: grid;
  gap: 6px;
}

.seminars-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seminars-meta i {
  width: 16px;
  text-align: center;
  color: var(--text-primary);
}

.seminars-card__footer {
  border-top: 1px solid var(--neutral);
  padding-top: 12px;
  margin-top: auto;
}


.seminars-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 767.98px) {
  .seminars-hero {
    padding: 36px 0 44px;
  }

  .seminars-filter {
    padding: 12px;
  }

  .seminars-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .seminars-card__avatar {
    align-self: flex-end;
  }

  .seminars-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .seminars-price {
    text-align: left;
  }
}

/* ===== Seminar Detail ===== */
.seminar-detail {
  padding: 20px 0 40px;
}

.seminar-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
  font-size: 14px;
}

.seminar-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.seminar-breadcrumb a:hover {
  text-decoration: underline;
}

.seminar-hero {
  border: 1px solid var(--secondary);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  margin-bottom: 18px;
}

.seminar-hero__main {
  padding: 18px 22px 22px;
}

.seminar-hero__tag {
  font-size: 14px;
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 6px;
}

.seminar-hero__title {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.seminar-speaker__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  overflow: hidden;
  margin-right: 12px;
  background: #fff;
}

.seminar-speaker__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seminar-speaker__name {
  font-weight: 700;
  color: var(--text-primary);
}

.seminar-speaker__code {
  font-size: 13px;
  color: var(--text-primary);
}

.seminar-hero__details {
  margin-top: 16px;
  border-top: 1px solid var(--secondary);
}

.seminar-detail-row {
  display: flex;
  gap: 12px;
  color: var(--text-primary);
  font-size: 14px;
}

.seminar-detail-row i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 4px;
}

.seminar-detail__title {
  font-weight: 600;
  color: var(--text-primary);
}

.seminar-detail__sub {
  color: #51616a;
}

.seminar-status {
  margin: 16px 0;
  background: color-mix(in srgb, var(--secondary) 60%, transparent);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 14px;
}

.seminar-status i {
  color: #f97316;
}

.seminar-options {
  margin: 18px;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
  min-width: 360px;
}

.seminar-options__head {
  font-weight: 700;
  color: var(--primary);
  font-size: 24px;
  text-align: center;
}

.seminar-options__sub {
  text-align: center;
  color: var(--text-primary);
  font-size: 13px;
  margin-bottom: 12px;
}

.seminar-options__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
  gap: 16px;
  color: var(--text-primary);
}

.seminar-options__price {
  font-weight: 600;
  color: var(--text-primary);
}

.seminar-options__total {
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid var(--secondary);
  border-radius: 4px;
  font-weight: 600;
  color: var(--text-primary);
}

.seminar-options__note {
  font-size: 12px;
  color: var(--text-primary);
  margin-top: 10px;
  text-align: center;
}

.seminar-tabs .nav-tabs {
  border-bottom: 1px solid var(--secondary);
  border-radius: 6px 6px 0 0;
}

.seminar-tabs .nav-link {
  color: var(--text-primary);
  font-weight: 600;
}

.seminar-tabs .nav-link.active {
  border-color: var(--primary) var(--secondary) #fff;
  border-top-width: 2px;
  color: var(--primary);
}

.seminar-tabs .tab-content {
  border: 1px solid var(--secondary);
  border-top: none;
  padding: 18px 20px;
  background: #fff;
}

.seminar-tab__body {
  color: var(--text-primary);
  font-size: 14px;
}


ul {
  padding-left: 18px;
}

.agenda-grid {
  display: grid;
  gap: 24px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agenda-day {
  color: var(--text-primary);
}

.agenda-day__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.agenda-day__title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.agenda-day__time {
  font-size: 13px;
  color: var(--text-primary);
}

.agenda-day__list {
  margin: 0;
  padding-left: 18px;
}

.agenda-day__list li {
  margin-bottom: 6px;
}

@media (max-width: 767.98px) {
  .agenda-grid {
    grid-template-columns: 1fr;
  }
}

.seminar-speaker-card {
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--secondary);
}

.seminar-speaker-card:last-child {
  border-bottom: none;
}

.seminar-speaker-card img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.seminar-speaker-card__name {
  font-weight: 600;
  color: var(--text-primary);
}

.seminar-speaker-card__title {
  font-size: 13px;
  color: var(--text-primary);
}

.seminar-speaker-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.speaker-profile {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--secondary);
}

.speaker-profile:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.speaker-profile__media {
  text-align: center;
  min-width: 140px;
}

.speaker-profile__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
  background: #fff;
}

.speaker-profile__name {
  margin-top: 10px;
  font-weight: 700;
  color: var(--primary);
}

.speaker-profile__content {
  flex: 1;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
}

.speaker-profile__title {
  font-weight: 600;
  margin-bottom: 6px;
}

.speaker-profile__bio {
  margin-bottom: 12px;
}


@media (max-width: 767px) {
  .speaker-profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .speaker-profile__media {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .speaker-profile__avatar {
    width: 80px;
    height: 80px;
  }

  .speaker-profile__name {
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .seminar-options {
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .seminar-hero__main {
    padding: 16px;
  }

  .seminar-options {
    margin: 16px;
  }

  .seminar-tabs .nav-link {
    font-size: 13px;
    padding: .5rem .75rem;
  }
}

/* ═══════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════ */
/* Light mode: show sun, hide moon */
/* Dark mode: show moon, hide sun */
/* ═══════════════════════════════════════════
   DARK MODE OVERRIDES
   ═══════════════════════════════════════════ */

/* Header */
/* Mobile nav */
/* Hero */
/* Sections */
/* Webinar cards (list) */
/* Webinar grid cards */
/* Speaker cards */
/* Speakers section */
/* Section heading */
/* Layered bg */
/* Footer */
/* Buttons */
/* Modal */
/* Alert */
/* About section */
/* Conference page */
/* Empty card */
/* Cart/Checkout */
/* ═══════════════════════════════════════════
   DARK MODE — Conference Page
   ═══════════════════════════════════════════ */
/* Order card / Side card */
/* Story coupon */
/* Story speaker */
/* Related cards */
/* Share card */
/* Action buttons */
/* Story kicker / brand */
/* Category badge */
/* Meta table */
/* Misc page elements */
/* Speaker detail */
/* Seminars */
/* Search results */
/* Pagination */
/* ═══════════════════════════════════════════
   CONFERENCE PAGE — Enhanced UI
   ═══════════════════════════════════════════ */

/* Breadcrumb */
.cf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 16px;
  color: var(--text-faint);
}

.cf-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.cf-breadcrumb a:hover {
  color: var(--primary);
  text-decoration: none;
}

.cf-breadcrumb svg {
  color: var(--text-faint);
  flex-shrink: 0;
}

/* Hero */
.cf-hero {
  padding: 20px 0 28px;
  background: var(--bg-body);
}

.cf-hero__main {
  padding-right: 24px;
}

.cf-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.cf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.cf-badge--live {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.cf-badge--rec {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.cf-badge--countdown {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.cf-badge--cat {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.cf-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc2626;
  animation: wgc-pulse 1.5s ease-in-out infinite;
}

.cf-hero__title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.cf-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.cf-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.cf-meta-item svg {
  color: var(--text-faint);
  flex-shrink: 0;
}

/* Speaker strip */
.cf-speaker-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 0;
  border-top: 1px solid var(--border-color);
}

.cf-speaker-strip__img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--border-color);
  background: var(--bg-surface);
}

.cf-speaker-strip__label {
  font-size: 12px;
  color: var(--text-faint);
  display: block;
}

.cf-speaker-strip__name {
  font-size: 15px;
  color: var(--text-heading);
  display: block;
}

/* Mobile quick action */
.cf-hero__quick {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.cf-hero__price-from {
  font-size: 12px;
  color: var(--text-faint);
  display: block;
}

.cf-hero__price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

/* Hero Side — compact CTA in hero */
.cf-hero-side {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.cf-hero-side__price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.cf-hero-side__per {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: -6px;
}

.cf-hero-side__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}

.cf-hero-side__trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

.cf-hero-side__trust svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Price Card (desktop sidebar) — kept for backward compat */
.cf-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px 20px;
  position: sticky;
  top: 80px;
}

.cf-price-card__price {
  text-align: center;
  margin-bottom: 14px;
}

.cf-price-card__from {
  font-size: 12px;
  color: var(--text-faint);
  display: block;
}

.cf-price-card__amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.cf-price-card__per {
  font-size: 12px;
  color: var(--text-faint);
  display: block;
  margin-top: 2px;
}

.cf-price-card__btn {
  min-height: 44px;
  font-size: 15px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.cf-price-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 14px;
}

.cf-price-card__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.cf-price-card__feat svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Coupon in price card */
.cf-price-card__coupon {
  text-align: center;
}

.cf-price-card__coupon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cf-price-card__coupon-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-faint);
}

.cf-price-card__coupon-code {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  background: var(--secondary);
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}

.cf-price-card__coupon-copy {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.cf-price-card__coupon-copy:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Body Section */
.cf-body {
  padding: 24px 0 48px;
  background: var(--section-alt);
}

.cf-main {
  padding-right: 24px;
}

/* Panels */
.cf-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cf-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.cf-panel__title svg {
  color: var(--primary);
  flex-shrink: 0;
}

.cf-panel__empty {
  color: var(--text-faint);
  font-style: italic;
}

/* Speaker card in panel */
.cf-speaker-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cf-speaker-card__img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
  background: var(--bg-surface);
}

.cf-speaker-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 8px;
}

.cf-speaker-card__bio {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Order Card */
.cf-order-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.cf-order-card__head {
  padding: 16px 18px 12px;
  background: var(--primary);
  color: #fff;
}

.cf-order-card__head h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.cf-order-card__head p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Options */
.cf-order-card__options {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cf-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin: 0;
  font-weight: normal;
  border: 1px solid transparent;
}

.cf-option:hover {
  background: var(--bg-surface);
}

.cf-option input[type="checkbox"] {
  display: none;
}

.cf-option__check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: all 0.15s ease;
  background: var(--bg-card);
}

.cf-option:has(input:checked) {
  background: var(--secondary);
  border-color: var(--primary);
}

.cf-option input:checked ~ .cf-option__check {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.cf-option input:checked ~ .cf-option__label {
  font-weight: 600;
  color: var(--text-heading);
}

.cf-option input:checked ~ .cf-option__price {
  color: #1B3A8C !important;
  font-weight: 800;
}

.cf-option__label {
  flex: 1;
  font-size: 13px;
  color: var(--text-body);
}

.cf-option__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
}

.cf-order-card__actions {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-color);
}

.cf-order-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted) !important;
  text-decoration: none;
}

.cf-order-card__link:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

/* Share Card */
.cf-share-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.cf-share-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 12px;
}

/* Related */
.cf-related {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.cf-related__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 12px;
}

.cf-related__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-related__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.cf-related__item:hover {
  background: var(--bg-surface);
  text-decoration: none;
}

.cf-related__thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.cf-related__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.cf-related__meta {
  font-size: 12px;
  color: var(--text-faint);
}

/* Sidebar */
.cf-sidebar {
  position: relative;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cf-hero__main {
    padding-right: 0;
  }

  .cf-main {
    padding-right: 15px;
  }

  .cf-speaker-card {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .cf-hero {
    padding: 14px 0 20px;
  }

  .cf-hero__title {
    font-size: 1.2rem;
  }

  .cf-panel {
    padding: 16px 14px;
  }

  .cf-order-card__options {
    padding: 6px 10px;
  }

  .cf-option {
    padding: 8px 6px;
  }

  .cf-why {
    padding: 16px 14px;
  }
}

/* ── Highlights Strip ── */
.cf-highlights {
  padding: 0;
  background: var(--section-alt);
  border-bottom: 1px solid var(--border-color);
}

.cf-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cf-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border-right: 1px solid var(--border-color);
}

.cf-highlight:last-child {
  border-right: 0;
}

.cf-highlight svg {
  color: var(--primary);
  flex-shrink: 0;
}

.cf-highlight strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
}

.cf-highlight span {
  font-size: 12px;
  color: var(--text-faint);
}

@media (max-width: 991.98px) {
  .cf-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-highlight:nth-child(2) {
    border-right: 0;
  }

  .cf-highlight:nth-child(1),
  .cf-highlight:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
  }
}

@media (max-width: 575.98px) {
  .cf-highlights__grid {
    grid-template-columns: 1fr;
  }

  .cf-highlight {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .cf-highlight:last-child {
    border-bottom: 0;
  }
}

/* ── Tabs ── */
.cf-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--border-color);
  padding: 0;
}

.cf-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}

.cf-tab:hover {
  color: var(--text-heading);
}

.cf-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.cf-tab-content {
  display: none;
}

.cf-tab-content.is-active {
  display: block;
}

/* ── Why Attend ── */
.cf-why {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 22px;
  margin-top: 16px;
}

.cf-why__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 16px;
}

.cf-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cf-why__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cf-why__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

/* Why attend uses .cf-why__num as icon now, keep .cf-why__icon for backward compat */

.cf-why__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.cf-why__item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 575.98px) {
  .cf-why__grid {
    grid-template-columns: 1fr;
  }

  .cf-why {
    padding: 20px 16px;
  }
}

/* ── Price Card Secure Line ── */
.cf-price-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.cf-price-card__secure svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CONFERENCE PAGE v2 — Clean Redesign
   ═══════════════════════════════════════════ */

/* Top bar */
.cp-topbar { padding: 10px 0; border-bottom: 1px solid var(--border-color); background: var(--bg-body); }
.cp-bread { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-faint); }
.cp-bread a { color: var(--text-muted); text-decoration: none; }
.cp-bread a:hover { color: var(--primary); text-decoration: none; }
.cp-bread span { color: var(--text-faint); }
.cp-bread__current { color: var(--text-heading); font-weight: 600; }

/* Hero */
.cp-hero { padding: 28px 0 24px; background: var(--bg-body); }
.cp-hero__grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }

.cp-hero__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.cp-tag { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.cp-tag--live { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.cp-tag--rec { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.cp-tag--time { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.cp-tag--cat { background: var(--secondary); color: var(--primary); border: 1px solid var(--border-color); }
.cp-tag__pulse { width: 6px; height: 6px; border-radius: 50%; background: #dc2626; animation: wgc-pulse 1.5s ease-in-out infinite; }

.cp-hero__title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--text-heading); line-height: 1.3; margin: 0 0 12px; }

.cp-hero__info { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; font-size: 13px; color: var(--text-muted); }
.cp-hero__info i { color: var(--text-faint); margin-right: 4px; width: 14px; text-align: center; }

.cp-hero__speaker { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border-color); }
.cp-hero__speaker img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); }
.cp-hero__speaker small { font-size: 11px; color: var(--text-faint); display: block; }
.cp-hero__speaker strong { font-size: 14px; color: var(--text-heading); display: block; }

/* Hero Card */
.cp-hero__card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 14px; padding: 20px; text-align: center; }
.cp-hero__price { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; }
.cp-hero__price-sub { font-size: 12px; color: var(--text-faint); margin: 4px 0 14px; }
.cp-coupon-link { color: var(--primary); cursor: pointer; font-weight: 600; border-bottom: 1px dashed var(--primary); }
.cp-hero__cta { min-height: 44px; font-size: 15px; border-radius: 10px; margin-bottom: 12px; }
.cp-hero__perks { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; text-align: left; }
.cp-hero__perks span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.cp-hero__perks i { color: #16a34a; font-size: 13px; }
.cp-coupon-status { display: block; font-size: 12px; color: var(--primary); min-height: 16px; margin-top: 6px; }

/* Content area */
.cp-content { padding: 24px 0 48px; background: var(--section-alt); }
.cp-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }

/* Cards */
.cp-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 16px; overflow: hidden; }
.cp-card__head {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--secondary), var(--bg-card));
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.cp-card__head::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.04;
  pointer-events: none;
}

.cp-card__head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.cp-card__head i {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.cp-card__body { padding: 20px; }
.cp-card__body .webinar-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
}

/* Headings inside description */
.cp-card__body .webinar-desc h1,
.cp-card__body .webinar-desc h2,
.cp-card__body .webinar-desc h3,
.cp-card__body .webinar-desc h4,
.cp-card__body .webinar-desc h5,
.cp-card__body .webinar-desc h6 {
  color: var(--text-heading);
  margin: 24px 0 8px;
  line-height: 1.35;
  font-weight: 700;
}

/* Bold / strong text — styled as inline section headers */
.cp-card__body .webinar-desc p > strong:first-child,
.cp-card__body .webinar-desc p > b:first-child {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--secondary);
  margin-top: 20px;
}

/* Regular strong inside text */
.cp-card__body .webinar-desc strong,
.cp-card__body .webinar-desc b {
  color: var(--text-heading);
  font-weight: 700;
}

/* Paragraphs */
.cp-card__body .webinar-desc p {
  margin-bottom: 12px;
}

/* First paragraph after a strong section header — no extra margin */
.cp-card__body .webinar-desc p:first-child {
  margin-top: 0;
}

/* Lists */
.cp-card__body .webinar-desc ul,
.cp-card__body .webinar-desc ol {
  padding-left: 0;
  margin: 10px 0 16px;
  list-style: none;
}

.cp-card__body .webinar-desc li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.cp-card__body .webinar-desc ul > li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.cp-card__body .webinar-desc ol {
  counter-reset: desc-counter;
}

.cp-card__body .webinar-desc ol > li {
  counter-increment: desc-counter;
}

.cp-card__body .webinar-desc ol > li::before {
  content: counter(desc-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images */
.cp-card__body .webinar-desc img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}

/* Links */
.cp-card__body .webinar-desc a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Speaker */
.cp-speaker { display: flex; gap: 16px; align-items: flex-start; }
.cp-speaker__img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); flex-shrink: 0; }
.cp-speaker__body h4 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin: 0 0 6px; }
.cp-speaker__body p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0 0 4px; }
.cp-read-more { border: 0; background: none; color: var(--primary); font-weight: 600; font-size: 13px; padding: 0; cursor: pointer; }
/* Order form */
.cp-order {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.cp-order__head {
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--primary), #142D6E);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cp-order__head i { font-size: 20px; opacity: 0.8; }
.cp-order__head strong { display: block; font-size: 15px; }
.cp-order__head small { display: block; font-size: 11px; opacity: 0.75; font-weight: 400; }

.cp-order__list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Option row */
.cp-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  margin: 0;
  font-weight: normal;
  border: 1.5px solid var(--border-color);
  transition: all 0.2s ease;
  background: var(--bg-card);
}

.cp-opt:hover {
  border-color: var(--primary);
  background: var(--bg-surface);
}

.cp-opt:has(input:checked) {
  background: var(--secondary);
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.cp-opt input { display: none; }

/* Icon circle */
.cp-opt__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-faint);
  font-size: 14px;
  transition: all 0.2s ease;
}

.cp-opt:has(input:checked) .cp-opt__icon {
  background: var(--primary);
  color: #fff;
}

/* Info */
.cp-opt__info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cp-opt__name {
  font-size: 13px;
  color: var(--text-body);
  transition: all 0.15s ease;
}

.cp-opt:has(input:checked) .cp-opt__name {
  font-weight: 700;
  color: var(--text-heading);
}

.cp-opt__badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  background: #fef3c7;
  color: #92400e;
  line-height: 1;
  white-space: nowrap;
}

/* Popular option highlight */
.cp-opt--popular {
  border-color: rgba(27,58,140,0.2);
}

/* Price */
.cp-opt__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
  transition: all 0.15s ease;
}

.cp-opt:has(input:checked) .cp-opt__price {
  color: #1B3A8C !important;
  font-weight: 800;
  font-size: 15px;
}

/* Footer */
.cp-order__foot {
  padding: 14px 14px 12px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-order__cart-btn {
  min-height: 46px;
  font-size: 15px;
  border-radius: 10px;
}

.cp-order__foot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cp-order__divider {
  width: 1px;
  height: 14px;
  background: var(--border-color);
}

.cp-order__alt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted) !important;
  text-decoration: none;
  font-weight: 500;
}
.cp-order__alt:hover { color: var(--primary) !important; text-decoration: none; }

.cp-order__secure {
  text-align: center;
  font-size: 10px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}
.cp-order__secure i { color: #16a34a; font-size: 12px; }
/* Share */
.cp-share { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cp-share__label { font-size: 13px; font-weight: 600; color: var(--text-heading); }
.cp-share__btns { display: flex; gap: 4px; }
.cp-share__btns a, .cp-share__btns button { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border-color); background: var(--bg-surface); color: var(--text-muted); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; text-decoration: none; cursor: pointer; transition: all 0.15s ease; }
.cp-share__btns a:hover, .cp-share__btns button:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }

/* Sidebar — no sticky, natural scroll */

/* Related */
.cp-related { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 14px; margin-top: 14px; }
.cp-related h5 { font-size: 14px; font-weight: 700; color: var(--text-heading); margin: 0 0 10px; }
.cp-related__item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; text-decoration: none; transition: background 0.15s ease; margin-bottom: 4px; }
.cp-related__item:hover { background: var(--bg-surface); text-decoration: none; }
.cp-related__item img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border-color); }
.cp-related__title { font-size: 12px; font-weight: 600; color: var(--text-heading); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.cp-related small { font-size: 11px; color: var(--text-faint); }

/* Responsive */
@media (max-width: 991.98px) {
  .cp-hero__grid, .cp-layout { grid-template-columns: 1fr; }
  .cp-hero__right { order: -1; }
  .cp-side__sticky { position: static; }
  .cp-speaker { flex-direction: column; }
}

@media (max-width: 575.98px) {
  .cp-hero { padding: 16px 0; }
  .cp-hero__title { font-size: 1.15rem; }
  .cp-hero__perks { grid-template-columns: 1fr; }
  .cp-card__body { padding: 14px; }
}

/* ── Enhanced Conference Styles ── */

/* Content panel typography */
.cf-panel--content {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
}

.cf-panel--content .webinar-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

.cf-panel--content .webinar-desc strong,
.cf-panel--content .webinar-desc b {
  color: var(--text-heading);
  font-weight: 700;
}

.cf-panel--content .webinar-desc h1,
.cf-panel--content .webinar-desc h2,
.cf-panel--content .webinar-desc h3,
.cf-panel--content .webinar-desc h4,
.cf-panel--content .webinar-desc h5,
.cf-panel--content .webinar-desc h6 {
  color: var(--text-heading);
  margin: 20px 0 8px;
  line-height: 1.3;
}

.cf-panel--content .webinar-desc ul,
.cf-panel--content .webinar-desc ol {
  padding-left: 20px;
  margin: 10px 0;
}

.cf-panel--content .webinar-desc li {
  margin-bottom: 6px;
  padding-left: 4px;
  line-height: 1.7;
}

.cf-panel--content .webinar-desc li::marker {
  color: var(--primary);
}

.cf-panel--content .webinar-desc p {
  margin-bottom: 12px;
}

/* Tabs enhanced */
.cf-tabs-wrap {
  position: sticky;
  top: 68px;
  z-index: 10;
  background: var(--section-alt);
  padding-top: 4px;
}

.cf-tabs {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.cf-tab {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cf-tab:hover {
  color: var(--text-heading);
  background: var(--bg-surface);
}

.cf-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--bg-card);
}

/* Speaker card enhanced */
.cf-speaker-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.cf-speaker-card__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-align: center;
}

.cf-speaker-card__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
  background: var(--bg-surface);
}

.cf-speaker-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
}

.cf-speaker-card__link {
  font-size: 12px;
  color: var(--primary) !important;
  text-decoration: none;
  font-weight: 600;
}

.cf-speaker-card__link:hover {
  text-decoration: underline !important;
}

/* Why attend — numbered */
.cf-why__num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Sidebar sticky — only order card sticks, rest scrolls */
.cf-sidebar__sticky {
  position: sticky;
  top: 76px;
}

/* Hero side col alignment */
.col-lg-4.d-lg-flex {
  align-items: flex-start;
  justify-content: flex-end;
}

/* Unified order card — price strip */
.cf-order-card__price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--secondary);
  border-bottom: 1px solid var(--border-color);
}

.cf-order-card__price-label {
  font-size: 11px;
  color: var(--text-faint);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cf-order-card__price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.cf-order-card__price-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-faint);
}

.cf-order-card__coupon-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--primary);
  background: var(--bg-card);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px dashed var(--primary);
}

/* Order card trust */
.cf-order-card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-faint);
  padding: 10px 16px 6px;
  text-align: center;
}

.cf-order-card__trust svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Sidebar info strip */
.cf-sidebar-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cf-sidebar-info__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.cf-sidebar-info__item:nth-child(2n) {
  border-right: 0;
}

.cf-sidebar-info__item:nth-last-child(-n+2) {
  border-bottom: 0;
}

.cf-sidebar-info__item svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Share inline — compact */
.cf-share-inline {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cf-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cf-share-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .cf-speaker-card {
    flex-direction: column;
  }

  .cf-speaker-card__left {
    flex-direction: row;
    gap: 12px;
    text-align: left;
  }

  .cf-tabs-wrap {
    top: 60px;
  }

  .cf-sidebar__sticky {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .cf-sidebar-info {
    grid-template-columns: 1fr;
  }

  .cf-sidebar-info__item {
    border-right: 0;
  }

  .cf-sidebar-info__item:nth-last-child(2) {
    border-bottom: 1px solid var(--border-color);
  }
}

/* ── Fixed Bottom Bar ── */
.cp-bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-bottombar.is-visible {
  transform: translateY(0);
}

.cp-bottombar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cp-bottombar__info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cp-bottombar__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cp-bottombar__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.cp-bottombar__btn {
  white-space: nowrap;
  min-height: 40px;
  padding: 0 24px;
  font-size: 14px;
  border-radius: 10px;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .cp-bottombar__title { display: none; }
  .cp-bottombar__price { font-size: 18px; }
  .cp-bottombar__btn { flex: 1; }
}

/* ═══════════════════════════════════════════
   CONFERENCE PAGE v3 — Unique US Market
   ═══════════════════════════════════════════ */

/* Breadcrumb */
/* ═══════════════════════════════════════════
   CONFERENCE PAGE v4 — Dark Hero
   ═══════════════════════════════════════════ */
.cv-hero4 {
  padding: 0 0 48px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d1b3e 0%, var(--primary) 50%, #142D6E 100%);
  color: #fff;
}

.cv-hero4__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 500px 400px at 90% 20%, rgba(253, 95, 7, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 10% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 60%);
}

/* Breadcrumb inside hero */
.cv-hero4__bread {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.cv-hero4__bread a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.cv-hero4__bread a:hover { color: #fff; text-decoration: none; }
.cv-hero4__bread svg { color: rgba(255,255,255,0.3); }
.cv-hero4__bread span { color: rgba(255,255,255,0.8); font-weight: 600; }

/* Grid: info + buy */
.cv-hero4__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
}

/* Left info */
.cv-hero4__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.cv-hero4__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cv-hero4__badge--live { background: rgba(220,38,38,0.2); color: #fca5a5; border: 1px solid rgba(220,38,38,0.3); }
.cv-hero4__badge--rec { background: rgba(22,163,74,0.2); color: #86efac; border: 1px solid rgba(22,163,74,0.3); }
.cv-hero4__badge--cat { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
.cv-hero4__badge--time { background: rgba(253,95,7,0.2); color: #fed7aa; border: 1px solid rgba(253,95,7,0.3); }
.cv-hero4__pulse { width: 6px; height: 6px; border-radius: 50%; background: #f87171; animation: wgc-pulse 1.5s ease-in-out infinite; }

.cv-hero4__title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.cv-hero4__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

.cv-hero4__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.cv-hero4__chip svg { color: var(--accent); flex-shrink: 0; opacity: 0.8; }

/* Speaker row */
.cv-hero4__speaker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cv-hero4__speaker img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.cv-hero4__speaker small { font-size: 11px; color: rgba(255,255,255,0.5); display: block; }
.cv-hero4__speaker strong { font-size: 15px; color: #fff; display: block; font-weight: 600; }

/* Right buy card */
.cv-hero4__buy {
  background: rgba(255,255,255,0.07);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
}

.cv-hero4__price {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cv-hero4__price-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.cv-hero4__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cv-hero4__cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,95,7,0.35);
}

.cv-hero4__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

.cv-hero4__secure svg { color: #86efac; }

.cv-stickybar__form {
  flex-shrink: 0;
  display: inline-flex;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cv-hero4__grid { grid-template-columns: 1fr; gap: 28px; }
  .cv-hero4__buy { max-width: 360px; }
}

@media (max-width: 575.98px) {
  .cv-hero4 { padding: 0 0 32px; }
  .cv-hero4__title { font-size: 1.25rem; }
  .cv-hero4__buy { padding: 20px 18px; }
  .cv-hero4__price { font-size: 32px; }
  .cv-hero4__cta { min-height: 44px; font-size: 14px; }
}

/* Perks Strip */
.cv-perks-strip {
  background: var(--primary);
  padding: 0;
  overflow: hidden;
}

.cv-perks-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.cv-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  position: relative;
}

.cv-perk svg { color: rgba(255,255,255,0.6); flex-shrink: 0; }

.cv-perk + .cv-perk::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 991.98px) {
  .cv-perks-strip__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .cv-perk { flex-shrink: 0; padding: 10px 18px; font-size: 12px; }
}

/* Content Layout */
.cv-content { padding: 28px 0 56px; background: var(--section-alt); }

.cv-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 991.98px) {
  .cv-layout { grid-template-columns: 1fr; }
}

/* Panels */
.cv-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}

.cv-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
}

.cv-panel__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv-panel__head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
}

.cv-panel__body {
  padding: 24px;
}

/* Reuse existing webinar-desc typography from cp- styles */
.cv-panel__body .webinar-desc { font-size: 14px; line-height: 1.85; color: var(--text-body); }
.cv-panel__body .webinar-desc h1, .cv-panel__body .webinar-desc h2, .cv-panel__body .webinar-desc h3,
.cv-panel__body .webinar-desc h4, .cv-panel__body .webinar-desc h5, .cv-panel__body .webinar-desc h6 {
  color: var(--text-heading); margin: 24px 0 8px; line-height: 1.35; font-weight: 700;
}
.cv-panel__body .webinar-desc p > strong:first-child, .cv-panel__body .webinar-desc p > b:first-child {
  display: block; font-size: 15px; font-weight: 700; color: var(--text-heading);
  margin-bottom: 6px; padding-bottom: 6px; border-bottom: 2px solid var(--secondary); margin-top: 20px;
}
.cv-panel__body .webinar-desc strong, .cv-panel__body .webinar-desc b { color: var(--text-heading); font-weight: 700; }
.cv-panel__body .webinar-desc p { margin-bottom: 12px; }
.cv-panel__body .webinar-desc p:first-child { margin-top: 0; }
.cv-panel__body .webinar-desc ul, .cv-panel__body .webinar-desc ol { padding-left: 0; margin: 10px 0 16px; list-style: none; }
.cv-panel__body .webinar-desc li { position: relative; padding-left: 22px; margin-bottom: 8px; line-height: 1.7; }
.cv-panel__body .webinar-desc ul > li::before {
  content: ""; position: absolute; left: 2px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary);
}
.cv-panel__body .webinar-desc ol { counter-reset: desc-counter; }
.cv-panel__body .webinar-desc ol > li { counter-increment: desc-counter; }
.cv-panel__body .webinar-desc ol > li::before {
  content: counter(desc-counter); position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 6px; background: var(--secondary); color: var(--primary);
  font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.cv-panel__body .webinar-desc img { max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; }
.cv-panel__body .webinar-desc a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
/* Speaker Bio */
.cv-speaker-bio { display: flex; gap: 20px; align-items: flex-start; }
.cv-speaker-bio__visual { text-align: center; flex-shrink: 0; width: 120px; }
.cv-speaker-bio__visual img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); margin-bottom: 8px; }
.cv-speaker-bio__visual h4 { font-size: 14px; font-weight: 700; color: var(--text-heading); margin: 0 0 6px; }
.cv-speaker-bio__link { font-size: 12px; color: var(--primary); text-decoration: none; font-weight: 600; }
.cv-speaker-bio__link:hover { text-decoration: underline; }
.cv-speaker-bio__text p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0 0 6px; }
.cv-read-more { border: 0; background: none; color: var(--primary); font-weight: 600; font-size: 13px; padding: 0; cursor: pointer; }
@media (max-width: 575.98px) {
  .cv-speaker-bio { flex-direction: column; }
  .cv-speaker-bio__visual { width: 100%; }
  .cv-panel__body { padding: 18px; }
}

/* Order Box */
.cv-order-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.cv-order-box__head {
  padding: 16px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-surface);
}

/* ── Order Box — Grouped Sections ── */
.cv-section-group {
  padding: 0 16px 14px;
}

.cv-section-group__title {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--secondary);
  padding: 5px 14px;
  border-radius: 999px;
  margin: 14px 0 10px;
  border: 1px solid var(--border-color);
}

/* Row */
.cv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  margin: 0 0 10px;
  font-weight: normal;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.2s ease;
  background: var(--bg-card);
  overflow: hidden;
}

.cv-row:last-child { margin-bottom: 0; }

.cv-row:hover {
  border-color: var(--primary);
  background: var(--secondary);
}

.cv-row:has(input:checked) {
  border-color: var(--primary);
  background: var(--secondary);
  box-shadow: 0 0 0 1px var(--primary);
}

.cv-row input { display: none; }

/* Checkbox */
.cv-row__check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
  background: var(--bg-card);
}

.cv-row:has(input:checked) .cv-row__check {
  background: var(--primary);
  border-color: var(--primary);
}

.cv-row:has(input:checked) .cv-row__check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Icon */
.cv-row__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-faint);
  transition: all 0.2s;
}

.cv-row:has(input:checked) .cv-row__icon {
  background: var(--secondary);
  color: var(--primary);
}

/* Name */
.cv-row__name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  min-width: 0;
  transition: all 0.15s;
}

.cv-row:has(input:checked) .cv-row__name {
  font-weight: 700;
  color: var(--text-heading);
}

/* Price — right */
.cv-row__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.cv-row:has(input:checked) .cv-row__price {
  color: var(--primary);
  font-weight: 800;
}

/* Legacy — kept for compat */

.cv-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  cursor: pointer;
  margin: 0;
  font-weight: normal;
  border: 1.5px solid var(--border-color);
  transition: all 0.2s ease;
  background: var(--bg-card);
}

.cv-opt:hover { border-color: var(--primary); background: var(--bg-surface); }

.cv-opt:has(input:checked) {
  background: var(--secondary);
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.cv-opt input { display: none; }

/* Checkmark */
.cv-opt__check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  color: transparent;
}

.cv-opt:has(input:checked) .cv-opt__check {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Icon */
.cv-opt__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-faint);
  font-size: 14px;
  transition: all 0.2s ease;
}

.cv-opt:has(input:checked) .cv-opt__icon { background: var(--primary); color: #fff; }
.cv-opt__info { flex: 1; min-width: 0; display: flex; align-items: center; gap: 6px; }
.cv-opt__name { font-size: 13px; color: var(--text-body); transition: all 0.15s ease; }
.cv-opt:has(input:checked) .cv-opt__name { font-weight: 700; color: var(--text-heading); }

.cv-opt__tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  background: #fef3c7;
  color: #92400e;
  line-height: 1;
  white-space: nowrap;
}

.cv-opt--popular { border-color: rgba(27,58,140,0.18); }

/* Option Groups */
.cv-opt-group {
  margin-bottom: 4px;
}

.cv-opt-group__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  padding: 8px 6px 4px;
}

.cv-opt-group__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cv-opt-group__dot--live { background: #dc2626; }
.cv-opt-group__dot--rec { background: #16a34a; }
.cv-opt-group__dot--combo { background: #1B3A8C; }

.cv-opt-group + .cv-opt-group {
  border-top: 1px solid var(--border-color);
  margin-top: 6px;
  padding-top: 2px;
}

/* Order Bottom Bar */
.cv-order-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-top: 2px solid var(--border-color);
  background: var(--bg-surface);
}

.cv-order-bottom__price {
  flex: 1;
  min-width: 0;
}

.cv-order-bottom__now {
  font-size: 14px;
  color: var(--text-muted);
}

.cv-order-bottom__now strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cv-order-bottom__btn {
  flex-shrink: 0;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cv-order-bottom__btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27,58,140,0.3);
}

/* Coupon + Extras */
.cv-order-extras {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border-color);
}

/* Links row */
.cv-order-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--border-color);
}

.cv-order-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted) !important;
  text-decoration: none;
  transition: color 0.15s;
}

.cv-order-links a:hover { color: var(--primary) !important; text-decoration: none; }
.cv-order-links a svg { flex-shrink: 0; }

/* Secure badge */
.cv-order-secure {
  text-align: center;
  font-size: 11px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 16px;
  border-top: 1px solid var(--border-color);
}

.cv-order-secure svg { color: #16a34a; flex-shrink: 0; }
.cv-opt__price { font-size: 15px; font-weight: 700; color: var(--text-heading); white-space: nowrap; }
.cv-opt:has(input:checked) .cv-opt__price { color: var(--primary) !important; font-weight: 800; }
/* Coupon */
.cv-coupon-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 6px;
  background: var(--secondary);
  border: 1.5px dashed var(--primary);
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.cv-coupon-chip:hover { background: #DCE4F5; }
.cv-coupon-chip strong { font-weight: 800; }
.cv-coupon-status { font-size: 12px; color: var(--primary); min-height: 16px; font-weight: 600; }
/* kept for compat */

.cv-order-box__cart-btn { min-height: 48px; font-size: 15px; border-radius: 12px; }

.cv-order-box__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cv-order-box__links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted) !important;
  text-decoration: none;
  font-weight: 500;
}

.cv-order-box__links a:hover { color: var(--primary) !important; text-decoration: none; }

.cv-order-box__secure {
  text-align: center;
  font-size: 11px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}

.cv-order-box__secure svg { color: #16a34a; flex-shrink: 0; }
/* Share */
.cv-share-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cv-share-box__label { font-size: 13px; font-weight: 600; color: var(--text-heading); }

.cv-share-box__btns { display: flex; gap: 6px; }

.cv-share-box__btns a, .cv-share-box__btns button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cv-share-box__btns a:hover, .cv-share-box__btns button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
}

/* Related */
.cv-related-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px;
}

.cv-related-box__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cv-related-box__title svg { color: var(--primary); }
.cv-related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 4px;
  border: 1px solid transparent;
}

.cv-related-item:hover {
  background: var(--bg-surface);
  border-color: var(--border-color);
  text-decoration: none;
}

.cv-related-item img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.cv-related-item__info { flex: 1; min-width: 0; }

.cv-related-item__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.cv-related-item small { font-size: 11px; color: var(--text-faint); }

.cv-related-item__arrow {
  color: var(--text-faint);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.cv-related-item:hover .cv-related-item__arrow { opacity: 1; }

/* Sticky Bar */
.cv-stickybar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cv-stickybar.is-visible { transform: translateY(0); }

.cv-stickybar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cv-stickybar__info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cv-stickybar__info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cv-stickybar__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.cv-stickybar__btn {
  min-height: 42px;
  padding: 0 24px;
  font-size: 14px;
  border-radius: 10px;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .cv-stickybar__info strong { display: none; }
  .cv-stickybar__price { font-size: 20px; }
  .cv-stickybar__btn { flex: 1; }
}


/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */

/* Hero */
/* Contact hero removed — now uses .wlp-hero */

/* Alert */
.ct-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ct-alert i {
  font-size: 18px;
  color: #16a34a;
}

/* Content */
.ct-content {
  padding: 36px 0 64px;
  background: var(--bg-body);
}

/* Grid */
.ct-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}

/* Info Cards */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  transition: all 0.2s ease;
}

.ct-info-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.ct-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ct-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 4px;
}

.ct-info-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.ct-info-card a {
  color: var(--primary) !important;
  text-decoration: none;
}

.ct-info-card a:hover {
  text-decoration: underline;
}

/* Form Card */
.ct-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.ct-form-card__head {
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--secondary), var(--bg-card));
  border-bottom: 1px solid var(--border-color);
}

.ct-form-card__head h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 4px;
}

.ct-form-card__head p {
  font-size: 13px;
  color: var(--text-faint);
  margin: 0;
}

/* Form */
.ct-form {
  padding: 24px 28px 28px;
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-form__group {
  margin-bottom: 16px;
}

.ct-form__group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.ct-form__input-wrap {
  position: relative;
}

.ct-form__input-wrap > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-faint);
  pointer-events: none;
  z-index: 1;
}

.ct-form__input-wrap--textarea > i {
  top: 16px;
  transform: none;
}

.ct-form__input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 40px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 14px;
  background: var(--bg-surface);
  color: var(--text-body);
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

textarea.ct-form__input {
  height: auto;
  padding: 12px 14px 12px 40px;
  resize: vertical;
}

select.ct-form__input {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ct-form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 58, 140, 0.08);
  background: var(--bg-card);
}

.ct-form__input::placeholder {
  color: var(--text-faint);
  font-size: 13px;
}

.ct-form__submit {
  width: 100%;
  min-height: 48px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 4px;
}

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

  .ct-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 575.98px) {
  .ct-hero {
    padding: 36px 0 28px;
  }

  .ct-info {
    grid-template-columns: 1fr;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ct-form {
    padding: 18px 16px 20px;
  }

  .ct-form-card__head {
    padding: 16px 18px;
  }
}

/* ═══════════════════════════════════════════
   CART PAGE — Clean Redesign
   ═══════════════════════════════════════════ */

/* Empty Cart */
/* ═══════════════════════════════════════════
   CART / CHECKOUT — v2
   ═══════════════════════════════════════════ */

/* Empty Cart */
.ct-empty { padding: 100px 0; }
.ct-empty__box { text-align: center; max-width: 440px; margin: 0 auto; }
.ct-empty__icon {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--secondary); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.ct-empty h2 { font-size: 24px; font-weight: 800; color: var(--text-heading); margin: 0 0 8px; }
.ct-empty p { font-size: 15px; color: var(--text-muted); margin: 0 0 28px; line-height: 1.6; }
.ct-empty__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Checkout Page */
.ct { padding: 36px 0 80px; }

/* Header + steps */
.ct__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}

.ct__title {
  font-size: 28px; font-weight: 900; color: var(--text-heading); margin: 0;
  letter-spacing: -0.02em;
}

.ct__steps { display: flex; align-items: center; gap: 0; }

.ct__step {
  display: flex; align-items: center; gap: 8px;
  padding: 0 4px;
}

.ct__step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-surface); border: 2px solid var(--border-color);
  color: var(--text-faint);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  transition: all 0.3s;
}

.ct__step--active .ct__step-num {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

.ct__step-label {
  font-size: 13px; font-weight: 600; color: var(--text-faint);
}

.ct__step--active .ct__step-label { color: var(--primary); }

.ct__step-line {
  width: 32px; height: 2px; background: var(--border-color); flex-shrink: 0; margin: 0 6px;
}

/* Grid */
.ct__grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start;
}

/* Cards */
.ct__card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 16px; overflow: hidden; margin-bottom: 20px;
}

.ct__card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.ct__card-head svg { color: var(--primary); flex-shrink: 0; }

.ct__card-head h3 {
  margin: 0; font-size: 15px; font-weight: 700; color: var(--text-heading);
  display: flex; align-items: center; gap: 8px;
}

.ct__card-badge {
  font-size: 11px; font-weight: 700; color: #fff;
  background: var(--primary); width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

.ct__card-body { padding: 22px; }

/* Cart Items */
.ct__item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}

.ct__item:last-child { border-bottom: none; }
.ct__item:hover { background: var(--bg-surface); }

.ct__item-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }

.ct__item-num {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--secondary); color: var(--primary);
  font-size: 12px; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

.ct__item-info { min-width: 0; }

.ct__item-name {
  font-size: 14px; font-weight: 700; color: var(--text-heading) !important;
  text-decoration: none; line-height: 1.4; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.ct__item-name:hover { color: var(--primary) !important; text-decoration: none; }

.ct__item-tags { display: flex; gap: 4px; flex-wrap: wrap; }

.ct__item-tags span {
  font-size: 10px; font-weight: 600; color: var(--primary);
  background: var(--secondary); padding: 2px 8px; border-radius: 4px;
}

.ct__item-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.ct__item-qty { text-align: center; }

.ct__item-qty label {
  display: block; font-size: 9px; font-weight: 700; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}

.ct__item-qty .iquantity {
  width: 52px; height: 38px; text-align: center; border: 1.5px solid var(--border-color);
  border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text-heading);
  background: var(--bg-card); outline: none; transition: border-color 0.2s;
}

.ct__item-qty .iquantity:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,58,140,0.08);
}

.ct__item-price { text-align: right; min-width: 65px; }
.ct__item-unit { display: block; font-size: 11px; color: var(--text-faint); }
.ct__item-total { display: block; font-size: 16px; font-weight: 800; color: var(--text-heading); }

.ct__item-del {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); text-decoration: none; transition: all 0.2s;
  border: 1px solid transparent;
}

.ct__item-del:hover {
  color: #dc2626; background: #fef2f2; border-color: #fecaca; text-decoration: none;
}

/* Form */
.ct__form { display: flex; flex-direction: column; gap: 12px; }
.ct__form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.ct__input {
  width: 100%; height: 44px; padding: 0 14px; border: 1.5px solid var(--border-color);
  border-radius: 10px; font-size: 14px; background: var(--bg-card);
  color: var(--text-body); outline: none; transition: all 0.2s;
}

.ct__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,58,140,0.08);
}

.ct__input::placeholder { color: var(--text-faint); }
select.ct__input { appearance: auto; }

/* Order Summary sidebar */
.ct__aside { position: sticky; top: 80px; }

.ct__summary {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 16px; padding: 24px; overflow: hidden;
}

.ct__summary-title {
  font-size: 17px; font-weight: 800; color: var(--text-heading);
  margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border-color);
}

/* Coupon */
.ct__coupon {
  display: flex; gap: 8px; margin-bottom: 20px;
}

.ct__coupon input {
  flex: 1; height: 42px; padding: 0 14px; border: 1.5px solid var(--border-color);
  border-radius: 8px; font-size: 13px; background: var(--bg-surface);
  color: var(--text-body); outline: none; transition: all 0.2s; min-width: 0;
}

.ct__coupon input:focus {
  border-color: var(--primary); background: var(--bg-card);
}

.ct__coupon input::placeholder { color: var(--text-faint); }

.ct__coupon button {
  height: 42px; padding: 0 18px; border: 0; border-radius: 8px;
  background: var(--text-heading); color: #fff; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: opacity 0.2s; white-space: nowrap;
}

.ct__coupon button:hover { opacity: 0.85; }

/* Totals */
.ct__totals {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}

.ct__totals-row {
  display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted);
}

.ct__totals-row--discount { color: #16a34a; font-weight: 600; }

.ct__totals-row--total {
  font-size: 22px; font-weight: 900; color: var(--text-heading);
  padding-top: 14px; border-top: 2px solid var(--border-color);
  letter-spacing: -0.02em;
}

/* Pay button */
.ct__pay-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 52px; padding: 0 24px;
  border: 0; border-radius: 12px;
  background: var(--accent); color: #fff;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all 0.25s ease;
}

.ct__pay-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,95,7,0.3);
}

.ct__secure {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11px; color: var(--text-faint); margin-top: 14px;
}

.ct__secure svg { color: #16a34a; }

.ct__trust-icons {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-color);
}

.ct__trust-icons span { font-size: 22px; color: var(--text-faint); }

/* Responsive */
@media (max-width: 991.98px) {
  .ct__grid { grid-template-columns: 1fr; }
  .ct__aside { position: static; }
}

@media (max-width: 767.98px) {
  .ct__title { font-size: 22px; }
  .ct__steps { display: none; }
  .ct__item { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .ct__item-left { flex: 1; }
  .ct__item-right { justify-content: space-between; }
  .ct__form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .ct { padding: 24px 0 56px; }
  .ct__summary { padding: 18px; }
  .ct__pay-btn { min-height: 48px; font-size: 15px; }
}


/* ═══════════════════════════════════════════
   SPEAKER DETAIL PAGE
   ═══════════════════════════════════════════ */
.spkd-page { padding: 36px 0 72px; }

/* Profile */
.spkd-profile {
  display: flex; gap: 36px; align-items: flex-start;
  padding: 36px; background: var(--bg-card);
  border: 1px solid var(--border-color); border-radius: 16px;
  margin-bottom: 40px;
}

.spkd-profile__visual {
  flex-shrink: 0;
}

.spkd-profile__visual img {
  width: 160px; height: 160px; border-radius: 16px;
  object-fit: cover; border: 3px solid var(--border-color);
}

.spkd-profile__info { flex: 1; min-width: 0; }

.spkd-profile__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-muted) !important;
  text-decoration: none; margin-bottom: 12px;
}

.spkd-profile__back:hover { color: var(--primary) !important; text-decoration: none; }
.spkd-profile__name {
  font-size: 28px; font-weight: 800; color: var(--text-heading);
  margin: 0 0 12px; line-height: 1.2;
}

.spkd-profile__tags {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
}

.spkd-profile__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  background: var(--secondary); padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--border-color);
}

.spkd-profile__tag svg { flex-shrink: 0; }
.spkd-profile__bio {
  font-size: 15px; line-height: 1.8; color: var(--text-body);
  max-height: none;
}

.spkd-profile__bio p { margin: 0 0 12px; }
.spkd-profile__bio p:last-child { margin: 0; }
.spkd-profile__bio strong { color: var(--text-heading); }
.spkd-profile__bio a { color: var(--primary); }
/* Webinars Section */
.spkd-webinars__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
}

.spkd-webinars__head h2 {
  font-size: 22px; font-weight: 800; color: var(--text-heading); margin: 0;
}

.spkd-webinars__count {
  font-size: 13px; font-weight: 600; color: var(--primary);
  background: var(--secondary); padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--border-color);
}

@media (max-width: 767.98px) {
  .spkd-profile { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; }
  .spkd-profile__visual img { width: 120px; height: 120px; }
  .spkd-profile__tags { justify-content: center; }
  .spkd-profile__name { font-size: 24px; }
  .spkd-profile__back { justify-content: center; }
}


/* ═══════════════════════════════════════════
   LEGAL PAGES (Terms, Privacy, Refund)
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   LEGAL PAGES — Dark Hero + Content
   ═══════════════════════════════════════════ */
.legal-page { padding: 0 0 72px; }

.legal-page__head {
  background: linear-gradient(160deg, #0d1b3e 0%, var(--primary) 50%, #142D6E 100%);
  color: #fff;
  text-align: center;
  padding: 48px 0 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.legal-page__head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 80% 20%, rgba(253,95,7,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.legal-page__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.legal-page__head h1 {
  font-size: 28px; font-weight: 900; color: #fff; margin: 0 0 8px;
  position: relative; z-index: 1;
}

.legal-page__head p {
  font-size: 15px; color: rgba(255,255,255,0.6); margin: 0;
  position: relative; z-index: 1;
}

/* Body content */
.legal-page__body {
  max-width: 760px; margin: 0 auto;
  font-size: 15px; line-height: 1.85; color: var(--text-body);
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 14px; padding: 36px 40px;
}

.legal-page__body h1, .legal-page__body h2, .legal-page__body h3,
.legal-page__body h4, .legal-page__body h5, .legal-page__body h6 {
  color: var(--text-heading); font-weight: 700;
  margin: 28px 0 10px; line-height: 1.3;
  padding-bottom: 8px; border-bottom: 1px solid var(--border-light);
}

.legal-page__body h1 { font-size: 22px; }
.legal-page__body h2 { font-size: 20px; }
.legal-page__body h3 { font-size: 18px; }

.legal-page__body p { margin: 0 0 14px; }

.legal-page__body strong, .legal-page__body b { color: var(--text-heading); font-weight: 700; }

.legal-page__body ul, .legal-page__body ol {
  padding-left: 0; margin: 10px 0 16px; list-style: none;
}

.legal-page__body li {
  position: relative; padding-left: 20px; margin-bottom: 8px; line-height: 1.7;
}

.legal-page__body ul > li::before {
  content: ""; position: absolute; left: 2px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}

.legal-page__body a {
  color: var(--primary); text-decoration: underline; text-underline-offset: 2px;
}

.legal-page__body img { max-width: 100%; border-radius: 8px; margin: 14px 0; }

/* Meta bar — inside dark hero */
.legal-page__meta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 16px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.legal-page__meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500;
}

.legal-page__meta svg { color: rgba(255,255,255,0.35); }

.legal-page__print {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 14px; border-radius: 6px; cursor: pointer;
  transition: all 0.15s;
}

.legal-page__print:hover { background: rgba(255,255,255,0.2); color: #fff; }
.legal-page__print:hover svg { color: #fff; }
.legal-page__print svg { color: rgba(255,255,255,0.6); }
/* Two-column layout */
.legal-layout {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  max-width: 960px; margin: 0 auto; align-items: start;
}

/* Sidebar TOC */
.legal-toc {
  position: sticky; top: 80px;
}

.legal-toc__title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-faint);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.legal-toc__nav { display: flex; flex-direction: column; gap: 2px; }

.legal-toc__link {
  font-size: 13px; font-weight: 500; color: var(--text-muted) !important;
  text-decoration: none; padding: 6px 10px; border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.15s; line-height: 1.4;
  display: block;
}

.legal-toc__link:hover {
  color: var(--primary) !important; background: var(--secondary);
  border-left-color: var(--primary); text-decoration: none;
}

/* Footer links */
.legal-page__foot {
  max-width: 960px; margin: 28px auto 0;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--border-color);
}

.legal-page__link {
  font-size: 14px; font-weight: 600; color: var(--primary) !important;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}

.legal-page__link:hover { text-decoration: underline; }
.legal-page__link svg { flex-shrink: 0; }
@media (max-width: 767.98px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .legal-page__head h1 { font-size: 24px; }
  .legal-page__body { padding: 24px 20px; }
}

@media print {
  .ce-header, .ce-footer, .legal-toc, .legal-page__foot,
  .legal-page__meta, .legal-page__icon { display: none !important; }
  .legal-page__body { border: 0; box-shadow: none; padding: 0; }
  .legal-layout { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════
   ABOUT PAGE — Enhanced
   ═══════════════════════════════════════════ */

/* Hero */
.abt-hero {
  padding: 64px 0 48px;
  background: var(--bg-body);
  position: relative;
  overflow: hidden;
}

.abt-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,140,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.abt-hero__inner { text-align: center; max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }

.abt-hero__pill {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); background: var(--secondary);
  padding: 6px 18px; border-radius: 999px; border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.abt-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  color: var(--text-heading); line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.02em;
}

.abt-hero__title span { color: var(--primary); }
.abt-hero__desc { font-size: 16px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* Stats */
.abt-stats {
  padding: 0 0 56px;
  background: var(--bg-body);
}

.abt-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.abt-stats__item {
  text-align: center; padding: 28px 16px; border-radius: 14px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.abt-stats__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  border-color: var(--primary);
}

.abt-stats__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--secondary); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.abt-stats__item strong {
  display: block; font-size: 26px; font-weight: 800;
  color: var(--text-heading); line-height: 1.1; margin-bottom: 2px;
}

.abt-stats__item span { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* Why Choose Us */
.abt-why { padding: 64px 0; background: var(--section-alt); border-top: 1px solid var(--border-color); }

.abt-why__head { text-align: center; margin-bottom: 40px; }

.abt-why__head h2 {
  font-size: 26px; font-weight: 800; color: var(--text-heading); margin: 0;
}

.abt-why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.abt-why__card {
  padding: 28px 24px; border-radius: 14px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.abt-why__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  border-color: var(--primary);
}

.abt-why__card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--secondary); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.abt-why__card h4 {
  font-size: 16px; font-weight: 700; color: var(--text-heading); margin: 0 0 6px;
}

.abt-why__card p {
  font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6;
}

/* DB Content */
.abt-body { padding: 56px 0; }

.abt-body__content {
  max-width: 760px; margin: 0 auto;
  font-size: 15px; line-height: 1.85; color: var(--text-body);
}

.abt-body__content h1, .abt-body__content h2, .abt-body__content h3,
.abt-body__content h4, .abt-body__content h5, .abt-body__content h6 {
  color: var(--text-heading); font-weight: 700; margin: 28px 0 10px; line-height: 1.3;
}

.abt-body__content p { margin: 0 0 14px; }
.abt-body__content strong, .abt-body__content b { color: var(--text-heading); }
.abt-body__content ul, .abt-body__content ol { padding-left: 20px; margin: 10px 0 16px; }
.abt-body__content li { margin-bottom: 6px; }
.abt-body__content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.abt-body__content img { max-width: 100%; border-radius: 10px; margin: 16px 0; }

/* CTA */
.abt-cta { padding: 0 0 72px; }

.abt-cta__inner {
  text-align: center; padding: 48px 40px; border-radius: 16px;
  background: var(--bg-surface); border: 1px solid var(--border-color);
}

.abt-cta__inner h2 {
  font-size: 24px; font-weight: 800; color: var(--text-heading); margin: 0 0 8px;
}

.abt-cta__inner p {
  font-size: 15px; color: var(--text-muted); margin: 0 0 24px;
}

.abt-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 991.98px) {
  .abt-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .abt-why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .abt-hero { padding: 40px 0 32px; }
  .abt-hero__title { font-size: 1.6rem; }
  .abt-stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .abt-stats__item { padding: 20px 12px; }
  .abt-stats__item strong { font-size: 22px; }
  .abt-why__grid { grid-template-columns: 1fr; }
  .abt-why__head h2 { font-size: 22px; }
  .abt-cta__inner { padding: 32px 20px; }
}


/* ═══════════════════════════════════════════
   SPEAKER LIST PAGE
   ═══════════════════════════════════════════ */
.spklist-page { padding: 36px 0 72px; }

.spklist-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap; gap: 10px;
}

.spklist-head__title {
  font-size: 26px; font-weight: 800; color: var(--text-heading); margin: 0 0 4px;
}

.spklist-head__desc {
  font-size: 15px; color: var(--text-muted); margin: 0; max-width: 500px;
}

.spklist-head__count {
  font-size: 13px; font-weight: 600; color: var(--primary);
  background: var(--secondary); padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--border-color); flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .spklist-head__title { font-size: 22px; }
  .spklist-head__desc { font-size: 14px; }
}


/* ═══════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════ */
.faq-page { padding: 36px 0 72px; max-width: 760px; margin: 0 auto; }

/* Accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.is-open { border-color: var(--primary); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.faq-item__q:hover { background: var(--bg-surface); }

.faq-item__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  background: var(--secondary);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item__text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.4;
}

.faq-item.is-open .faq-item__text { color: var(--primary); }
.faq-item__arrow {
  color: var(--text-faint);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__arrow { transform: rotate(180deg); }

/* Answer panel */
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__a--open { max-height: none; }

.faq-item__content {
  padding: 0 20px 20px 66px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

.faq-item__content p { margin: 0 0 10px; }
.faq-item__content ul, .faq-item__content ol { padding-left: 18px; margin: 8px 0 12px; }
.faq-item__content li { margin-bottom: 6px; }
.faq-item__content strong { color: var(--text-heading); }

/* CTA */
.faq-page__cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.faq-page__cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 16px;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .faq-page__title { font-size: 22px; }
  .faq-item__q { padding: 14px 16px; }
  .faq-item__content { padding: 0 16px 16px 16px; }
  .faq-item__num { display: none; }
}


/* ═══════════════════════════════════════════
   SUBSCRIBE PAGE
   ═══════════════════════════════════════════ */
.sub-page { padding: 48px 0 72px; }

.sub-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  max-width: 960px;
  margin: 0 auto;
}

/* Left */
.sub-info {
  background: var(--primary);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-info__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
}

.sub-info__title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.sub-info__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 28px;
}

.sub-info__perks { display: flex; flex-direction: column; gap: 12px; }

.sub-info__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.sub-info__perk svg { color: rgba(255,255,255,0.5); flex-shrink: 0; }

/* Right Form */
.sub-form-card { padding: 36px; }

.sub-form { display: flex; flex-direction: column; gap: 16px; }

.sub-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.sub-form__group { display: flex; flex-direction: column; gap: 5px; }

.sub-form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}

/* Captcha */
.sub-form__captcha { display: flex; flex-direction: column; gap: 6px; }

.sub-form__captcha label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}

.sub-form__captcha-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sub-form__captcha-code {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-heading);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 8px 24px;
  border-radius: 8px;
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
  font-family: monospace;
}

/* Terms */
.sub-form__terms label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.sub-form__terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
}

.sub-form__btn {
  min-height: 48px;
  font-size: 15px;
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .sub-page__inner { grid-template-columns: 1fr; max-width: 520px; }
  .sub-info { padding: 28px 24px; }
  .sub-info__perks { display: none; }
  .sub-form-card { padding: 24px; }
  .sub-form__row { grid-template-columns: 1fr; }
  .sub-info__title { font-size: 22px; }
}


/* ═══════════════════════════════════════════
   SEARCH PAGE
   ═══════════════════════════════════════════ */
.srch-page { padding: 36px 0 72px; }

.srch-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color); flex-wrap: wrap;
}

.srch-head__title {
  font-size: 24px; font-weight: 800; color: var(--text-heading); margin: 0;
}

.srch-head__form { display: flex; gap: 0; position: relative; }

.srch-head__input {
  width: 280px; height: 44px; padding: 0 44px 0 16px;
  border: 1.5px solid var(--border-color); border-radius: 10px;
  font-size: 14px; background: var(--bg-card); color: var(--text-body); outline: none;
  transition: border-color 0.2s;
}

.srch-head__input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,58,140,0.08); }
.srch-head__input::placeholder { color: var(--text-faint); }

.srch-head__btn {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border: 0; border-radius: 8px;
  background: var(--primary); color: #fff; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
}

/* Count */
.srch-count {
  font-size: 13px; font-weight: 500; color: var(--text-faint); margin-bottom: 16px;
}

/* Results */
.srch-results { display: flex; flex-direction: column; gap: 10px; }

.srch-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--bg-card);
  border: 1px solid var(--border-color); border-radius: 12px;
  text-decoration: none; color: inherit; transition: all 0.2s ease;
}

.srch-card:hover {
  border-color: var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  text-decoration: none; color: inherit;
}

.srch-card__badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 4px 10px; border-radius: 4px;
  flex-shrink: 0; white-space: nowrap;
}

.srch-card__badge--live { background: #fef2f2; color: #dc2626; }
.srch-card__badge--rec { background: #f0fdf4; color: #16a34a; }
.srch-card__body { flex: 1; min-width: 0; }

.srch-card__title {
  font-size: 15px; font-weight: 700; color: var(--text-heading);
  margin: 0 0 6px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; overflow: hidden;
}

.srch-card:hover .srch-card__title { color: var(--primary); }
.srch-card__meta {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.srch-card__meta span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--text-muted); white-space: nowrap;
}

.srch-card__meta svg { color: var(--text-faint); flex-shrink: 0; }

.srch-card__right {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}

.srch-card__price {
  font-size: 18px; font-weight: 800; color: var(--text-heading);
}

.srch-card__arrow {
  color: var(--text-faint); opacity: 0; transition: all 0.2s;
}

.srch-card:hover .srch-card__arrow { opacity: 1; color: var(--primary); }

/* Empty */
.srch-empty {
  text-align: center; padding: 80px 20px; max-width: 440px; margin: 0 auto;
}

.srch-empty__icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--secondary); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

.srch-empty h2 { font-size: 22px; font-weight: 800; color: var(--text-heading); margin: 0 0 8px; }
.srch-empty p { font-size: 15px; color: var(--text-muted); margin: 0 0 20px; }

.srch-empty__tags {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; align-items: center;
}

.srch-empty__tags span { font-size: 13px; color: var(--text-faint); }

.srch-empty__tags a {
  font-size: 13px; font-weight: 600; color: var(--primary);
  background: var(--secondary); padding: 5px 14px; border-radius: 999px;
  text-decoration: none; border: 1px solid var(--border-color);
  transition: all 0.15s;
}

.srch-empty__tags a:hover { background: var(--primary); color: #fff; text-decoration: none; border-color: var(--primary); }
/* Mobile */
@media (max-width: 767.98px) {
  .srch-head { flex-direction: column; align-items: stretch; }
  .srch-head__input { width: 100%; }
  .srch-card { flex-wrap: wrap; padding: 14px 16px; }
  .srch-card__badge { order: -1; }
  .srch-card__body { flex: 1 0 100%; }
  .srch-card__right { margin-left: auto; }
  .srch-card__meta { gap: 10px; }
  .srch-head__title { font-size: 20px; }
}


/* ═══════════════════════════════════════════
   AUTH PAGES (Login / Register)
   ═══════════════════════════════════════════ */
.auth-page { padding: 48px 0 72px; }

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* Left Side — Branding */
.auth-side {
  background: var(--primary);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.auth-side::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.auth-side::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.auth-side__content { position: relative; z-index: 1; }

.auth-side__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  color: #fff;
}

.auth-side__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.auth-side__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
  line-height: 1.6;
}

.auth-side__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-side__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.auth-side__feat i {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  width: 18px;
  text-align: center;
}

/* Right Side — Form */
.auth-form-wrap {
  padding: 48px 40px;
  display: flex;
  align-items: center;
}

.auth-form-card { width: 100%; }

.auth-form__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 4px;
}

.auth-form__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

/* Alerts */
.auth-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.auth-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.auth-alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-form__group { display: flex; flex-direction: column; gap: 6px; }

.auth-form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}

.auth-form__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-form__forgot {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.auth-form__forgot:hover { text-decoration: underline; }
.auth-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-form__input-wrap > i {
  position: absolute;
  left: 14px;
  color: var(--text-faint);
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.auth-form__input {
  width: 100%;
  height: 46px;
  padding: 0 14px 0 40px;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  background: var(--bg-surface);
  color: var(--text-body);
  outline: none;
  transition: all 0.2s;
}

.auth-form__input:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(27,58,140,0.08);
}

.auth-form__input::placeholder { color: var(--text-faint); }

/* Eye toggle */
.auth-form__eye {
  position: absolute;
  right: 4px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--text-faint);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.15s;
}

.auth-form__eye:hover { color: var(--text-body); }

/* Submit */
.auth-form__submit {
  min-height: 48px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 4px;
  width: 100%;
}

/* Footer */
.auth-form__footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-form__footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.auth-form__footer a:hover { text-decoration: underline; }
/* Responsive */
@media (max-width: 767.98px) {
  .auth-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .auth-side {
    padding: 32px 28px;
  }

  .auth-side__title { font-size: 22px; }
  .auth-side__features { display: none; }

  .auth-form-wrap {
    padding: 32px 28px;
  }
}

@media (max-width: 575.98px) {
  .auth-page { padding: 24px 0 48px; }
  .auth-side { padding: 24px 20px; }
  .auth-form-wrap { padding: 24px 20px; }
  .auth-side__icon { width: 44px; height: 44px; font-size: 18px; }
  .auth-side__title { font-size: 20px; }
}


/* ═══════════════════════════════════════════
   PAYMENT PAGE
   ═══════════════════════════════════════════ */
.pay-page { padding: 36px 0 72px; }

.pay-page__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap; gap: 8px;
}

.pay-page__title {
  display: flex; align-items: center; gap: 10px;
  font-size: 24px; font-weight: 800; color: var(--text-heading); margin: 0;
}

.pay-page__title svg { color: var(--primary); }
.pay-page__order {
  font-size: 14px; font-weight: 600; color: var(--primary);
  background: var(--secondary); padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--border-color);
}

.pay-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 10px; margin-bottom: 20px;
  background: #fffbeb; border: 1px solid #fde68a; color: #92400e;
  font-size: 14px; font-weight: 500;
}

/* Layout */
.pay-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start;
}

@media (max-width: 991.98px) { .pay-layout { grid-template-columns: 1fr; } }

/* Items */
.pay-items {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 14px; overflow: hidden;
}

.pay-items__head {
  display: grid; grid-template-columns: 40px 1fr 60px 80px 80px;
  gap: 12px; padding: 14px 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-faint);
  background: var(--bg-surface); border-bottom: 1px solid var(--border-color);
}

.pay-row {
  display: grid; grid-template-columns: 40px 1fr 60px 80px 80px;
  gap: 12px; padding: 16px 20px; align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.pay-row:last-child { border-bottom: 0; }

.pay-row__num {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--secondary); color: var(--primary);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.pay-row__product { min-width: 0; }

.pay-row__name {
  font-size: 14px; font-weight: 700; color: var(--text-heading) !important;
  text-decoration: none; display: block; line-height: 1.4; margin-bottom: 4px;
}

.pay-row__name:hover { color: var(--primary) !important; text-decoration: none; }
.pay-row__formats { display: flex; gap: 4px; flex-wrap: wrap; }

.pay-row__formats span {
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: var(--secondary); padding: 2px 8px; border-radius: 3px;
}

.pay-row__qty {
  font-size: 14px; font-weight: 600; color: var(--text-body); text-align: center;
}

.pay-row__price {
  font-size: 14px; color: var(--text-muted); text-align: right;
}

.pay-row__total {
  font-size: 15px; font-weight: 800; color: var(--text-heading); text-align: right;
}

/* Sidebar */
.pay-sidebar { position: sticky; top: 80px; }

@media (max-width: 991.98px) { .pay-sidebar { position: static; } }

.pay-summary {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 14px; padding: 24px; overflow: hidden;
}

.pay-summary__title {
  font-size: 18px; font-weight: 800; color: var(--text-heading);
  margin: 0 0 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color);
}

.pay-summary__rows {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px;
}

.pay-summary__row {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--text-muted);
}

.pay-summary__row--discount { color: #16a34a; font-weight: 600; }
.pay-summary__row--total {
  font-size: 22px; font-weight: 800; color: var(--text-heading);
  padding-top: 14px; border-top: 2px solid var(--border-color);
}

/* Stripe button wrapper */
.pay-stripe {
  margin-bottom: 16px;
}

.pay-stripe form { display: flex; justify-content: center; }

.pay-stripe .stripe-button-el {
  width: 100% !important;
  height: 50px !important;
  border-radius: 10px !important;
  background: var(--primary) !important;
  background-image: none !important;
  box-shadow: none !important;
  font-size: 15px !important;
}

.pay-stripe .stripe-button-el span {
  height: 50px !important;
  line-height: 50px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.pay-secure {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11px; color: var(--text-faint); text-align: center;
}

.pay-secure svg { color: #16a34a; flex-shrink: 0; }
/* Mobile */
@media (max-width: 767.98px) {
  .pay-items__head { display: none; }

  .pay-row {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 14px 16px;
  }

  .pay-row__num { display: none; }
  .pay-row__product { flex: 1 0 100%; }
  .pay-row__qty, .pay-row__price, .pay-row__total { font-size: 13px; }
  .pay-page__title { font-size: 20px; }
}


/* ═══════════════════════════════════════════
   HOMEPAGE REDESIGN — Premium US Market
   ═══════════════════════════════════════════ */

/* ── Shared ── */
.hp-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  margin-bottom: 14px;
}

.hp-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hp-section-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  max-width: 520px;
}

/* Fade-in animation for scroll reveal */
.hp-step,
.hp-testimonial,
.hp-badge,
.hp-stat {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp-step.hp-visible,
.hp-testimonial.hp-visible,
.hp-badge.hp-visible,
.hp-stat.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-step:nth-child(1) { transition-delay: 0s; }
.hp-step:nth-child(3) { transition-delay: 0.12s; }
.hp-step:nth-child(5) { transition-delay: 0.24s; }

.hp-testimonial:nth-child(1) { transition-delay: 0s; }
.hp-testimonial:nth-child(2) { transition-delay: 0.1s; }
.hp-testimonial:nth-child(3) { transition-delay: 0.2s; }

.hp-badge:nth-child(1) { transition-delay: 0s; }
.hp-badge:nth-child(2) { transition-delay: 0.06s; }
.hp-badge:nth-child(3) { transition-delay: 0.12s; }
.hp-badge:nth-child(4) { transition-delay: 0.18s; }
.hp-badge:nth-child(5) { transition-delay: 0.24s; }
.hp-badge:nth-child(6) { transition-delay: 0.3s; }

.hp-stat:nth-child(1) { transition-delay: 0s; }
.hp-stat:nth-child(2) { transition-delay: 0.1s; }
.hp-stat:nth-child(3) { transition-delay: 0.2s; }
.hp-stat:nth-child(4) { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════
   HERO — Centered Bold
   ═══════════════════════════════════════════ */
.hp-hero {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #f8faff 0%, var(--bg-body) 40%, #fff8f4 100%);
}

.hp-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 15% 30%, rgba(27, 58, 140, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 85% 70%, rgba(253, 95, 7, 0.05) 0%, transparent 70%);
}

.hp-hero__center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hp-hero__h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
}

.hp-hero__h1 span {
  background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 540px;
}

/* Search */
.hp-hero__search {
  display: flex;
  align-items: center;
  max-width: 560px;
  margin: 0 auto 24px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 6px 6px 6px 20px;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(27, 58, 140, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.hp-hero__search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 58, 140, 0.08), 0 12px 40px rgba(27, 58, 140, 0.10);
}

.hp-hero__search svg {
  color: var(--text-faint);
  flex-shrink: 0;
}

.hp-hero__search input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 15px;
  color: var(--text-body);
  outline: none;
  padding: 12px 0;
  min-width: 0;
}

.hp-hero__search input::placeholder { color: var(--text-faint); }

.hp-hero__search button {
  min-height: 46px;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.hp-hero__search button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Quick action cards */
.hp-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hp-hero__act {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  transition: all 0.25s ease;
}

.hp-hero__act:hover {
  text-decoration: none;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 58, 140, 0.10);
}

.hp-hero__act-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-hero__act-icon--live {
  background: #fef2f2;
  color: #dc2626;
}

.hp-hero__act-icon--rec {
  background: var(--secondary);
  color: var(--primary);
}

.hp-hero__act-icon--spk {
  background: #fff7f0;
  color: var(--accent);
}

/* Numbers strip */
.hp-hero__numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.hp-hero__num {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.hp-hero__num:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--border-color);
}

.hp-hero__num strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hp-hero__num > span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* Responsive */
@media (max-width: 767.98px) {
  .hp-hero { padding: 56px 0 0; }
  .hp-hero__h1 { font-size: 1.8rem; }
  .hp-hero__sub { font-size: 15px; }
  .hp-hero__search { padding: 4px 4px 4px 16px; }
  .hp-hero__search button { min-height: 40px; padding: 0 20px; font-size: 13px; }
  .hp-hero__act { padding: 8px 14px; font-size: 13px; }
  .hp-hero__act-icon { width: 30px; height: 30px; }
  .hp-hero__numbers { grid-template-columns: repeat(2, 1fr); }
  .hp-hero__num:nth-child(2)::after { display: none; }
  .hp-hero__num:nth-child(1)::after,
  .hp-hero__num:nth-child(3)::after { display: block; }
  .hp-hero__num:nth-child(3),
  .hp-hero__num:nth-child(4) { border-top: 1px solid var(--border-color); }
}

@media (max-width: 575.98px) {
  .hp-hero__h1 { font-size: 1.55rem; }
  .hp-hero__actions { gap: 8px; }
  .hp-hero__num strong { font-size: 1.4rem; }
  .hp-hero__num { padding: 20px 12px; }
}


/* ═══════════════════════════════════════════
   HOW IT WORKS — Steps
   ═══════════════════════════════════════════ */
.hp-steps {
  padding: 80px 0;
  background: var(--section-alt);
  border-top: 1px solid var(--border-color);
}

.hp-steps__header {
  text-align: center;
  margin-bottom: 56px;
}

.hp-steps__header .hp-section-desc {
  margin: 0 auto;
}

.hp-steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.hp-step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 36px 28px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
}

.hp-step:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.hp-step__number {
  font-size: 48px;
  font-weight: 900;
  color: var(--border-color);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.hp-step:hover .hp-step__number {
  color: var(--primary);
  opacity: 0.3;
}

.hp-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.hp-step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 8px;
}

.hp-step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.hp-step__connector {
  width: 48px;
  height: 2px;
  background: var(--border-color);
  flex-shrink: 0;
  margin-top: 100px;
  position: relative;
}

.hp-step__connector::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--border-color);
  border-top: 2px solid var(--border-color);
  transform: rotate(45deg);
}

@media (max-width: 991.98px) {
  .hp-steps__grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hp-step { max-width: 100%; }

  .hp-step__connector {
    width: 2px;
    height: 32px;
    margin: 0;
  }

  .hp-step__connector::after {
    right: -4px;
    top: auto;
    bottom: -3px;
    transform: rotate(135deg);
  }
}


/* ═══════════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════════ */
.hp-stats {
  padding: 56px 0;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-color);
}

.hp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-stat {
  text-align: center;
  padding: 32px 16px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.35s ease, opacity 0.6s ease, transform 0.6s ease;
}

.hp-stat:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: var(--primary);
}

.hp-stat__number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hp-stat__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

@media (max-width: 767.98px) {
  .hp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .hp-stat {
    padding: 24px 12px;
  }
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.hp-testimonials {
  padding: 80px 0;
  background: var(--bg-body);
}

.hp-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.hp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-testimonial {
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s ease, opacity 0.6s ease, transform 0.6s ease;
  position: relative;
}

.hp-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--border-color);
  line-height: 1;
  pointer-events: none;
}

.hp-testimonial:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border-color: var(--primary);
}

.hp-testimonial__stars {
  display: flex;
  gap: 2px;
}

.hp-testimonial__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.hp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.hp-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.hp-testimonial__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
}

.hp-testimonial__author span {
  font-size: 12px;
  color: var(--text-faint);
}

@media (max-width: 991.98px) {
  .hp-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}


/* ═══════════════════════════════════════════
   ACCREDITATION BADGES
   ═══════════════════════════════════════════ */
.hp-accreditation {
  padding: 80px 0;
  background: var(--section-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.hp-accreditation__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

.hp-accreditation__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hp-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
}

.hp-badge:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--primary);
}

.hp-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-badge__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
}

.hp-badge__text span {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .hp-accreditation__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hp-accreditation__badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .hp-accreditation__badges {
    grid-template-columns: 1fr;
  }

  .hp-accreditation {
    padding: 56px 0;
  }
}


/* ═══════════════════════════════════════════
   CTA v2 — Clean Banner
   ═══════════════════════════════════════════ */
.hp-cta2 {
  padding: 0 0 64px;
}

.hp-cta2__inner {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hp-cta2__text h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 6px;
}

.hp-cta2__text p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  max-width: 400px;
}

.hp-cta2__form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.hp-cta2__form input {
  height: 48px;
  width: 280px;
  padding: 0 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 14px;
  background: var(--bg-card);
  color: var(--text-body);
  outline: none;
  transition: border-color 0.2s;
}

.hp-cta2__form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,58,140,0.08);
}

.hp-cta2__form input::placeholder { color: var(--text-faint); }

.hp-cta2__form .main-btn {
  min-height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .hp-cta2__inner {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hp-cta2__text p { max-width: 100%; }

  .hp-cta2__form {
    width: 100%;
    flex-direction: column;
  }

  .hp-cta2__form input { width: 100%; }
}


/* ═══════════════════════════════════════════
   FINAL CTA + NEWSLETTER (legacy)
   ═══════════════════════════════════════════ */
.hp-final-cta {
  padding: 0 0 80px;
}

.hp-final-cta__inner {
  background: var(--primary);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hp-final-cta__bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 200px at 95% 10%, rgba(255,255,255,0.08) 0%, transparent 70%),
    radial-gradient(circle 150px at 5% 90%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(circle 100px at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hp-final-cta__content {
  position: relative;
  z-index: 1;
}

.hp-final-cta__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.hp-final-cta__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 440px;
}

.hp-final-cta__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.main-btn.hp-final-cta__btn {
  background: #fff !important;
  color: var(--primary) !important;
  min-height: 50px;
  padding: 0 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: 0;
}

.main-btn.hp-final-cta__btn:hover {
  background: var(--secondary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hp-final-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.hp-final-cta__link:hover {
  color: #fff !important;
  text-decoration: none;
}

/* Newsletter */
.hp-final-cta__newsletter {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px;
}

.hp-final-cta__newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.hp-final-cta__newsletter p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 20px;
  line-height: 1.5;
}

.hp-newsletter {
  display: flex;
  gap: 8px;
}

.hp-newsletter__input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.hp-newsletter__input::placeholder {
  color: rgba(255,255,255,0.45);
}

.hp-newsletter__input:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
}

.hp-newsletter__btn {
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.hp-newsletter__btn:hover {
  background: var(--secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hp-newsletter__note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 991.98px) {
  .hp-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
  }
}

@media (max-width: 575.98px) {
  .hp-final-cta__inner {
    padding: 32px 20px;
  }

  .hp-final-cta__title {
    font-size: 1.4rem;
  }

  .hp-newsletter {
    flex-direction: column;
  }

  .hp-final-cta {
    padding: 0 0 56px;
  }
}
