.gis-outcomes {
    --go-blue: #073b7a;
    --go-blue-dark: #032a59;
    --go-yellow: #ffd65a;
    --go-gold: #e9ad25;
    --go-green: #557b46;
    --go-cream: #fffaf0;
    --go-text: #26322c;
    --go-muted: #68716c;
    position: relative;
    width: calc(100% - 30px);
    max-width: 1380px;
    margin: 50px auto 70px;
    padding: 44px 46px 48px;
    overflow: hidden;
    background: linear-gradient(135deg, #fffdf8 0%, #fff8e8 100%);
    border: 1px solid rgba(7, 59, 122, 0.08);
    border-radius: 26px;
    box-shadow: 0 15px 42px rgba(24, 42, 32, 0.07);
    box-sizing: border-box;
}
.gis-outcomes, .gis-outcomes * { font-family: inherit; }
.gis-outcomes::before {
    content: ""; position: absolute; top: -120px; right: -90px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255, 214, 90, 0.17); pointer-events: none;
}
.gis-outcomes::after {
    content: ""; position: absolute; left: 0; top: 0; width: 6px; height: 100%;
    background: linear-gradient(to bottom, var(--go-yellow), var(--go-gold), var(--go-blue));
}
.gis-outcomes__header { position: relative; z-index: 2; max-width: 850px; margin-bottom: 30px; }
.gis-outcomes__eyebrow {
    display: inline-flex; align-items: center; gap: 9px; margin-bottom: 10px;
    color: var(--go-green); letter-spacing: 0.08em; text-transform: uppercase;
}
.gis-outcomes__eyebrow::before {
    content: ""; width: 28px; height: 3px; border-radius: 20px; background: var(--go-gold);
}
.gis-outcomes__title { margin: 0 0 10px !important; padding: 0 !important; color: var(--go-blue) !important; }
.gis-outcomes__description { max-width: 800px; margin: 0 !important; color: var(--go-muted) !important; }
.gis-outcomes__grid {
    position: relative; z-index: 2; display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
}
.gis-outcomes__item {
    position: relative; display: flex; align-items: center; gap: 14px; min-height: 78px;
    padding: 16px 18px; overflow: hidden; background: #fff;
    border: 1px solid rgba(7, 59, 122, 0.08); border-radius: 14px;
    box-shadow: 0 5px 16px rgba(34, 47, 40, 0.045); box-sizing: border-box;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gis-outcomes__item::after {
    content: ""; position: absolute; left: 0; top: 15px; bottom: 15px; width: 3px;
    border-radius: 0 10px 10px 0; background: var(--go-gold); opacity: 0; transition: opacity .25s ease;
}
.gis-outcomes__icon {
    display: flex; flex: 0 0 44px; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, #fff3c8, #fff9e8); color: var(--go-blue);
    box-shadow: inset 0 0 0 1px rgba(233, 173, 37, 0.15); box-sizing: border-box;
}
.gis-outcomes__icon svg {
    width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
}
.gis-outcomes__item strong { color: var(--go-text); }
@media (hover:hover) {
    .gis-outcomes__item:hover { transform: translateY(-4px); border-color: rgba(233, 173, 37, .30); box-shadow: 0 13px 28px rgba(25, 43, 33, .09); }
    .gis-outcomes__item:hover::after { opacity: 1; }
}
.gis-outcomes__footer {
    position: relative; z-index: 2; display: flex; align-items: center; gap: 14px;
    margin-top: 28px; padding: 17px 20px;
    background: linear-gradient(135deg, var(--go-blue-dark), var(--go-blue));
    border-radius: 13px; color: #fff;
}
.gis-outcomes__footer-icon {
    display: flex; flex: 0 0 34px; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%; background: var(--go-yellow); color: var(--go-blue-dark);
}
.gis-outcomes__footer-icon svg {
    width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
}
.gis-outcomes__footer p { margin: 0 !important; color: #fff !important; }
@media (max-width: 991px) {
    .gis-outcomes { padding: 36px 28px 38px; }
    .gis-outcomes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .gis-outcomes { width: calc(100% - 22px); margin: 35px auto 50px; padding: 28px 19px 26px; border-radius: 19px; }
    .gis-outcomes::after { width: 5px; }
    .gis-outcomes__header { margin-bottom: 22px; }
    .gis-outcomes__grid { grid-template-columns: 1fr; gap: 10px; }
    .gis-outcomes__item { min-height: 66px; padding: 12px 14px; gap: 12px; border-radius: 12px; }
    .gis-outcomes__icon { flex-basis: 39px; width: 39px; height: 39px; border-radius: 10px; }
    .gis-outcomes__icon svg { width: 19px; height: 19px; }
    .gis-outcomes__footer { margin-top: 20px; padding: 14px; border-radius: 11px; }
    .gis-outcomes__footer-icon { flex-basis: 30px; width: 30px; height: 30px; }
}
@media (max-width: 420px) {
    .gis-outcomes { width: calc(100% - 18px); padding: 25px 16px; }
}
