  /* ----- Layout ----- */
  .home-why-us {
    background-color: #f0f2f5;
    padding: 80px 0;
  }

  /* ----- Left column ----- */
  .home-why-us .home-why-us__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .home-why-us .home-why-us__eyebrow-bar {
    width: 4px;
    height: 18px;
    background-color: #dd6402;
    display: inline-block;
    border-radius: 2px;
  }

  .home-why-us .home-why-us__eyebrow-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #dd6402;
    margin: 0;
  }

  .home-why-us .home-why-us__heading {
    font-size: 30px;
    font-weight: 800;
    color: #0d2d3a;
    line-height: 1.2;
    margin: 0 0 40px 0;
  }

  /* ----- Feature items ----- */
  .home-why-us .home-why-us__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .home-why-us .home-why-us__feature:last-child {
    margin-bottom: 0;
  }

  .home-why-us .home-why-us__icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: 2px solid #dd6402;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dd6402;
    font-size: 22px;
  }

  .home-why-us .home-why-us__feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d2d3a;
    margin: 0 0 6px 0;
  }

  .home-why-us .home-why-us__feature-text {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0;
  }

  /* ----- Right column — image + badge ----- */
  .home-why-us .home-why-us__image-wrap {
    position: relative;
  }

  .home-why-us .home-why-us__image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
  }

  .home-why-us .home-why-us__badge {
    position: absolute;
    bottom: 0;
    left: -30px;
    background-color: #dd6402;
    color: #fff;
    padding: 28px 32px;
    max-width: 260px;
    border-radius: 2px;
  }

  .home-why-us .home-why-us__badge-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: #fff;
  }

  .home-why-us .home-why-us__badge-author {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
  }

  /* ----- Responsive ----- */
  @media (max-width: 767px) {
    .home-why-us {
      padding: 50px 0;
    }

    .home-why-us .home-why-us__heading {
      font-size: 22px;
    }

    .home-why-us .home-why-us__image-wrap {
      margin-top: 40px;
    }

    .home-why-us .home-why-us__badge {
      left: 0;
      max-width: 100%;
      position: relative;
      margin-top: -4px;
    }

    .home-why-us .home-why-us__image-wrap img {
      height: 300px;
    }
  }
