    .lsc-about {
      --blue: #2975AB;
      --blue-d: #1c5b85;
      --orange: #F6B330;
      --ink: #001233;
      --muted: #5d6b7e;
      --soft: #f6f8fb;
      --line: #e7ecf3;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 767px) {
      .lsc-about {
        padding: 64px 0;
      }
    }

    .lsc-about.lsc-soft {
      background: var(--soft);
    }

    .lsc-eyebrow {
      display: inline-block;
      color: var(--orange);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .lsc-about h1.lsc-h,
    .lsc-about h2.lsc-h {
      color: var(--ink);
      font-weight: 700;
      line-height: 1.18;
      font-size: 40px;
      margin: 0 0 18px;
    }

    @media (max-width: 991px) {

      .lsc-about h1.lsc-h,
      .lsc-about h2.lsc-h {
        font-size: 30px;
      }
    }

    .lsc-about p.lsc-p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
      margin: 0 0 16px;
    }

    .lsc-list {
      list-style: none;
      padding: 0;
      margin: 20px 0 0;
      display: grid;
      gap: 13px;
    }

    .lsc-list li {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      color: #2f3b4d;
      font-size: 15.5px;
      font-weight: 500;
      line-height: 1.6;
    }

    .lsc-list li i {
      color: var(--orange);
      font-size: 18px;
      margin-top: 2px;
      flex: none;
    }

    /* image figure with accent + floating badge */
    .lsc-figwrap {
      position: relative;
    }

    .lsc-figwrap::before {
      content: "";
      position: absolute;
      right: -20px;
      bottom: -20px;
      width: 58%;
      height: 62%;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--blue), var(--blue-d));
      opacity: .1;
      z-index: 0;
    }

    .lsc-figure {
      position: relative;
      z-index: 1;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 34px 70px -34px rgba(13, 40, 82, .45);
    }

    .lsc-figure img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    .lsc-fbadge {
      position: absolute;
      z-index: 2;
      left: -16px;
      bottom: 26px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 22px 44px -18px rgba(13, 40, 82, .42);
      padding: 15px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      max-width: 270px;
    }

    .lsc-fbadge .ic {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: var(--orange);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 20px;
      flex: none;
    }

    .lsc-fbadge b {
      display: block;
      color: var(--ink);
      font-size: 15px;
      line-height: 1.3;
    }

    .lsc-fbadge span {
      color: var(--muted);
      font-size: 12.5px;
    }

    @media (max-width: 991px) {
      .lsc-fbadge {
        left: 12px;
      }
    }

    .lsc-ctarow {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .lsc-ctarow .lsc-call {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--ink);
      font-weight: 700;
      font-size: 17px;
      text-decoration: none;
    }

    .lsc-ctarow .lsc-call .ic {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(41, 117, 171, .1);
      color: var(--blue);
      display: grid;
      place-items: center;
      font-size: 18px;
    }

    .lsc-ctarow .lsc-call small {
      display: block;
      color: var(--muted);
      font-weight: 500;
      font-size: 12px;
    }

    /* value cards */
    .lsc-vcard {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 32px 26px;
      height: 100%;
      transition: .25s;
    }

    .lsc-vcard:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 50px -30px rgba(13, 40, 82, .35);
      border-color: transparent;
    }

    .lsc-vicon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: linear-gradient(135deg, #3186bf, #1c5b85);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 22px;
    }

    .lsc-vcard h5 {
      color: var(--ink);
      font-size: 19px;
      font-weight: 700;
      margin: 0 0 10px;
    }

    .lsc-vcard p {
      margin: 0;
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--muted);
    }

    /* process steps */
    .lsc-steps {
      display: grid;
      gap: 16px;
    }

    .lsc-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 22px 24px;
      transition: .25s;
    }

    .lsc-step:hover {
      box-shadow: 0 24px 44px -28px rgba(13, 40, 82, .35);
      transform: translateX(4px);
      border-color: transparent;
    }

    .lsc-step .num {
      flex: none;
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(41, 117, 171, .1);
      color: var(--blue);
      font-weight: 800;
      font-size: 19px;
      display: grid;
      place-items: center;
    }

    .lsc-step h6 {
      margin: 0 0 4px;
      color: var(--ink);
      font-size: 17px;
      font-weight: 700;
    }

    .lsc-step p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* mid statement band */
    .lsc-statement {
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
    }

    .lsc-statement .lsc-h {
      margin-bottom: 16px;
    }

    /* CTA band */
    .lsc-cta {
      padding: 0 0 100px;
    }

    @media (max-width: 767px) {
      .lsc-cta {
        padding: 0 0 64px;
      }
    }

    .lsc-ctaband {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      padding: 84px 40px;
      text-align: center;
      background-size: cover;
      background-position: center;
    }

    .lsc-ctaband::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(20, 62, 92, .94), rgba(20, 62, 92, .62));
    }

    .lsc-ctaband>* {
      position: relative;
      z-index: 2;
    }

    .lsc-ctaband h2 {
      color: #fff;
      font-size: 36px;
      font-weight: 700;
      margin: 0 0 14px;
      line-height: 1.25;
    }

    .lsc-ctaband p {
      color: rgba(255, 255, 255, .86);
      max-width: 620px;
      margin: 0 auto 30px;
      font-size: 16px;
      line-height: 1.7;
    }

    @media (max-width: 767px) {
      .lsc-ctaband {
        padding: 56px 22px;
      }

      .lsc-ctaband h2 {
        font-size: 26px;
      }
    }
