.vettingSec {
    padding: 80px 0 80px;
    background: linear-gradient(111.12deg, #FFFFFF 57.28%, #EFF6FF 100%);
}

.vettingHead {
    text-align: center;
    margin-bottom: 80px;
}

.vettingLabel {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 100%;
    color: #2C83FF;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.vettingHead h2 {
    font-size: 38px;
    font-weight: 800;
    color: #35414b;
    line-height: 130%;
    letter-spacing: 0;
    margin: 0 auto 20px;
    max-width: 621px;
    width: 100%;
    text-align: center;
}

.vettingHead h2 span {
    display: inline-block;
    padding: 0 0.15em 0 0.05em;
    font-style: italic;
    font-size: 38px;
    font-weight: 800;
    font-family: Inter, sans-serif;
    background: linear-gradient(90deg, #2c83ff 35.36%, #4e68e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vettingHead > p {
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    color: #546B8E;
    line-height: 1.7;
    max-width: 485px;
    margin: 0 auto;
}

.vettingGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.vettingCard {
    background: #fff;
    border: 1px solid #E8EFED;
    border-radius: 15px;
    padding: 28px 25px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.vettingCard:hover {
    border-color: #2243A4;
    box-shadow: 0 8px 28px rgba(34, 67, 164, 0.12);
    transform: translateY(-4px);
}

.vettingStage {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 21px;
}

.stageDot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stageDot::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: block;
}

.vettingCard:nth-child(odd) .vettingStage--teal { color: #2756DF; }
.vettingCard:nth-child(even) .vettingStage--teal { color: #7B8DE6; }

.vettingStage--teal .stageDot { background: #EFF6FF; }
.vettingCard:nth-child(odd) .vettingStage--teal .stageDot::after { 
    background: #2756DF; 
}
.vettingCard:nth-child(even) .vettingStage--teal .stageDot::after { 
    background: #7B8DE6; 
}



.vettingIcon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.vettingCard:nth-child(odd) .vettingIcon--teal  { background: #2756DF; }
.vettingCard:nth-child(even) .vettingIcon--teal  { background: #7B8DE6; }



.vettingCard h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    height: 48px;
    color: #01305C;
    margin-bottom: 10px;
}

.vettingCard p {
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0%;
    color: #546B8E;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.vettingBadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 150%;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 20px;
    width: fit-content;
    margin-top: auto;
}

.badgeDot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vettingCard:nth-child(odd) .vettingBadge--teal {
    background: linear-gradient(115.33deg, #EFF6FF 28.34%, #DBEAFE 100%);
    color: #2756DF;
    border: 1px solid #CDE7FF;
}
.vettingCard:nth-child(even) .vettingBadge--teal {
    background: linear-gradient(115.33deg, #F9F4FF 25.87%, #EDF0FF 100%);
    color: #6479E2;
    border: 1px solid #E2E2FF;
}
.vettingCard:nth-child(odd) .vettingBadge--teal .badgeDot { background: #2756DF; }
.vettingCard:nth-child(even) .vettingBadge--teal .badgeDot { background: #6479E2; }


/* .vettingBadge--orange {
    background: #FEF5EB;
    border: 1px solid #F5D6B5;
    color: #E0852C;
}
.vettingBadge--orange .badgeDot { background: #E0852C; }

.vettingBadge--pink {
    background: #EFF0FB;
    border: 1px solid #d4d9f5;
    color: #566BD0;
}
.vettingBadge--pink .badgeDot { background: #566BD0; } */

@media (max-width: 1199px) {
    .vettingGrid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .vettingHead h2 { font-size: 32px; }
    .vettingHead h2 em { font-size: 32px; }
}

@media (max-width: 767px) {
    .vettingSec { padding: 60px 0 70px; }
    .vettingHead { margin-bottom: 48px; }
    .vettingLabel { font-size: 12px; margin-bottom: 20px; }
    .vettingHead h2 { font-size: 26px; }
    .vettingHead h2 em { font-size: 26px; }
    .vettingHead > p { font-size: 14px; }
    .vettingGrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .vettingCard { padding: 20px 18px; }
    .vettingCard h3 { font-size: 14px; height: auto; }
    .vettingCard p { font-size: 13px; margin-bottom: 18px; }
}

@media (max-width: 480px) {
    .vettingSec { padding: 48px 0 56px; }
    .vettingHead h2 { font-size: 22px; }
    .vettingHead h2 em { font-size: 22px; }
    .vettingGrid { grid-template-columns: 1fr; gap: 12px; }
    .vettingCard { padding: 20px; }
    .vettingBadge { font-size: 12px; padding: 6px 12px; }
}
