  /* ============================================================
   BASE
   ============================================================ */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
  }

  html {
    font-size: 16px;
    scroll-behavior: smooth
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #334155;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased
  }

  img {
    display: block;
    max-width: 100%
  }

  a {
    text-decoration: none
  }

  button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
  }

  ul,
  ol {
    list-style: none
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none
  }

  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  /* ── Top strip ── */
  .top-strip {
    height: 4px;
    background: linear-gradient(90deg, #8ADB52, #5df31c 35%, #4D36FF 80%);
    position: sticky;
    top: 0;
    z-index: 200
  }

  /* ── Page wrapper ── */
  .bp-page {
    background: #f8fafc;
    min-height: 100vh
  }

  /* ── Header fade ── */
  .bp-header-fade {
    height: 500px;
    background: linear-gradient(to bottom, #ffffff, #ffffff 40%, #f8fafc);
    pointer-events: none;
    margin-bottom: -500px;
    position: relative;
    z-index: 0
  }

  /* ============================================================
   ARTICLE HEADER
   ============================================================ */
  .bp-header-section {
    position: relative;
    z-index: 1;
    padding: 40px 24px 24px;
    max-width: 896px;
    margin: 0 auto
  }

  @media(min-width:640px) {
    .bp-header-section {
      padding: 56px 32px 24px
    }
  }

  .bp-breadcrumb {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
  }

  .bp-breadcrumb a {
    color: #94a3b8
  }

  .bp-breadcrumb a:hover {
    color: #7c3aed
  }

  .bp-breadcrumb-sep {
    color: #cbd5e1
  }

  .bp-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    transition: color .15s
  }

  .bp-back:hover {
    color: #7c3aed
  }

  .bp-back svg {
    flex-shrink: 0
  }

  .bp-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px
  }

  .bp-cat-badge {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: #faf5ff;
    color: #6d28d9;
    font-weight: 500
  }

  .bp-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #94a3b8
  }

  .bp-meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
  }

  .bp-h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px
  }

  .bp-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9
  }

  .bp-author-row img,
  .bp-author-row .avatar,
  .bp-author-row .avatar img {
    width: 50px;
    height: 58px;
    border-radius: 50px;
    object-fit: cover;
    display: block;
    flex-shrink: 0
  }

  .bp-author-name a {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: #2f3b4c;
    text-decoration: none
  }

  .bp-author-name a:hover {
    text-decoration: none
  }

  .bp-author-role {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.4;
    color: #8c9bb0
  }

  .bp-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    object-fit: cover;
    border: 2px solid #e9d5ff;
    flex-shrink: 0
  }

  .bp-author-name {
    font-size: 14px;
    color: #111827;
    line-height: 1.3;
    font-weight: 500
  }

  .bp-author-name a {
    color: inherit
  }

  .bp-author-name a:hover {
    color: #7c3aed
  }

  /* ============================================================
   HERO IMAGE
   ============================================================ */
  .bp-hero-img-section {
    padding: 0 24px 32px;
    position: relative;
    z-index: 1
  }

  @media(min-width:640px) {
    .bp-hero-img-section {
      padding: 0 32px 32px
    }
  }

  .bp-hero-img-wrap {
    max-width: 1024px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .10);
    height: 256px
  }

  @media(min-width:640px) {
    .bp-hero-img-wrap {
      /* height: 320px; */
      height: 540px;
    }
  }

  @media(min-width:1024px) {
    .bp-hero-img-wrap {
      height: 420px
    }
  }

  .bp-hero-img-wrap img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform .6s
  }

  .bp-hero-img-wrap:hover img {
    transform: scale(1.02)
  }

  /* ============================================================
   ARTICLE GRID
   ============================================================ */
  .bp-article-section {
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1280px;
    margin: 0 auto
  }

  @media(min-width:640px) {
    .bp-article-section {
      padding-left: 32px;
      padding-right: 32px
    }
  }

  @media(min-width:1280px) {
    .bp-article-section {
      padding-left: 48px;
      padding-right: 48px
    }
  }

  .bp-article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px
  }

  @media(min-width:1024px) {
    .bp-article-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 32px;
      align-items: stretch
    }

    .bp-sidebar-wrap {
      display: flex;
      flex-direction: column;
      gap: 24px;
      height: 100%;
      align-self: stretch
    }
  }

  /* ============================================================
   ARTICLE CARD
   ============================================================ */
  .bp-article-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    padding: 28px 24px
  }

  @media(min-width:640px) {
    .bp-article-card {
      padding: 28px 36px
    }
  }

  /* ── Typography inside WP the_content() ── */
  .article-body h2 {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    scroll-margin-top: 80px
  }

  .article-body h3 {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin: 24px 0 8px;
    scroll-margin-top: 80px
  }

  .article-body h4 {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin: 20px 0 8px;
    scroll-margin-top: 80px
  }

  .article-body p {
    font-size: 15px;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 16px;
    text-align: left
  }

  .article-body a {
    color: #6d28d9;
    text-decoration: underline;
    text-underline-offset: 2px
  }

  .article-body a:hover {
    opacity: .8
  }

  .article-body strong {
    font-weight: 700;
    color: #111827
  }

  .article-body em {
    font-style: italic
  }

  .article-body blockquote {
    border-left: 4px solid #c084fc;
    background: #faf5ff;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
    color: #4a1d96;
    font-style: italic
  }

  /* Lists */
