/* Testimonials Scoped Styles */

.testimonials-hero {
    background-image: radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
}

.report-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.report-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.report-card:hover {
    transform: translateY(-8px);
    border-color: var(--mb-red);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.card-stamp {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mb-font-head);
    font-size: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--mb-red);
    transform: rotate(15deg);
    pointer-events: none;
    background: rgba(239, 68, 68, 0.02);
}

.report-stars {
    display: flex;
    gap: 4px;
    color: var(--mb-red);
    margin-bottom: 1.5rem;
}

.report-stars i {
    width: 16px;
    height: 16px;
}

/* Force stars to be filled */
.report-stars svg {
    fill: currentColor;
}

.report-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.report-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.report-avatar {
    width: 44px;
    height: 44px;
    background: #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mb-font-head);
    font-weight: bold;
    color: var(--mb-red);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.report-info {
    display: flex;
    flex-direction: column;
}

.report-name {
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
}

.report-meta {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    letter-spacing: 0.05em;
}

.safety-strip-horizontal {
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--mb-red), var(--mb-red) 10px, transparent 10px, transparent 20px);
}