/* .solution-prose — solution page copy block */
.cb12-solutions_repeater{
    overflow: hidden;
    width: 100%;
    background: var(--background);
    position: relative;
}
.solutions-repeater-inner{
    padding: 100px 0px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}
.solution-prose {
    box-sizing: border-box;
    max-width: 536px;
    font-family: "Satoshi", system-ui, -apple-system, sans-serif;
    color: hsla(170, 94%, 13%);
  
    opacity: 0;
    transform: translateY(24px);
    animation: solution-prose-enter 0.55s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 0.05s;
  }
  
  .solution-prose *,
  .solution-prose *::before,
  .solution-prose *::after {
    box-sizing: border-box;
  }
  
  @keyframes solution-prose-enter {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .solution-prose > h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.12;
  }

  .solution-prose h3,
  .solution-prose h4 {
    margin: 0 0 0.75rem;
    font-weight: 700;
    line-height: 1.25;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
  }

  .solution-prose p {
    margin: 0 0 2rem;
    font-size: 15px;
    line-height: 1.75;
    color: hsla(110, 20%, 38%);
  }

  @media (min-width: 640px) {
    .solution-prose p {
      font-size: 16px;
    }
  }
  

  .solution-prose__bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
.solutions-repeater-inner ul{
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
  /* Same path/shape as assets/imgs/check.svg (stroke caps/joins; border hack looked distorted) */
  .solutions-repeater-inner ul li span{
    display: flex;
}
  .solutions-repeater-inner ul li span::before {
    content: "";
    display: flex;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    margin-right: 10px;
    align-self: flex-start;
    background: center / contain no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20%206%209%2017l-5-5' stroke='hsla(99%2C41%25%2C33%25)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
  
  .solution-prose__bullet-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.375;
  }
  
  .solution-prose__ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  @media (min-width: 640px) {
    .solution-prose__ctas {
      flex-direction: row;
      align-items: center;
      gap: 1rem;
    }
  }
  
  .solution-prose__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0 1.5rem;
    border-radius: 9999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    width: 100%;
    border: 1px solid transparent;
    cursor: pointer;
    transition: filter 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  }
  
  @media (min-width: 640px) {
    .solution-prose__cta {
      width: auto;
      padding: 0 2rem;
    }
  }
  
  .solution-prose__cta--primary {
    background: #4a7732;
    color: #fff;
    border-color: #4a7732;
  }
  
  .solution-prose__cta--primary:hover {
    filter: brightness(1.1);
  }
  
  .solution-prose__cta--outline {
    background: #fff;
    color: hsla(170, 94%, 13%);
    border-color: hsla(120, 7%, 86%);
  }
  
  .solution-prose__cta--outline:hover {
    background: hsla(120, 8%, 95%);
  }
  
  .solution-prose__cta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }
  
@media screen and (max-width: 768px) {
  .solutions-repeater-inner{
    flex-direction: column !important;
    padding: 80px 0px;
  }
  .solutions-repeater-inner:nth-child(even){
    flex-direction: column-reverse;
  }
}



  /* this is html animated widget */
 
 
