/* Section: csi-strip — navy trust/USP strip (token-driven rebuild) */

.csi-strip {
    background: var(--navy);
    color: #fff;
    text-align: center;
	padding: 120px 0 100px;
    clip-path: polygon(
        0 70px,
        100% 0,
        100% 100%,
        0 100%)
}

.csi-strip h3 {
    font-family: var(--display);
    color: #fff;
    margin: 0 0 8px;
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.csi-strip p {
    color: #c6d6f0;
    margin: 0 auto 28px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 760px;
}
.csi-strip .lede{
	margin:0 auto;
}

/* Trust-bar row of USP chips: wraps on small screens */
.csi-strip .verb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.csi-strip .verb-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 10px 18px;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

/* Green accent dot — mirrors the trust-bar icon accent */
.csi-strip .verb-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex: 0 0 auto;
}

.csi-strip .verb-tag:hover {
    background: rgba(37, 99, 235, 0.22);
    border-color: var(--blue);
    transform: translateY(-2px);
}
@media (max-width: 767px) {.csi-strip{padding: 100px 0 60px;} }

