/*--------------------------------------------------------------
# Workflow Integration Simple — 4-Card Section
--------------------------------------------------------------*/
.wi2-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.wi2-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    max-width: 1280px;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* ---------- Header ---------- */
.wi2-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 841px;
    width: 100%;
}

.wi2-header--align-left {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.wi2-header--align-center {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.wi2-header--align-right {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.wi2-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(34, 140, 34, 0.6);
}

.wi2-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1E2939;
    margin: 0;
}

.wi2-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #0A1837;
    margin: 0;
}

/* ---------- Card Grid ---------- */
.wi2-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

.wi2-card {
    flex: 1;
    position: relative;
    border-radius: 24px;
    padding: 40px 32px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

/* ---------- Card Colour Variants ---------- */
.wi2-card--dark-green {
    background: #87B485;
}
.wi2-card--dark-green .wi2-card-title,
.wi2-card--dark-green .wi2-card-desc {
    color: #000000;
}
.wi2-card--dark-green .wi2-pill {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(26, 26, 26, 0.1);
}
.wi2-card--dark-green .wi2-pill span {
    color: #000000;
}

.wi2-card--green {
    background: #B2CEB0;
}
.wi2-card--green .wi2-card-title,
.wi2-card--green .wi2-card-desc {
    color: #000000;
}
.wi2-card--green .wi2-pill {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(26, 26, 26, 0.1);
}
.wi2-card--green .wi2-pill span {
    color: #000000;
}

.wi2-card--pale {
    background: #E8F5DB;
}
.wi2-card--pale .wi2-card-title,
.wi2-card--pale .wi2-card-desc {
    color: #1A1A1A;
}
.wi2-card--pale .wi2-pill {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(26, 26, 26, 0.1);
}
.wi2-card--pale .wi2-pill span {
    color: #000000;
}

.wi2-card--frosted {
    background: rgba(1, 75, 36, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}
.wi2-card--frosted .wi2-card-title,
.wi2-card--frosted .wi2-card-desc {
    color: #1A1A1A;
}
.wi2-card--frosted .wi2-pill {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(26, 26, 26, 0.1);
}
.wi2-card--frosted .wi2-pill span {
    color: #000000;
}

/* ---------- Decorative Blur ---------- */
.wi2-card-blur {
    position: absolute;
    width: 164px;
    height: 154px;
    right: 28px;
    top: 28px;
    background: rgba(49, 179, 49, 0.7);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* ---------- Numbered Pill ---------- */
.wi2-pill {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.wi2-pill span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
}

/* ---------- Card Body ---------- */
.wi2-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.wi2-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

.wi2-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .wi2-grid {
        flex-wrap: wrap;
    }
    .wi2-card {
        flex: 1 1 calc(50% - 6px);
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .wi2-section {
        padding: 60px 0;
    }
    .wi2-container {
        gap: 40px;
    }
    .wi2-title {
        font-size: 32px;
    }
    .wi2-description {
        font-size: 18px;
    }
    .wi2-grid {
        flex-direction: column;
    }
    .wi2-card {
        flex: none;
        width: 100%;
        min-height: 300px;
    }
    .wi2-card-title {
        font-size: 24px;
    }
}