.dash-wrap {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 16px;
  }
  
  .dash-height-box {
    position: relative;
    width: 100%;
  }
  
  .dash-scale-clip {
    position: relative;
    width: 480px;
    height: 400px;
    transform-origin: top left;
    will-change: transform;
  }
  
  .dash-card {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 480px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(84, 130, 53, 0.15);
    background: #0b1f14;
    box-shadow:
      0 4px 40px rgba(0, 0, 0, 0.4),
      0 0 80px rgba(84, 130, 53, 0.25);
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.55s cubic-bezier(0.33, 1, 0.68, 1),
      transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: 0.1s;
  }
  
  .dash-card.dash-inview {
    opacity: 1;
    transform: translateY(0);
  }
  
  .dash-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(84, 130, 53, 0.08);
  }
  
  .dash-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
  }
  
  .dash-dot--r {
    background: rgba(255, 95, 87, 0.7);
  }
  
  .dash-dot--y {
    background: rgba(255, 189, 46, 0.7);
  }
  
  .dash-dot--g {
    background: rgba(39, 201, 63, 0.7);
  }
  
  .dash-titlebar-live {
    margin-left: auto;
  }
  
  .dash-live-pill {
    font-size: 8px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    color: #4a7732;
    background: rgba(84, 130, 53, 0.25);
  }
  
  .dash-stats {
    display: flex;
    border-bottom: 1px solid rgba(84, 130, 53, 0.08);
  }
  
  .dash-stat {
    flex: 1;
    padding: 12px 20px;
  }
  
  .dash-stat:not(:last-child) {
    border-right: 1px solid rgba(84, 130, 53, 0.08);
  }
  
  .dash-stat-label {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
  }
  
  .dash-stat-value {
    margin-top: 2px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .dash-stat-sub {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
  }
  
  .dash-stat-sub svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }
  
  .dash-stat-sub span {
    font-size: 9px;
    font-weight: 600;
  }

  .dash-stat-sub--up span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #4a7732;
  }


  
  .dash-stat-sub--muted span {
    color: rgba(255, 255, 255, 0.45);
  }
  
  .dash-section {
    padding: 16px 20px 4px;
  }
  
  .dash-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  
  .dash-chart-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .dash-chart-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
  }
  
  .dash-legend {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .dash-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .dash-legend-sq {
    width: 6px;
    height: 6px;
    border-radius: 1px;
  }
  
  .dash-legend-item span {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.25);
  }
  
  .dash-chart-area {
    position: relative;
    height: 100px;
  }
  
  .dash-chart-grid {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(84, 130, 53, 0.08);
  }
  
  .dash-chart-grid:nth-child(1) {
    top: 0;
  }
  
  .dash-chart-grid:nth-child(2) {
    top: 25%;
  }
  
  .dash-chart-grid:nth-child(3) {
    top: 50%;
  }
  
  .dash-chart-grid:nth-child(4) {
    top: 75%;
  }
  
  .dash-chart-grid:nth-child(5) {
    top: 100%;
  }
  
  .dash-bars {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 100%;
    padding-bottom: 16px;
  }
  
  .dash-bar {
    flex: 1;
    height: 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, rgba(84, 130, 53, 0.5), rgba(84, 130, 53, 0.85));
    transition: height 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  }
  
  .dash-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, transparent 60%, rgba(255, 255, 255, 0.08));
    pointer-events: none;
  }
  
  .dash-bar:nth-child(1) {
    transition-delay: 0.3s;
  }
  
  .dash-bar:nth-child(2) {
    transition-delay: 0.34s;
  }
  
  .dash-bar:nth-child(3) {
    transition-delay: 0.38s;
  }
  
  .dash-bar:nth-child(4) {
    transition-delay: 0.42s;
  }
  
  .dash-bar:nth-child(5) {
    transition-delay: 0.46s;
  }
  
  .dash-bar:nth-child(6) {
    transition-delay: 0.5s;
  }
  
  .dash-bar:nth-child(7) {
    transition-delay: 0.54s;
  }
  
  .dash-bar:nth-child(8) {
    transition-delay: 0.58s;
  }
  
  .dash-bar:nth-child(9) {
    transition-delay: 0.62s;
  }
  
  .dash-bar:nth-child(10) {
    transition-delay: 0.66s;
  }
  
  .dash-bar:nth-child(11) {
    transition-delay: 0.7s;
  }
  
  .dash-bar:nth-child(12) {
    transition-delay: 0.74s;
  }
  
  .dash-months {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
    margin-bottom: 8px;
  }
  
  .dash-months span {
    flex: 1;
    text-align: center;
    font-size: 7px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
  }
  
  .dash-bottom {
    padding: 4px 20px 16px;
  }
  
  .dash-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .dash-panel {
    border-radius: 5px;
    padding: 10px 12px;
    background: rgba(84, 130, 53, 0.06);
    border: 1px solid rgba(84, 130, 53, 0.08);
  }
  
  .dash-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 6px;
  }
  
  .dash-panel-head svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
  
  .dash-panel-label {
    font-size: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
  }
  
  .dash-panel-label--solo {
    margin-bottom: 6px;
  }
  
  .dash-spark-wrap {
    width: 100%;
    height: 24px;
    display: block;
  }
  
  .dash-spark-fill {
    opacity: 0.3;
  }
  
  .dash-spark-stroke {
    fill: none;
    stroke: #4a7732;
    stroke-width: 1.5;
    stroke-linecap: round;
  }
  
  .dash-spark-stroke.dash-spark-draw {
    transition: stroke-dashoffset 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.5s;
  }
  
  .dash-rows .dash-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 4px;
  }
  
  .dash-rows .dash-row:last-child {
    margin-bottom: 0;
  }
  
  .dash-row-name {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.45);
  }
  
  .dash-row-right {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .dash-row-bar {
    height: 3px;
    border-radius: 999px;
  }
  
  .dash-row-val {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
  }
  
  /* ends here html animated widget   */