/* Container */
.trust-ribbon-section {
    position: relative;
    width: 100%;
    height: 52px;
    background: var(--bg-dark, #050a06);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

/* Track */
.ribbon-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    padding-left: 20px;
}

/* Items */
.ribbon-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 6vw;
    opacity: 0.7;
    transition: opacity 0.3s;
}

/* Hover Effects */
.trust-ribbon-section:hover .ribbon-item { opacity: 0.3; }
.trust-ribbon-section:hover .ribbon-item.highlight { opacity: 1; }

/* Standard Text */
.ribbon-dot {
    color: var(--accent-gold, #D4AF37);
    margin-right: 12px;
    font-size: 1.2rem;
    line-height: 0;
}

.ribbon-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* GLOW EFFECT for "View Real Customer Proof" */
.ribbon-item.highlight .ribbon-text {
    color: #fff; /* White core for readability */
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: none;
    font-size: 1.05rem;
    font-weight: 700;
    
    /* THE GLOW: Layered shadows using the accent color */
    text-shadow: 
        0 0 5px var(--accent-gold, #D4AF37),
        0 0 10px var(--accent-gold, #D4AF37),
        0 0 20px var(--accent-gold, #D4AF37);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .trust-ribbon-section { height: 46px; }
    .ribbon-item { margin-right: 10vw; }
    .ribbon-text { font-size: 0.75rem; }
}