.vc_row.integration-main-row {
    background: #FFF3ED;
    border-radius: 24px;
    margin-inline: auto;
}
.integration-main-row .vc_column-inner {
    padding: 30px;
}


/*
  :root {
    --cream:    #FDF6F0;
    --peach:    #FAE8DF;
    --peach2:   #F5D5C8;
    --orange:   #E8622A;
    --orange-lt:#F4B49A;
    --brown:    #8B4A2F;
    --text:     #2C1810;
    --muted:    #9A7060;
    --border:   #EDD8CC;
    --card:     #FFFAF7;
    --white:    #FFFFFF;
    --shadow:   0 2px 12px rgba(140,70,40,0.08);
    --shadow-lg:0 8px 32px rgba(140,70,40,0.13);
  }
*/

.section-label {
    font-size: 16px;
    margin-bottom: 16px;
}

  /* ── TOP SECTION ── */
.top-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

  /* Category pills */
  .cats-panel {}
  .cat-pills {
    display: flex; flex-wrap: wrap; gap: 10px;
  }
.cat-pill {
    padding: 10px 15px;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    transition: all 0.18s ease;
    user-select: none;
    border: 1px solid #FF8C5B;
    background: transparent;
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cat-pill:hover {
      background: transparent;
    border-color: #FF8C5B;
    color: #000;
}
.cat-pill.active {
    background: #FFE4D4;
}
.cat-pill.active::before {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    background: url(/wp-content/uploads/2026/03/check.svg) no-repeat center center;
    background-size: contain;
}
  /* Tools preview panel */
.tools-panel {
    background: #FFF3ED;
    border-radius: 18px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    position: relative;
    border: 1px solid #FFC5A9;
}
.tools-panel-empty {
    color: #D8C0B4;
  }

  /* Tool chip (draggable) */
  .tool-chip {
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    cursor: grab;
    transition: transform 0.18s cubic-bezier(.34,1.56,.64,1);
    user-select: none;
  }
  .tool-chip:hover { transform: translateY(-3px) scale(1.05); }
  .tool-chip:active { cursor: grabbing; }
  .tool-chip.dragging { opacity: 0.35; transform: scale(0.9); }

.tool-icon {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 16px 0px #00000026;
}
  .tool-icon img {
    width: 36px; height: 36px; object-fit: contain;
  }
  .tool-icon-letter {
    font-size: 18px; font-weight: 800;
  }
.tool-name-label {
    font-size: 11px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

  /* Already-in-stack overlay */
  .tool-chip.in-stack .tool-icon::after {
    content: '✓';
    position: absolute; inset: 0;
    background: rgba(232,98,42,0.88);
    color: white; font-size: 22px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
  }
  .tool-chip.in-stack { opacity: 0.7; cursor: not-allowed; }
  .tool-chip.in-stack:hover { transform: none; }

  /* ── DIVIDER ── */
  .divider {
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin-bottom: 28px;
  }

  /* ── BOTTOM SECTION (workflow builder) ── */
.bottom-section {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}
  /* Azeon box */
.azeon-box {
    border-radius: 18px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 140px;
    justify-content: center;
    position: relative;
    border: 0.8px solid #FFC5A9;
    width: 240px;
    height: 240px;
}
.azeon-box-label, .your-stack {
      gap: 5px;
    font-size: 12px;
    position: absolute;
    top: 15px;
    background: #FFE4D4;
    line-height: 1;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    width: auto;
}
.azeon-big-icon {
    margin-top: 40px;
}
  /* Drop zone */
.drop-zone {
    border-radius: 18px;
    min-height: 130px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
    width: 240px;
    height: 240px;
    border: 1px dashed #FFC5A9;
}
  .drop-zone.drag-over {
    background: #FEF0EA;
    box-shadow: 0 0 0 4px rgba(232,98,42,0.1);
  }

.drop-placeholder {
    font-size: 18px;
    color: #D8C0B4;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}
  .drop-placeholder span {
    display: block; font-size: 22px; margin-bottom: 6px;
  }

  /* Dropped tools in stack */
.stack-tools {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 8px;
}
  .stack-chip {
    position: relative; cursor: pointer;
    animation: popIn 0.3s cubic-bezier(.34,1.56,.64,1) both;
  }
  @keyframes popIn {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
  }
.stack-chip .remove-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e8622ae0;
    color: white;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 2;
}
  .stack-chip:hover .remove-btn { opacity: 1; }
  .stack-chip .tool-icon {
    width: 50px; height: 50px; border-radius: 13px;
  }
  .stack-chip .tool-name-label {
    font-size: 10px;
    display: none;
}

  /* Result panel */
.result-panel {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 500px;
    height: 100%;
    border: 1px solid #FFC5A9;
}
.result-panel-label {
    font-size: 12px;
    background: #FFE4D4;
    border-radius: 9px;
    padding: 3px 10px;
    display: inline-block;
    margin-bottom: 12px;
}
.result-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    color: #D8C0B4;
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
}
.result-title {
    margin-bottom: 10px;
    font-size: 14px;
}
  .result-tags {
    display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px;
    min-height: 20px;
  }
.result-tag {
    font-size: 10px;
    background: #FFE4D4;
    border: 1px solid #FF8C5B;
    border-radius: 6px;
    animation: tagPop 0.2s cubic-bezier(.34,1.56,.64,1) both;
    color: #000;
    line-height: 1;
    padding: 8px 10px;
}
.result-body {
    font-size: 14px;
}
  @keyframes tagPop {
    from { opacity:0; transform:scale(0.7); }
    to   { opacity:1; transform:scale(1); }
  }
  /* streaming cursor */
  .stream-cursor {
    display: inline-block;
    width: 2px; height: 12px;
    background: var(--orange);
    margin-left: 1px;
    vertical-align: middle;
    border-radius: 1px;
    animation: cursorBlink 0.7s steps(1) infinite;
  }
  @keyframes cursorBlink { 0%,100%{opacity:1;} 50%{opacity:0;} }
  .stream-cursor.done { display: none; }


  /* ── DRAG GHOST ── */
  #drag-ghost {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1.1);
    transition: none;
    display: none;
  }
  #drag-ghost .tool-icon {
    width: 56px; height: 56px; border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }

  /* ── TOOLTIP ── */
  .max-toast {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
    background: var(--text); color: white;
    font-size: 13px; font-weight: 500;
    padding: 10px 20px; border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
  }
  .max-toast.show { opacity: 1; }




  /**/
  .integration-icon img {
    width: 40px;
    height: 40px;
}
.integration-cards-row .integration-card {
    background: #FFF3ED;
    border: 0.67px solid #F1D2C4;
    width: 100%;
    box-shadow: 0px 4px 20px 0px #FF8C5B0F;
    border-radius: 20px;
}
.integration-cards-row .integration-card > .vc_column-inner {
    padding: 25px;
}
.integration-icon {
    margin-bottom: 15px;
}
.vc_row.integration-cards-row {
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}