/* Lists */
/* ============================================================
   FINAL FIX: Single post unordered list bullet style
   Only affects blog post content
   ============================================================ */





.bp-article-card .article-body ul,
.bp-article-card .entry-content ul,
.bp-article-card .post-content ul,
.bp-article-card .wp-block-post-content ul {
  list-style: none !important;
  margin: 18px 0 28px 0 !important;
  padding: 0 !important;
}

.bp-article-card .article-body ul li,
.bp-article-card .entry-content ul li,
.bp-article-card .post-content ul li,
.bp-article-card .wp-block-post-content ul li {
  position: relative !important;
  display: block !important;
  list-style: none !important;
  padding-left: 34px !important;
  margin: 0 0 12px 0 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: #26364d !important;
  font-weight: 400 !important;
}

/* Purple bullet dot */
.bp-article-card .article-body ul li::before,
.bp-article-card .entry-content ul li::before,
.bp-article-card .post-content ul li::before,
.bp-article-card .wp-block-post-content ul li::before {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  top:9px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #8b6cff !important;
  display: block !important;
}

/* Keep links and bold text inline */
.bp-article-card .article-body ul li a,
.bp-article-card .article-body ul li strong,
.bp-article-card .article-body ul li span,
.bp-article-card .article-body ul li em,
.bp-article-card .entry-content ul li a,
.bp-article-card .entry-content ul li strong,
.bp-article-card .entry-content ul li span,
.bp-article-card .entry-content ul li em {
  display: inline !important;
}

/* Nested unordered lists */
.bp-article-card .article-body ul ul,
.bp-article-card .entry-content ul ul,
.bp-article-card .post-content ul ul,
.bp-article-card .wp-block-post-content ul ul {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  padding-left: 12px !important;
}

