/* ───────────────────────────────────────────
       SECTION — full width background
    ─────────────────────────────────────────── */
    .demo-section {
      width: 100%;
      background: url("/template/71b0727d/images/book-a-demo-bg.png") no-repeat;
      background-size: cover;
      background-position: bottom;
    }

    /* ───────────────────────────────────────────
       INNER CONTAINER
    ─────────────────────────────────────────── */
    .demo-section__inner {
      max-width: 1460px;
      margin: 0 auto;
      padding: 0 30px 150px;
      display: flex !important;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 0;
    }

    /* ───────────────────────────────────────────
       LEFT — SCROLLABLE CONTENT
    ─────────────────────────────────────────── */
    .demo-section__left {
      width: 60%;
      display: flex;
      flex-direction: column;
      padding: 100px 160px 0 0;
    }

    /* Heading */
    .demo-section__heading-wrapper {
      margin-bottom: 20px;
    }

    .demo-section__heading {
      color: #000;
      padding: 0;
      margin: 0;
      font-family: Lufga, Arial, sans-serif;
      font-weight: 600;
      font-size: 62px;
      letter-spacing: -0.01em;
      line-height: 70px;
    }

    /* Intro desc */
    .demo-section__intro-wrapper {
      margin-bottom: 24px;
    }

    .demo-section__intro-wrapper p {
      color: #000;
      padding: 0;
      margin: 0 0 15px;
      font-family: Lufga, Arial, sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 31px;
      letter-spacing: 0.01em;
    }

    .demo-section__intro-wrapper p:last-of-type {
      margin: 0;
    }

    /* Meta pills row */
    .demo-section__meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px 28px;
      margin-bottom: 28px;
    }

    .demo-section__meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .demo-section__meta-icon {
      width: 20px;
      height: 20px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }

    .demo-section__meta-text {
      color: #000;
      font-family: Lufga, Arial, sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 100%;
      letter-spacing: 0;
    }

    /* "This demo is for" label */
    .demo-section__for-label-wrapper {
      margin-bottom: 12px;
    }

    .demo-section__for-label {
      text-transform: uppercase;
      color: rgba(31, 42, 55, 0.5);
      font-family: Lufga, Arial, sans-serif;
      font-weight: 500;
      font-size: 15px;
      line-height: 100%;
      letter-spacing: 0;
    }

    /* Audience tags */
    .demo-section__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 40px;
    }

    .demo-section__tag {
      display: inline-block;
      color: #0052cc;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(0, 82, 204, 0.08);
      border: 1px solid rgba(0, 82, 204, 0.4);
      font-family: Lufga, Arial, sans-serif;
      font-weight: 500;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: -0.01em;
      text-align: center;
    }

    /* Steps list */
    .demo-section__steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .demo-section__step {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      position: relative;
      padding: 0 0 35px;
    }

    .demo-section__step::before {
      display: none;
    }

    .demo-section__step:last-child {
      padding-bottom: 0;
    }

    /* Vertical line between steps */
    .demo-section__step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 16px;
      top: 40px;
      width: 2px;
      bottom: 0;
      background: #dee8fa;
      height: 74px;
    }

    /* Step number badge */
    .demo-section__step-num {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(0, 82, 204, 1);
      font-family: Lufga, Arial, sans-serif;
      font-weight: 600;
      font-size: 24px;
      line-height: 36px;
      letter-spacing: 0;
      text-align: center;
      background: rgba(0, 82, 204, 0.1);
    }

    /* Step content */
    .demo-section__step-body {
      flex: 1;
    }

    .demo-section__step-title {
      color: #000;
      letter-spacing: 0;
      margin: 0 0 10px;
      padding: 0;
      font-family: Lufga, Arial, sans-serif;
      font-weight: 500;
      font-size: 22px;
      line-height: 34px;
    }

    .demo-section__step-desc-wrapper p {
      font-family: Lufga, Arial, sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 25px;
      letter-spacing: 0;
      padding: 0;
      margin: 0;
    }

    /* ───────────────────────────────────────────
       RIGHT — STICKY CALENDAR
    ─────────────────────────────────────────── */
    .demo-section__right {
      width: 40%;
      position: sticky;
      top: 40px;
      align-self: flex-start;
      padding: 100px 0 0;
    }

    .demo-section__image-wrapper {
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
    }

    .demo-section__image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1440px
    ─────────────────────────────────────────── */
    @media (max-width: 1440px) {
      .demo-section__inner {
  padding: 0 30px 120px;
      }

      .demo-section__heading {
        font-size: 45px;
        line-height: 55px;
      }

      .demo-section__left {
        padding: 100px 100px 0 0;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1366px
    ─────────────────────────────────────────── */
    @media (max-width: 1366px) {
      .demo-section__heading {
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1280px
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {
      .demo-section__heading {
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .demo-section__inner {
        padding: 0 20px 100px;
      }

      .demo-section__left {
        padding: 80px 40px 0 0;
      }

      .demo-section__heading {
        font-size: 40px;
        line-height: 50px;
      }

      .demo-section__intro-wrapper p,
      .demo-section__step-desc-wrapper p {
      }
      .demo-section__right {
  padding: 80px 0 0;
}
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 991px
    ─────────────────────────────────────────── */
    @media (max-width: 991px) {
            .demo-section__inner {
        flex-direction: column;
      }

      .demo-section__left {
        padding: 80px 0 30px;
        width: 100%;
      }
           .demo-section__right {
  padding: 0;
  width: 100%;
}
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .demo-section__inner {
        flex-direction: column;
        padding: 40px 15px 60px;
      }

      .demo-section__left {
        padding: 0 0 30px;
      }

      .demo-section__right {
        position: static;
        width: 100%;
        padding: 0;
      }

      .demo-section__heading {
        font-size: 30px;
        line-height: 40px;
      }

      .demo-section__tags {
        margin-bottom: 30px;
        gap: 15px 10px;
      }
          .demo-section__meta-item {
      gap: 15px 10px;
    }
      .demo-section__step-title {
  font-size: 18px;
  line-height:30px;
}
      .demo-section__step {
  gap: 20px;
  padding: 0 0 30px;
}
      .demo-section__step-num {
  font-size:16px;
  line-height: 26px;
}
      .demo-section__step::after {
  display:none
}
    }