.vc_row.workflow-row {
    background: #FFF3ED;
    padding: 40px;
    border-radius: 24px;
    margin-inline: auto;
}
.work-content-col .w-list {
    border: 0.67px solid #F1D2C4;
    margin-bottom: 15px;
    border-radius: 14px;
    background: #FFF8F3;
}
.work-content-col .w-list > .wpb_wrapper {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.work-content-col .w-list:last-child {
    margin-bottom: 0;
}
.workflow-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
}
.w-lst-title {
    font-weight: 600;
    font-size: 14px;
    color: #2A1E1A;
}
.w-lst-duration {
    font-size: 12px;
    color: #9B8174;
}
.w-lst-icon {
    width: 32px;
    height: 32px;
    background: #FFE4D4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
        min-width: 32px;
}
.w-lst-icon-cont {
    display: flex;
    align-items: center;
    gap: 12px;
}
section.workflow-section {
    padding-top: 0 !important;
}

.title-row .az-btn-icon.button-link.vc_btn3-container  .vc_general.vc_btn3 {
    white-space: nowrap;
}

/*.vc_row.workflow-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
}
.work-content-col, .work-img-col, .work-title-col {
    width: 100%;
}*/

.integration-btn a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FF8C5B;
}
.integration-btn a img {
    max-width: 13px;
}


@media (max-width: 1200px) {
.workflow-title {font-size: 38px;}
.vc_row.workflow-row { padding: 35px 20px;}
.cat-pill{font-size: 14px;}


  }

@media (max-width: 960px) {
  .top-section {grid-template-columns: 1fr; }
  .bottom-section { flex-wrap: wrap; gap: 30px;}

.workflow-row .work-title-col, .workflow-row .work-content-col {width: 100%; }
.vc_row.workflow-row { gap: 0;justify-content: center;}
.workflow-title {text-align: center !important; }
.title-row-btn {width: 173px; }


}


@media (max-width: 767px) {
.drop-zone, .op-symbol, .azeon-box {width: 100%; text-align: center; }
.mb-5 {margin-bottom: 30px !important; }
.integration-main-row .vc_column-inner {padding: 25px; }
.vc_row.integration-main-row { border-radius: 14px;}
    .title-row-btn {width: 100%; }
    .title-row-btn .vc_btn3-container.vc_btn3-right {text-align: center; }
}

@media (max-width: 480px) {
.workflow-section .title-row {flex-direction: column; gap: 20px; }
.vc_row.workflow-row{    border-radius: 14px;}
.workflow-section .az-tag {text-align: center !important; }
.workflow-section  .main-title {text-align: center !important; }
.workflow-row  .vc_column-inner {padding: 0; }
.w-lst-check-icon img {min-width: 20px; }
.workflow-title {font-size: 28px;}
.cat-pill {padding: 8px 12px;}



}