/* Kundenstimmen — infinite marquee */

/* ===================== KUNDENSTIMMEN — Infinite Marquee ===================== */
/* Sparkling stars animation */
@keyframes starSparkleSeq1 { 0%,100%{opacity:1} 25%{opacity:0.5;text-shadow:0 0 12px rgba(234,179,8,0.6)} }
@keyframes starSparkleSeq2 { 10%,100%{opacity:1} 35%{opacity:0.5;text-shadow:0 0 12px rgba(234,179,8,0.6)} }
@keyframes starSparkleSeq3 { 20%,100%{opacity:1} 45%{opacity:0.5;text-shadow:0 0 12px rgba(234,179,8,0.6)} }
@keyframes starSparkleSeq4 { 30%,100%{opacity:1} 55%{opacity:0.5;text-shadow:0 0 12px rgba(234,179,8,0.6)} }
@keyframes starSparkleSeq5 { 40%,100%{opacity:1} 65%{opacity:0.5;text-shadow:0 0 12px rgba(234,179,8,0.6)} }

.stars-animated span:nth-child(1) { animation: starSparkleSeq1 4s ease-in-out infinite; }
.stars-animated span:nth-child(2) { animation: starSparkleSeq2 4s ease-in-out infinite; }
.stars-animated span:nth-child(3) { animation: starSparkleSeq3 4s ease-in-out infinite; }
.stars-animated span:nth-child(4) { animation: starSparkleSeq4 4s ease-in-out infinite; }
.stars-animated span:nth-child(5) { animation: starSparkleSeq5 4s ease-in-out infinite; }

.testimonials {
    padding: 7rem 0 5rem;
    background: var(--cream-warm);
    overflow: hidden;
}
.testimonials-header {
    max-width: 1200px; margin: 0 auto 3rem; padding: 0 2.5rem;
    text-align: center;
}
.testimonials-header .section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--red); margin-bottom: 1rem;
}
.testimonials-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.testimonials-header h2 em { color: var(--red); font-style: normal; }
.testimonials-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 1.5rem; }

/* Google Badge */
.google-badge {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: #fff; border: 1px solid var(--border);
    padding: 0.6rem 1.25rem; border-radius: 50px;
    font-size: 0.9rem; font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.google-badge .g-svg { width: 20px; height: 20px; display: inline-block; }
.google-badge .g-stars { color: #EAB308; font-size: 1rem; letter-spacing: 1px; }
.google-badge strong { font-size: 1.05rem; }
.google-badge .g-count { color: var(--text-muted); font-size: 0.8rem; }

/* Marquee Animation */
@keyframes marqueeLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.marquee-container { position: relative; padding: 0 0 1rem; }
.marquee-track {
    display: flex; gap: 1.25rem;
    width: max-content;
}
.marquee-track.left { animation: marqueeLeft 80s linear infinite; }
.marquee-track.right { animation: marqueeRight 80s linear infinite; }
.marquee-row { margin-bottom: 1.25rem; overflow: hidden; position: relative; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }

/* Fade edges */
.marquee-row::before, .marquee-row::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
    pointer-events: none;
}
.marquee-row::before { left: 0; background: linear-gradient(90deg, var(--cream-warm), transparent); }
.marquee-row::after { right: 0; background: linear-gradient(-90deg, var(--cream-warm), transparent); }

/* Marquee Card */
.mq-card {
    flex-shrink: 0; width: 340px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; padding: 1.5rem 1.75rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.mq-card-head {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.mq-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.mq-card-head .mq-name { font-weight: 600; font-size: 0.88rem; }
.mq-card-head .mq-time { font-size: 0.72rem; color: var(--text-light); }
.mq-stars { color: #EAB308; font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 1px; }
.mq-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.mq-google-tag {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.65rem; color: var(--text-light); margin-top: 0.75rem;
    padding-top: 0.75rem; border-top: 1px solid var(--border);
}
.mq-google-tag svg { width: 14px; height: 14px; }

/* Stats Bar */
.tm-stats {
    max-width: 1200px; margin: 2rem auto 0; padding: 0 2.5rem;
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.tm-stat { text-align: center; }
.tm-stat .num {
    font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--dark);
}
.tm-stat .label { font-size: 0.8rem; color: var(--text-muted); }

