 .vb-marquee {
     animation: vbScroll 18s linear infinite;
     will-change: transform;
 }

 @keyframes vbScroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 @media (prefers-reduced-motion: reduce) {
     .vb-marquee {
         animation: none;
     }
 }

   .vb-card {
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
      linear-gradient(135deg, rgba(28, 64, 32, 0.06), rgba(250, 204, 21, 0.10));
    border: 1px solid rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(6px);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    position: relative;
  }

  .vb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
  }

  /* Small pill */
  .vb-pill {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    color: #1c4020;
    background: rgba(28, 64, 32, 0.10);
    border: 1px solid rgba(28, 64, 32, 0.18);
    white-space: nowrap;
  }

  /* Slick arrows */
  .vb-testimonial-slider .slick-prev,
  .vb-testimonial-slider .slick-next {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #1c4020 !important;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
    transition: transform .2s ease, background .2s ease;
  }

  .vb-testimonial-slider .slick-prev:hover,
  .vb-testimonial-slider .slick-next:hover {
    background: #163218 !important;
    transform: translateY(-2px);
  }

  .vb-testimonial-slider .slick-prev:before,
  .vb-testimonial-slider .slick-next:before {
    font-size: 18px;
    color: #ffffff;
    opacity: 1;
  }

  .vb-testimonial-slider .slick-prev {
    left: -10px;
  }

  .vb-testimonial-slider .slick-next {
    right: -10px;
  }

  /* Make arrows fit on small screens */
  @media (max-width: 640px) {
    .vb-testimonial-slider .slick-prev { left: -6px; }
    .vb-testimonial-slider .slick-next { right: -6px; }
  }

  /* Slick dots */
  .vb-testimonial-slider .slick-dots {
    bottom: -42px;
  }

  .vb-testimonial-slider .slick-dots li button:before {
    font-size: 10px;
    opacity: 0.35;
    color: #1c4020;
  }

  .vb-testimonial-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #1c4020;
  }

  .timeline-dot{
    position:absolute;
    left: 14px;
    width: 16px; height: 16px;
    border-radius: 999px;
    background: #facc15;
    border: 3px solid #1c4020;
    transform: translateY(12px);
  }
  @media (min-width: 640px){
    .timeline-dot{ left: 50%; transform: translate(-50%, 12px); }
  }

   /* Premium card */
  .vb-premium-card{
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.07);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.75)),
      linear-gradient(135deg, rgba(28,64,32,0.06), rgba(250,204,21,0.10));
    backdrop-filter: blur(6px);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .vb-premium-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  }

  /* Icon box with hover animation */
  .vb-iconbox{
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(28,64,32,0.10);
    border: 1px solid rgba(28,64,32,0.18);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  }
  .vb-premium-card:hover .vb-iconbox{
    transform: rotate(6deg) scale(1.05);
    background: rgba(250,204,21,0.22);
    box-shadow: 0 12px 24px rgba(250,204,21,0.18);
  }

  .vb-emoji{ font-size: 22px; }

    .vb-mini-story{
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.07);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78)),
      linear-gradient(135deg, rgba(28,64,32,0.05), rgba(250,204,21,0.10));
    backdrop-filter: blur(6px);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .vb-mini-story:hover{
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  }

  /* Simple marquee */
  .vb-marquee2{ animation: vbScroll 18s linear infinite; }
  @keyframes vbScroll{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
  }


  .vb-benefit-card{
      border-radius: 24px;
      padding: 22px;
      border: 1px solid rgba(0,0,0,0.07);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78)),
        linear-gradient(135deg, rgba(28,64,32,0.05), rgba(250,204,21,0.10));
      backdrop-filter: blur(6px);
      transition: transform .25s ease, box-shadow .25s ease;
      text-align: center;
    }
    .vb-benefit-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 16px 34px rgba(0,0,0,0.10);
    }
    .vb-iconbox{
      width: 56px; height: 56px;
      border-radius: 18px;
      display: grid; place-items: center;
      margin: 0 auto 12px;
      font-weight: 900;
      background: rgba(28,64,32,0.10);
      border: 1px solid rgba(28,64,32,0.18);
      transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
      font-size: 20px;
    }
    .vb-benefit-card:hover .vb-iconbox{
      transform: rotate(6deg) scale(1.05);
      background: rgba(250,204,21,0.22);
      box-shadow: 0 12px 24px rgba(250,204,21,0.18);
    }
    .vb-benefit-card h3{
      font-weight: 800;
      font-size: 18px;
      color: #0f172a;
    }
    .vb-benefit-card p{
      margin-top: 6px;
      font-weight: 600;
      font-size: 14px;
      color: #64748b;
    }

  /* panels */
  .vb-panel{
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.07);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78)),
      linear-gradient(135deg, rgba(28,64,32,0.05), rgba(250,204,21,0.10));
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }
  .vb-panel-top{ display:flex; align-items:center; gap:14px; }
  .vb-panel-icon{
    width:56px; height:56px; border-radius:18px;
    display:grid; place-items:center;
    background:#1c4020; color:#fff; font-weight:900;
    border:1px solid rgba(28,64,32,0.18);
  }

  /* check items */
  .vb-check{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:14px 14px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    font-weight: 600;
    color:#334155;
    font-size:14px;
  }
  .vb-check span{
    width:26px; height:26px; border-radius:10px;
    display:grid; place-items:center;
    background:rgba(28,64,32,0.12);
    color:#1c4020;
    flex:0 0 auto;
    margin-top:2px;
  }

  .vb-mini-stat{
    border-radius:18px;
    padding:14px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    text-align:center;
  }

  /* steps */
  .vb-step{
    display:flex; gap:14px; align-items:flex-start;
    border-radius:22px;
    padding:18px;
    border:1px solid rgba(0,0,0,0.06);
    background:#fff;
    transition:.25s;
  }
  .vb-step:hover{
    transform: translateY(-4px);
    box-shadow:0 14px 28px rgba(0,0,0,0.08);
  }
  .vb-step-num{
    width:50px; height:50px;
    border-radius:16px;
    display:grid; place-items:center;
    font-weight:900;
    color:#1c4020;
    background:rgba(250,204,21,0.22);
    border:1px solid rgba(250,204,21,0.35);
    flex:0 0 auto;
  }
  .vb-step-title{ font-weight:900; color:#0f172a; }
  .vb-step-desc{ margin-top:4px; font-weight:600; font-size:14px; color:#64748b; }

  /* brand pills */
  .vb-brand{
    border-radius:18px;
    padding:12px 10px;
    text-align:center;
    font-weight:900;
    color:#0f172a;
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:0 8px 18px rgba(0,0,0,0.04);
    transition:.2s;
  }
  .vb-brand:hover{
    transform: translateY(-4px);
    border-color: rgba(28,64,32,0.25);
  }

.vb-brand-slide{
  padding:20px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  text-align:center;
  margin:10px;
  transition:.3s;
}
.vb-brand-slide:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 24px rgba(0,0,0,0.08);
}
.vb-brand-slide img{
  height:45px;
  margin:auto;
  object-fit:contain;
}
.vb-brand-slide span{
  display:block;
  margin-top:8px;
  font-weight:800;
  font-size:13px;
}

/* NAV BUTTONS */
.vb-prev, .vb-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  font-size:26px;
  font-weight:900;
  cursor:pointer;
  background:#1c4020;
  color:white;
  box-shadow:0 6px 14px rgba(0,0,0,0.15);
}

