
    .kd-custom-hero {
      width: 100%;
      background: #EEF3F5;
      padding: 86px 0;
      box-sizing: border-box;
      font-family: Inter, Arial, sans-serif;
    }

    .kd-custom-hero *,
    .kd-custom-hero *::before,
    .kd-custom-hero *::after {
      box-sizing: border-box;
    }

    .kd-custom-hero .kd-custom-container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 56px;
      align-items: center;
    }

    /* =========================
       LEFT CONTENT
    ========================= */

    .kd-custom-hero-content {
      min-width: 0;
    }

    .kd-custom-hero-eyebrow {
      margin: 0 0 14px;
      color: #159A9C;
      font-family: Inter, Arial, sans-serif;
      font-size: 13px;
      line-height: 1.4;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .kd-custom-hero-title {
      max-width: 650px;
      margin: 0;
      color: #14213D;
      font-family: Manrope, Arial, sans-serif;
      font-size: 56px;
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -0.04em;
    }

    .kd-custom-hero-description {
      max-width: 620px;
      margin: 23px 0 0;
      color: #69757E;
      font-family: Inter, Arial, sans-serif;
      font-size: 17px;
      line-height: 1.8;
      font-weight: 400;
    }

    /* =========================
       BUTTONS
    ========================= */

    .kd-custom-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 31px;
    }

    .kd-custom-hero-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 25px;
      border: 1px solid #159A9C;
      background: #159A9C;
      color: #ffffff;
      font-family: Inter, Arial, sans-serif;
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
    }

    .kd-custom-hero-button:hover {
      background: #117E80;
      border-color: #117E80;
      color: #ffffff;
    }

    .kd-custom-hero-button-outline {
      background: transparent;
      color: #14213D;
      border-color: #14213D;
    }

    .kd-custom-hero-button-outline:hover {
      background: #14213D;
      border-color: #14213D;
      color: #ffffff;
    }

    /* =========================
       SUPPORTING POINTS
    ========================= */

    .kd-custom-hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin-top: 27px;
    }

    .kd-custom-hero-point {
      position: relative;
      padding-left: 14px;
      color: #69757E;
      font-family: Inter, Arial, sans-serif;
      font-size: 13px;
      line-height: 1.5;
    }

    .kd-custom-hero-point::before {
      content: "";
      position: absolute;
      left: 0;
      top: 7px;
      width: 5px;
      height: 5px;
      background: #159A9C;
    }

    /* =========================
       RIGHT IMAGE
    ========================= */

    .kd-custom-hero-visual {
      position: relative;
      min-width: 0;
    }

    .kd-custom-hero-image {
      width: 100%;
      height: 560px;
      overflow: hidden;
      background: #dfe7ea;
    }

    .kd-custom-hero-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* =========================
       FLOATING INFO BLOCK
    ========================= */

    .kd-custom-hero-info {
      position: absolute;
      left: -28px;
      bottom: 28px;
      width: 260px;
      padding: 24px 25px;
      background: #14213D;
    }

    .kd-custom-hero-info-label {
      display: block;
      margin: 0 0 10px;
      color: #72C8C9;
      font-family: Inter, Arial, sans-serif;
      font-size: 11px;
      line-height: 1.4;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .kd-custom-hero-info-title {
      margin: 0;
      color: #ffffff;
      font-family: Manrope, Arial, sans-serif;
      font-size: 21px;
      line-height: 1.3;
      font-weight: 700;
    }

    .kd-custom-hero-info-text {
      margin: 10px 0 0;
      color: #D4DDE3;
      font-family: Inter, Arial, sans-serif;
      font-size: 13px;
      line-height: 1.65;
    }


    /* =========================================================
       TABLET
    ========================================================= */

    @media (max-width: 1050px) {

      .kd-custom-hero {
        padding: 68px 0;
      }

      .kd-custom-hero .kd-custom-container {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-left: 22px;
        padding-right: 22px;
      }

      .kd-custom-hero-title {
        max-width: 760px;
        font-size: 46px;
      }

      .kd-custom-hero-description {
        max-width: 760px;
        font-size: 16px;
      }

      .kd-custom-hero-image {
        height: 500px;
      }

      .kd-custom-hero-info {
        left: 22px;
      }
    }


    /* =========================================================
       MOBILE
    ========================================================= */

    @media (max-width: 640px) {

      .kd-custom-hero {
        padding: 54px 0;
      }

      .kd-custom-hero .kd-custom-container {
        gap: 30px;
        padding-left: 18px;
        padding-right: 18px;
      }

      .kd-custom-hero-eyebrow {
        margin-bottom: 11px;
        font-size: 12px;
      }

      .kd-custom-hero-title {
        font-size: 34px;
        line-height: 1.14;
        letter-spacing: -0.03em;
      }

      .kd-custom-hero-description {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.75;
      }

      .kd-custom-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 25px;
      }

      .kd-custom-hero-button {
        width: 100%;
        min-height: 48px;
      }

      .kd-custom-hero-points {
        display: grid;
        gap: 8px;
        margin-top: 21px;
      }

      .kd-custom-hero-point {
        font-size: 12px;
      }

      .kd-custom-hero-image {
        height: 340px;
      }

      .kd-custom-hero-info {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: -1px;
        padding: 21px 20px;
      }

      .kd-custom-hero-info-title {
        font-size: 19px;
      }

      .kd-custom-hero-info-text {
        font-size: 12px;
      }
    }


    /* =========================================================
       SMALL MOBILE
    ========================================================= */

    @media (max-width: 380px) {

      .kd-custom-hero {
        padding: 46px 0;
      }

      .kd-custom-hero .kd-custom-container {
        padding-left: 15px;
        padding-right: 15px;
      }

      .kd-custom-hero-title {
        font-size: 31px;
      }

      .kd-custom-hero-description {
        font-size: 13px;
      }

      .kd-custom-hero-image {
        height: 290px;
      }

      .kd-custom-hero-info {
        padding: 19px 18px;
      }
    }
  