/* TRUST SIGNALS – New Agency Version */
.trust-signals {
    background: var(--neutral);
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.project-card {
    background: var(--body-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.9375rem rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.project-card:hover {
    transform: translateY(-4px);
}
.project-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.project-info {
    padding: 1.25rem;
}
.project-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.project-vertical {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.btn-small {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    border-radius: 9999px;
    color: var(--body-text);
    display: inline-block;
    transition: all 0.25s ease;
}
.btn-small:hover {
    background: var(--primary);
    color: #fff;
}

/* Stats & Badges */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}
.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    max-width: 220px;
}
.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

/* BADGE LOGO STYLING – for images/logo.svg in trust-signals */
.badge-logo {
    height: 65px;
    width: auto;
    margin-bottom: 0.75rem;
    filter: grayscale(30%);
    transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.badge-item:hover .badge-logo,
.badge-item:focus-visible .badge-logo {
    filter: grayscale(0%);
}

/* GUARANTEE BOX – more prominent and easier to read */
.guarantee-box {
    background: var(--neutral);
    border: 2px solid var(--primary);
    border-radius: 0.75rem;
    padding: 1.75rem 2rem;
    margin-top: 2.5rem;
    max-width: 52ch;
    margin-inline: auto;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.05);
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--body-text);
    margin: 0;
    text-align: center;
}

.guarantee-text strong {
    color: var(--primary);
    font-weight: 700;
}