.vb-prev{ left:-10px; }
.vb-next{ right:-10px; }

.vb-prev:hover,
.vb-next:hover{
  background:#facc15;
  color:#1c4020;
}

.font-extrabold {
    font-weight: 700 !important;
}


/* ===== Value Basket Prose (for CKEditor HTML) ===== */
.vb-prose{
  font-size: 16px;
  line-height: 1.85;
  color: #334155; /* slate-700 */
}

/* Spacing */
.vb-prose > *{ margin-top: 14px; }
.vb-prose > *:first-child{ margin-top: 0; }

/* Headings */
.vb-prose h1, .vb-prose h2, .vb-prose h3, .vb-prose h4{
  color: #0f172a; /* slate-900 */
  font-weight: 800;
  line-height: 1.25;
  margin-top: 18px;
  margin-bottom: 8px;
}
.vb-prose h1{ font-size: 30px; }
.vb-prose h2{ font-size: 26px; }
.vb-prose h3{ font-size: 22px; }
.vb-prose h4{ font-size: 18px; }

/* Paragraph */
.vb-prose p{
  margin: 0;
}

/* Lists (✅ bullets + numbering fix) */
.vb-prose ul{
  list-style: disc;
  padding-left: 1.25rem; /* 20px */
  margin-top: 10px;
}
.vb-prose ol{
  list-style: decimal;
  padding-left: 1.25rem;
  margin-top: 10px;
}
.vb-prose li{
  margin: 6px 0;
}

/* Links */
.vb-prose a{
  color: #1c4020;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vb-prose a:hover{ opacity: .9; }

/* Blockquote */
.vb-prose blockquote{
  margin: 14px 0;
  padding: 14px 16px;
  border-left: 4px solid #facc15;
  background: rgba(250,204,21,0.12);
  border-radius: 14px;
  color: #0f172a;
  font-weight: 600;
}

/* Images */
.vb-prose img{
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Tables */
.vb-prose table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.10);
  margin-top: 14px;
}
.vb-prose th{
  text-align: left;
  background: rgba(28,64,32,0.08);
  color: #0f172a;
  font-weight: 800;
  padding: 12px;
  border-bottom: 1px solid rgba(15,23,42,0.10);
}
.vb-prose td{
  padding: 12px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  color: #334155;
  font-weight: 600;
}
.vb-prose tr:last-child td{ border-bottom: none; }

/* Horizontal Rule */
.vb-prose hr{
  border: none;
  height: 1px;
  background: rgba(15,23,42,0.12);
  margin: 18px 0;
}

/* Code (if any) */
.vb-prose code{
  background: rgba(15,23,42,0.06);
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 700;
}
.vb-prose pre{
  background: #0b1220;
  color: #e2e8f0;
  padding: 14px;
  border-radius: 16px;
  overflow: auto;
}

/* Optional: make embeds responsive */
.vb-prose iframe{
  max-width: 100%;
  border-radius: 16px;
}




   