/* ─────────────────────────────────────────
   Engage Page
───────────────────────────────────────── */

.engage-ways-header-center {
    text-align: center;
    align-items: center;
}

.engage-vehicles-grid,
.engage-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: max(20px, 1.5vw);
}

.engage-process-grid {
    grid-template-columns: repeat(5, 1fr);
}

.engage-process-grid {
    gap: 0;
}

.engage-process-grid .dib-process-step {
    padding: 0 max(24px, 2vw);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.engage-process-grid .dib-process-step:first-child {
    padding-left: 0;
}

.engage-process-grid .dib-process-step:last-child {
    border-right: none;
    padding-right: 0;
}

.engage-process-grid .dib-step-icon {
    width: max(40px, 2.8vw);
    height: max(40px, 2.8vw);
    border-radius: max(6px, 0.42vw);
    border: 1px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
    margin-bottom: max(16px, 1.2vw);
}

.engage-process-grid .dib-step-icon svg {
    width: 20px;
    height: 20px;
}

.engage-process-grid .dib-step-title {
    font-weight: 600;
}

.engage-process-grid .dib-way-list li {
    opacity: 1;
}

.engage-sbir-section {
    text-align: center;
}

.engage-sbir-section .dib-ways-header {
    align-items: center;
}

.engage-sbir-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: max(24px, 2vw);
}

.engage-sbir-list {
    display: flex;
    flex-direction: column;
    gap: max(10px, 0.75vw);
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.engage-sbir-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font2);
    font-size: max(14px, calc(1vw * var(--scale)));
    line-height: 155%;
    color: var(--overlay-text-color);
    opacity: 0.75;
    text-transform: none;
}

.engage-sbir-list li svg {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

.engage-sbir-list li strong {
    font-weight: 700 !important;
    opacity: 1 !important;
    color: var(--overlay-text-color) !important;
}


/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */

@media screen and (max-width: 1080px) {
    .engage-process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: max(32px, 2.5vw);
    }

    .engage-process-grid .dib-process-step:nth-child(3) {
        border-right: none;
        padding-right: 0;
    }

    .engage-process-grid .dib-process-step:nth-child(4) {
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .dib-process-header {
        margin-bottom: max(28px, 2.25vw);
    }

    .engage-vehicles-grid,
    .engage-team-grid {
        grid-template-columns: 1fr;
    }

    .engage-sbir-grid {
        grid-template-columns: 1fr;
    }

    .engage-process-grid {
        grid-template-columns: 1fr;
         row-gap: 0;
    }

    .engage-process-grid .dib-process-step {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon title"
            "body body";
        column-gap: 12px;
        row-gap: max(8px, 0.5vw);
        align-items: center;
        padding: max(20px, 3vw) 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .engage-process-grid .dib-process-step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .engage-process-grid .dib-step-icon {
        grid-area: icon;
        margin-bottom: 0;
        align-self: center;
    }

    .engage-process-grid .dib-step-title {
        grid-area: title;
        align-self: center;
    }

    .engage-process-grid .dib-step-body {
        grid-area: body;
    }
}
