.elementor-1538 .elementor-element.elementor-element-0a26320{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-start;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS *//* =========================================================
     WHAT IS SYNQBRAND — CORE SYSTEM DIAGRAM
     ========================================================= */

  .synq-kc-system-diagram {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    margin: 38px 0 48px;
    padding: 28px 24px;
    overflow: hidden;
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(20, 160, 200, 0.12),
        transparent 42%
      ),
      linear-gradient(
        135deg,
        #f7fcfd 0%,
        #ffffff 50%,
        #eef9fc 100%
      );
    border: 1px solid var(--synq-line);
    border-radius: 18px;
  }

  .synq-kc-system-diagram::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(20, 160, 200, 0.12),
      rgba(20, 160, 200, 0.85),
      rgba(20, 160, 200, 0.12)
    );
    transform: translateY(-50%);
  }

  .synq-kc-system-step {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 0;
    text-align: center;
  }

  .synq-kc-system-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
    color: var(--synq-primary-dark);
    background: var(--synq-white);
    border: 1px solid rgba(20, 160, 200, 0.28);
    border-radius: 17px;
    box-shadow: 0 10px 28px rgba(16, 35, 45, 0.08);
  }

  .synq-kc-system-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .synq-kc-system-title {
    max-width: 130px;
    margin: 0;
    color: var(--synq-dark);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
  }

  .synq-kc-system-arrow {
    position: absolute;
    z-index: 3;
    top: 31px;
    right: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--synq-primary);
    background: var(--synq-white);
    border: 1px solid rgba(20, 160, 200, 0.3);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
  }

  .synq-kc-system-step:last-child .synq-kc-system-arrow {
    display: none;
  }

  .synq-kc-system-caption {
    position: relative;
    z-index: 2;
    grid-column: 1 / -1;
    max-width: 720px;
    margin: 27px auto 0;
    padding-top: 23px;
    color: var(--synq-muted);
    border-top: 1px solid var(--synq-line);
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
  }

  @media (max-width: 900px) {
    .synq-kc-system-diagram {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 30px 12px;
    }

    .synq-kc-system-diagram::before {
      display: none;
    }

    .synq-kc-system-arrow {
      display: none;
    }

    .synq-kc-system-step {
      padding: 12px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(220, 232, 236, 0.85);
      border-radius: 14px;
    }
  }

  @media (max-width: 560px) {
    .synq-kc-system-diagram {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      padding: 18px;
    }

    .synq-kc-system-icon {
      width: 54px;
      height: 54px;
    }

    .synq-kc-system-title {
      font-size: 13px;
    }

    .synq-kc-system-caption {
      margin-top: 12px;
    }
  }/* End custom CSS */