/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Start pricing table    */
<style>
  .helios-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    font-size: 15px;
  }

  .helios-pricing-table th,
  .helios-pricing-table td {
    border: 1px solid rgba(255,255,255,0.12);
    padding: 18px 20px;
    vertical-align: top;
  }

  .helios-pricing-table th {
    background: rgba(0,0,0,0.45);
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    text-align: left;
  }

  .helios-pricing-table td {
    background: rgba(0,0,0,0.25);
    color: #f5f5f5;
  }
.helios-pricing-table p {
    color: #fff;
  }
.helios-pricing-table a {
    color: #fff;
  }

  .helios-pricing-table .pricing-label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f97316;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .helios-pricing-table .price-main {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
  }

  .helios-pricing-table .price-sub {
    font-size: 13px;
    opacity: 0.8;
  }

  .helios-pricing-table ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .helios-pricing-table li {
    background: #e04403;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
  }

  .helios-pricing-table .row-heading {
    font-weight: 600;
    color: #e5e7eb;
    width: 18%;
    min-width: 140px;
    background: rgba(0,0,0,0.65);
  }

  .helios-badge-rec {
    display: inline-block;
    background: #f97316;
    color: #111827;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    padding: 4px 10px;
    margin-left: 8px;
  }

  .helios-pricing-table .recommended {
    box-shadow: 0 0 0 1px #f97316;
  }

  /* Simple responsive stacking */
  @media (max-width: 900px) {
    .helios-pricing-table, 
    .helios-pricing-table thead, 
    .helios-pricing-table tbody, 
    .helios-pricing-table th, 
    .helios-pricing-table td, 
    .helios-pricing-table tr {
      display: block;
    }
    .helios-pricing-table tr {
      margin-bottom: 18px;
    }
    .helios-pricing-table .row-heading {
      width: 100%;
      border-bottom: none;
    }
    .helios-pricing-table td {
      border-top: none;
    }
  }

.helios-pricing-slider {
    display: none;
  }

  /* Mobile breakpoint */
  @media (max-width: 768px) {
    .helios-pricing-table {
      display: none;
    }
    .helios-pricing-slider {
      display: block;
      max-width: 360px;
      margin: 0 auto;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    }
    .helios-pricing-card {
      display: none;
      background: #fff;
      border-radius: 16px;
      padding: 24px 20px;
      color: #f5f5f5;
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
      text-align: left;
    }
    .helios-pricing-card.active {
      display: block;
    }
    .helios-pricing-card h3 {
      font-size: 1.25rem;
      margin-bottom: 6px;
    }
    .helios-pricing-card .tagline {
      font-size: 0.9rem;
      opacity: 0.85;
      margin-bottom: 16px;
    }
    .helios-pricing-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 16px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .helios-pricing-card li {
      background: #E04403;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 0.8rem;
      color: #fff;
      white-space: nowrap;
    }
    .helios-slider-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 12px;
      font-size: 0.8rem;
    }
    .helios-slider-controls button {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 999px;
      padding: 6px 12px;
      color: #f5f5f5;
      cursor: pointer;
    }
    .helios-slider-controls button:disabled {
      opacity: 0.4;
      cursor: default;
    }
  }
/* End pricing table    */

/*------------------------------------------------------------------------*/

/* Start Hero Animation outsourced CIO  */
/* Hide SEO text but keep for crawlers & screen readers */
.cio-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

/* Container for the animated part */
.cio-anim {
  display: inline-block;
}

/* Prefix where Out and In overlap */
.cio-prefix {
  position: relative;
  display: inline-block;
  width: 3ch;         /* enough to hold “Out” / “In” */
}

/* After OUT fades, shrink prefix width */
.cio-prefix.cio-collapse {
  width: auto !important;
}

/* OUT word – initial state */
.cio-out {
  position: relative;
  display: inline-block;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* Step 2: strike through OUT */
.cio-out.striked {
  text-decoration: line-through;
  text-decoration-color: #f7941d;
  text-decoration-thickness: 2px;
}

/* Step 4: fade OUT away */
.cio-out.fade-out {
  opacity: 0;
}

/* IN word – positioned on top of OUT, initially hidden */
.cio-in {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Step 3: fade/slide IN into place */
.cio-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* End Hero Animation outsourced CIO  */

/* blog summary white texts */
.summary-white {
    font-size: 16px;
    color: #ffffff;
}

/*------------------------------------------------------------------------*/

</style>