.bp-article-card .article-body ul ul li,
.bp-article-card .entry-content ul ul li,
.bp-article-card .post-content ul ul li,
.bp-article-card .wp-block-post-content ul ul li {
  font-size: 18px !important;
  margin-bottom: 10px !important;
}


  .article-body ol {
    counter-reset: ol-c;
    list-style: none;
    padding: 0;
    margin: 0 0 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px
  }

  .article-body ol li {
    counter-increment: ol-c;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #334155
  }

  .article-body ol li::before {
    content: counter(ol-c);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: #fff;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px
  }

  /* Images */
  .article-body img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    width: 100%;
    height: auto !important;
    object-fit: initial !important;
    margin: 16px 0
  }

  .article-body .wp-block-image img {
    height: auto !important;
    object-fit: initial !important
  }

  .article-body figure {
    margin: 20px 0
  }

  .article-body figcaption {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px
  }

  /* Tables */
  .article-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0
  }

  .article-body th,
  .article-body td {
    border: 1px solid #c3d4f0;
    padding: 10px 12px;
    font-size: 14px;
    text-align: left;
    vertical-align: top
  }

  .article-body thead th {
    background: linear-gradient(90deg, #7c3aed, #2563eb);
    color: #fff;
    font-weight: 600;
    border-color: transparent
  }

  .article-body tbody tr:nth-child(even) td {
    background: #f8fafc
  }

  .article-body tbody tr:first-child td {
    background: none !important
  }

  /* Strip custom bullets from TOC plugins */
  .article-body :is(.ez-toc-container, #ez-toc-container, .lwptoc,
    #toc, #toc_container, .toc, nav[aria-label*="Table of Contents" i]) ul {
    list-style: disc !important;
    padding-left: 1.25rem
  }

  .article-body :is(.ez-toc-container, #ez-toc-container, .lwptoc,
    #toc, #toc_container, .toc, nav[aria-label*="Table of Contents" i]) li {
    position: static !important;
    padding-left: 0 !important
  }

  .article-body :is(.ez-toc-container, #ez-toc-container, .lwptoc,
    #toc, #toc_container, .toc, nav[aria-label*="Table of Contents" i]) li::before {
    content: none !important
  }

  /* ── Callouts ── */
  .callout {
    border-left: 4px solid;
    border-radius: 0 12px 12px 0;
    padding: 16px;
    margin-bottom: 16px
  }

  .callout-title {
    font-size: 11px;
    margin-bottom: 4px;
    font-weight: 600
  }

  .callout-body {
    font-size: 14px;
    line-height: 1.6
  }

  .callout--purple {
    background: #faf5ff;
    border-color: #c084fc;
    color: #4a1d96
  }

  .callout--purple .callout-title {
    color: #6d28d9
  }

  .callout--blue {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1e3a5f
  }

  .callout--blue .callout-title {
    color: #1d4ed8
  }

  .callout--green {
    background: #f0fdf4;
    border-color: #86efac;
    color: #14532d
  }

  .callout--green .callout-title {
    color: #15803d
  }

  /* ── Timing cards ── */
  .timings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px
  }

  @media(max-width:640px) {
    .timings-grid {
      grid-template-columns: 1fr
    }
  }

  .timing-card {
    border-radius: 16px;
    padding: 16px;
    border: 1px solid transparent
  }

  .timing-card--primary {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: #fff
  }

  .timing-card--primary .timing-label {
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    margin-bottom: 4px
  }

  .timing-card--primary .timing-time {
    font-size: 18px;
    line-height: 1;
    color: #fff;
    font-weight: 700
  }

  .timing-card--secondary {
    background: #fff;
    border-color: #e2e8f0
  }

  .timing-card--secondary .timing-label {
    color: #94a3b8;
    font-size: 11px;
    margin-bottom: 4px
  }

  .timing-card--secondary .timing-time {
    font-size: 18px;
    line-height: 1;
    color: #111827;
    font-weight: 700
  }

  /* ── TZ table ── */
  .tz-table {
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #fff
  }

  .tz-table-header {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 2fr;
    background: linear-gradient(90deg, #7c3aed, #2563eb);
    color: #fff;
    font-size: 11px;
    padding: 10px 16px;
    gap: 8px;
    font-weight: 600
  }

  .tz-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 2fr;
    padding: 12px 16px;
    font-size: 13px;
    border-top: 1px solid #f1f5f9;
    gap: 8px
  }

  .tz-table-row:nth-child(even) {
    background: rgba(248, 250, 252, .5)
  }

  .tz-zone {
    color: #111827
  }

  .tz-time {
    color: #6d28d9
  }

  .tz-note {
    color: #64748b;
    font-size: 12px;
    line-height: 1.5
  }

  @media(max-width:640px) {

    .tz-table-header,
    .tz-table-row {
      grid-template-columns: 1fr 1fr;
      font-size: 11px;
      padding: 8px 10px
    }

    .tz-note {
      display: none
    }
  }

  .article-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 32px 0
  }

  /* ── FAQ ── */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
  }

  .faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    overflow: hidden
  }

  .faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    text-align: left;
    background: #fff;
    transition: background .15s;
    border: none;
    cursor: pointer;
    font-family: inherit
  }

  .faq-trigger:hover {
    background: #f8fafc
  }

  .faq-question {
    font-size: 14px;
    color: #1f2937;
    line-height: 1.6;
    flex: 1;
    padding-right: 16px
  }

  .faq-chevron {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform .2s
  }

  .faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: #a855f7
  }

  .faq-answer {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
    display: none
  }

  .faq-answer p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7
  }

  /* ── Keyframes ── */
  @keyframes shimmer {
    0% {
      transform: translateX(-100%) skewX(-12deg)
    }

    100% {
      transform: translateX(300%) skewX(-12deg)
    }
  }

  @keyframes spin {
    from {
      transform: rotate(0deg)
    }

    to {
      transform: rotate(360deg)
    }
  }

  @keyframes neon-pulse {

    0%,
    100% {
      opacity: .3
    }

    50% {
      opacity: .8
    }
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: .4
    }
  }

  @keyframes float-a {

    0%,
    100% {
      transform: translateY(0)
    }

    40% {
      transform: translateY(-8px)
    }

    70% {
      transform: translateY(-5px)
    }
  }

  @keyframes float-b {

    0%,
    100% {
      transform: translateY(0)
    }

    35% {
      transform: translateY(-6px)
    }

    65% {
      transform: translateY(-9px)
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(16px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  @keyframes countUp {
    from {
      opacity: 0;
      transform: translateY(6px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  .banner-shimmer {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 33.333%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    animation: shimmer 3s linear infinite;
    animation-delay: 2s;
    pointer-events: none
  }

  /* ── Share row ── */
  .share-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
  }

  .share-label {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px
  }

  .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 11px;
    color: #fff;
    transition: opacity .15s
  }

  .share-btn:hover {
    opacity: .85
  }

  .share-btn--x {
    background: #111827
  }

  .share-btn--linkedin {
    background: #1d4ed8
  }

  .share-btn--facebook {
    background: #2563eb
  }

  /* ============================================================
   SIDEBAR
   ============================================================ */
  .bp-sidebar-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px
  }

  @media(min-width:1024px) {
    .indzu-card {
      position: sticky;
      top: 80px
    }
  }

  .toc-header,
  .stats-header {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px
  }

  .toc-list {
    display: flex;
    flex-direction: column;
    gap: 6px
  }

  .toc-item {
    font-size: 12px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
    line-height: 1.4;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: color .15s;
    font-family: inherit
  }

  .toc-item:hover {
    color: #7c3aed
  }

  .toc-item:hover .toc-dot {
    background: #c084fc
  }

  .toc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
    margin-top: 5px;
    transition: background .15s
  }

  .toc-sub {
    padding-left: 12px
  }




  /* Media query CSS  */

@media (min-width: 1020px) {

    .ic-live-badge {
        gap: 8px !important;
        font-size: 8px !important;
    }

    .ic-hero {
        padding: 8px;
    }

    .ic-platform-icon {
        width: 32px !important;
        height: 32px !important;
    }
    .ic-platform-row{
      margin-bottom: 2px!important;
    }
    .ic-headline-accent{
      margin-top: 5px!important;
      font-size:16px!important;
    }
.ic-features {
    gap: 6px!important;
    margin-bottom: 9px!important;
}
.indzu-card{
  top:73px;
}
}
  /* ============================================================
   NEW INDZU PROMO CARD
   ============================================================ */
  .indzu-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    background: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif
  }

  /* ── Card top hero ── */
  .ic-hero {
    position: relative;
    padding:8px;
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 15%, #a855f7 45%, #7c3aed 70%, #4f46e5 100%);
    overflow: hidden
  }

  .ic-hero-noise {
    position: absolute;
    inset: 0;
    opacity: .07;
    pointer-events: none;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 20px 20px
  }

  .ic-hero-glow-a {
    position: absolute;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    background: rgba(251, 191, 196, .25);
    filter: blur(24px);
    top: -40px;
    right: -40px;
    pointer-events: none
  }

  .ic-hero-glow-b {
    position: absolute;
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background: rgba(99, 102, 241, .20);
    filter: blur(16px);
    bottom: -40px;
    left: -24px;
    pointer-events: none
  }

  .ic-live-badge {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .20);
    border: 1px solid rgba(255, 255, 255, .30);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    margin-bottom: 20px
  }

  .ic-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
    flex-shrink: 0
  }

  /* ── Platform rows (two rows like original) ── */
  .ic-platform-row {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between!important;
    align-items: flex-end;
    padding: 0 4px;
    margin-bottom: 12px
  }

  .ic-platform-row--center {
    justify-content: center;
    gap: 20px
  }

  .ic-platform-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
  }

  .ic-platform-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .20);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3)
  }

  .ic-platform-icon svg {
    width: 18px;
    height: 18px
  }

  .ic-platform-label {
    font-size: 8px;
    color: rgba(255, 255, 255, .70);
    text-align: center
  }

  /* ── Stats strip ── */
  .ic-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    overflow: hidden
  }

  .ic-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 11px 6px;
    border-right: 1px solid rgba(255, 255, 255, .12)
  }

  .ic-stat:last-child {
    border-right: none
  }

  .ic-stat-val {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1
  }

  .ic-stat-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, .55);
    margin-top: 3px;
    text-align: center;
    line-height: 1.2
  }

  /* ── Card body ── */
  .ic-body {
    padding: 18px 20px 20px;
    background: #fff
  }

  .ic-headline {
    text-align: center;
    margin-bottom: 16px
  }

  .ic-headline-top {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25
  }

  .ic-headline-accent {
    display: block;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.25;
    margin-top: 2px
  }

  /* ── Feature rows ── */
  .ic-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px
  }

  .ic-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 13px;
    border-radius: 13px;
    border: 1px solid #f1f5f9;
    background: #fafbff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04)
  }

  .ic-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
  }

  .ic-feature-text {
    flex: 1;
    min-width: 0
  }

  .ic-feature-title {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    margin: 0
  }

  .ic-feature-sub {
    font-size: 10px;
    color: #64748b;
    line-height: 1.35;
    margin: 2px 0 0
  }

  .ic-feature-tag {
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    padding: 3px 8px;
    border-radius: 6px
  }

  .ic-feature-tag--orange {
    color: #ea580c;
    background: #fff7ed
  }

  .ic-feature-tag--green {
    color: #16a34a;
    background: #f0fdf4
  }

  .ic-feature-tag--indigo {
    color: #4338ca;
    background: #eef2ff
  }

  /* ── CTA button ── */
  .ic-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    border-radius: 13px;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(124, 58, 237, .30);
    transition: transform .15s, box-shadow .15s;
    margin-bottom: 11px;
    letter-spacing: .01em
  }

  .ic-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(124, 58, 237, .40)
  }

  /* ── Trust row ── */
  .ic-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 10px;
    color: #94a3b8
  }

  .ic-trust-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    flex-shrink: 0
  }

  .ic-trust-sep {
    color: #e2e8f0
  }

  /* Responsive sidebar */
  @media(max-width:1023px) {
    .bp-sidebar-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .bp-sidebar-sticky {
      grid-column: 1/-1
    }
  }

  @media(max-width:600px) {
    .bp-sidebar-wrap {
      display: flex;
      flex-direction: column
    }
  }

  /* ============================================================
   AUTHOR BIO
   ============================================================ */
  .bp-author-bio-section {
    padding-bottom: 48px;
    max-width: 60%;
    margin: 0 auto
  }

  .author-bio-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #f8fafc;
    border: 1px solid #d7dee7;
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04)
  }

  .author-bio-avatar-link {
    flex-shrink: 0;
    display: block;
    text-decoration: none
  }

  .author-bio-avatar {
    width: 82px;
    height: 82px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    border: 2px solid #e5e7eb
  }

  .author-bio-content {
    flex: 1;
    min-width: 0
  }

  .author-bio-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px
  }

  .author-bio-name {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #0f172a
  }

  .author-bio-name a {
    color: #0f172a;
    text-decoration: none
  }

  .author-bio-name a:hover {
    text-decoration: none
  }

  .author-bio-badge {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    color: #7c3aed;
    background: #f3e8ff;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap
  }

  .author-bio-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
    max-width: 900px
  }

  .author-social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px
  }

  .author-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #dbe3ec;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease
  }

  .author-social-link:hover {
    color: #7c3aed;
    border-color: #7c3aed;
    background: #faf5ff
  }

  @media(max-width:767px) {
    .author-bio-card {
      flex-direction: column;
      gap: 18px;
      padding: 20px;
      border-radius: 18px
    }

    .author-bio-avatar {
      width: 72px;
      height: 72px;
      border-radius: 16px
    }

    .author-bio-header {
      gap: 8px;
      margin-bottom: 8px
    }

    .author-bio-name {
      font-size: 17px
    }

    .author-bio-badge {
      font-size: 12px;
      padding: 4px 9px
    }

    .author-bio-text {
      font-size: 15px;
      line-height: 1.7
    }
  }

  /* ============================================================
   MORE TO EXPLORE
   ============================================================ */
  .bp-related-section {
    padding: 0 24px 48px;
    max-width: 1280px;
    margin: 0 auto
  }

  @media(min-width:640px) {
    .bp-related-section {
      padding-left: 32px;
      padding-right: 32px
    }
  }

  @media(min-width:1280px) {
    .bp-related-section {
      padding-left: 48px;
      padding-right: 48px
    }
  }

  .bp-related-section>h2 {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px
  }

  .bp-related-sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px
  }

  .slider-container {
    position: relative;
    overflow: hidden
  }

  .slider-track {
    display: flex;
    gap: 16px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
  }

  .explore-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 260px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    transition: all .3s;
    display: flex;
    flex-direction: column
  }

  .explore-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
  }

  .card-image {
    height: 160px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
  }

  .explore-card:hover .card-image img {
    transform: scale(1.06)
  }

  .card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column
  }

  .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
  }

  .card-title a {
    color: inherit
  }

  .card-title a:hover {
    color: #6d28d9
  }

  .card-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
  }

  .card-button {
    display: inline-block;
    padding: 7px 16px;
    background: linear-gradient(135deg, #4D36FF, #534EEC);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: all .2s;
    align-self: flex-start
  }

  .card-button:hover {
    opacity: .9;
    transform: translateY(-1px)
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    color: #64748b
  }

  .slider-arrow:hover {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, .3)
  }

  .slider-arrow.disabled {
    opacity: .4;
    cursor: not-allowed
  }

  .slider-arrow.disabled:hover {
    background: #fff;
    color: #64748b;
    border-color: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07)
  }

  @media(max-width:1024px) {
    .explore-card {
      flex-basis: calc(50% - 8px)
    }
  }

  @media(max-width:640px) {
    .explore-card {
      flex-basis: 100%
    }
  }

