
  /* ----- GLOBAL WRAPPER ----- */
  .welo-section {
    width: 100vw;
    background: #000;
    color: #fff;
    padding: 90px 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
  }

  .welo-container {
    width: 100%;
    max-width: 1250px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* MAIN TEXT (smaller & cleaner) */
  .welo-main-text {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.45;
    max-width: 850px;
    opacity: 0.95;
  }

  /* SLIDER AREA */
  .welo-slider-wrap {
    margin-top: 5px;
  }

  .welo-slider-label {
    font-size: 16px;
    opacity: 0.75;
    margin-bottom: 10px;
  }

  .welo-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #222;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
  }

  .welo-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #006CFF;
    cursor: pointer;
  }

  /* OUTPUT */
  .welo-output {
    font-size: 22px;
    font-weight: 600;
    margin-top: 12px;
  }

  /* CTA BUTTON */
  .welo-button {
    background: #006CFF;
    padding: 14px 30px;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
    transition: 0.25s;
  }

  .welo-button:hover {
    opacity: 0.8;
  }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 768px) {
    .welo-main-text {
      font-size: 22px;
      line-height: 1.45;
    }

    .welo-output {
      font-size: 20px;
    }
  }
