/* ───────────────────────────────────────────
       SECTION
    ─────────────────────────────────────────── */
    .pricing-section {
      background: url("/template/71b0727d/images/start-free-scale-bg.png") no-repeat;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto 130px;
      background-size: cover;
      border-radius: 15px;
    }

    .pricing-section__inner {
      padding: 100px;
      display: flex;
      align-items: center;
      gap: 80px;
      border-radius: 10px;
    }

    /* ───────────────────────────────────────────
       LEFT COLUMN
    ─────────────────────────────────────────── */
    .pricing-section__left {
      flex: 0 0 50%;
      max-width: 50%;
      display: flex;
      flex-direction: column;
    }

    .pricing-section__heading-wrapper {
    }

    .pricing-section__heading {
      color: #000;
      margin: 0 0 20px;
      font-family: Lufga;
      font-weight: 600;
      font-size: 46px;
      line-height: 55px;
      letter-spacing: 0;
    }

    .pricing-section__desc-wrapper {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 35px;
    }

    .pricing-section__desc-wrapper p {
      color: #000;
      font-family: Lufga;
      font-weight: 400;
      font-size: 16px;
      line-height: 31px;
      letter-spacing: 0.01em;
      margin: 0 0 15px;
    }

    /* ───────────────────────────────────────────
       CTA
    ─────────────────────────────────────────── */
    .pricing-section__cta-wrapper {
      margin-top: 4px;
    }

    .pricing-section__cta {
      max-width: 165px;
      color: #fff !important;
      background: #0052cc;
      border: 0;
      height: 39px;
      padding: 10px 5px;
      border-radius: 50px;
      text-align: center;
      margin: 0;
      text-decoration: none;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s;
      font-family: Lufga;
      font-weight: 500;
      font-size: 16px;
      line-height: 100%;
      letter-spacing: 0.02em;
      width: 100%;
      display: block;
    }

    .pricing-section__cta:hover {
      background: #000;
      text-decoration: none;
    }

    /* ───────────────────────────────────────────
       RIGHT COLUMN — IMAGE
    ─────────────────────────────────────────── */
    .pricing-section__right {
      flex: 1;
    }

    .pricing-section__image-wrapper {
      width: 100%;
      height: 440px;
      border-radius: 16px;
      overflow: hidden;
    }

    .pricing-section__image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1440px
    ─────────────────────────────────────────── */
    @media (max-width: 1440px) {
      .pricing-section__inner {
        padding: 80px 80px;
        gap: 64px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1366px
    ─────────────────────────────────────────── */
    @media (max-width: 1366px) {
      .pricing-section__inner {
        padding: 72px 60px;
        gap: 56px;
      }

      .pricing-section__heading {
        font-size: 44px;
      }

      .pricing-section__image-wrapper {
        height: 400px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1280px
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {
      .pricing-section__inner {
        padding: 64px 48px;
        gap: 48px;
      }

      .pricing-section__heading {
        font-size: 40px;
      }

      .pricing-section__image-wrapper {
        height: 380px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .pricing-section__inner {
        padding: 56px 40px;
        gap: 40px;
      }

      .pricing-section__left {
        flex: 0 0 52%;
        max-width: 52%;
      }

      .pricing-section__heading {
        font-size: 36px;
      }

      .pricing-section__desc-wrapper p {
        font-size: 15px;
      }

      .pricing-section__image-wrapper {
        height: 340px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 991px
    ─────────────────────────────────────────── */
    @media (max-width: 991px) {
      .pricing-section__inner {
        padding: 48px 32px;
        gap: 32px;
      }

      .pricing-section__left {
        flex: 0 0 54%;
        max-width: 54%;
      }

      .pricing-section__heading {
        font-size: 32px;
      }

      .pricing-section__image-wrapper {
        height: 300px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .pricing-section__inner {
        flex-direction: column;
        padding: 40px 24px;
        gap: 36px;
      }

      .pricing-section__left {
        flex: none;
        max-width: 100%;
        width: 100%;
      }

      .pricing-section__right {
        width: 100%;
      }

      .pricing-section__heading {
        font-size: 30px;
      }

      .pricing-section__image-wrapper {
        height: 280px;
      }
    }