/* --- Section 1: Celebration Hero --- */
.testi-hero {
    padding: 160px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.celebration-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(160, 32, 240, 0.1);
    color: var(--accent-purple);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 30px;
}

.testi-title {
    font-family: 'Audiowide', cursive;
    font-size: 4rem;
    color: #111;
}

.testi-lead {
    font-family: 'Space Mono', monospace;
    max-width: 600px;
    margin: 20px auto 50px;
    color: #666;
}

.happy-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.h-stat strong { font-family: 'Audiowide', cursive; font-size: 2.5rem; color: #111; display: block; }
.h-stat span { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--accent-purple); text-transform: uppercase; }

/* --- Section 2: Wall of Fame --- */
.testi-wall {
    padding: 120px 0;
    background: #050505;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: 0.5s;
    border: 1px solid #222;
}

/* Celebrity Glow Effects */
.google-glow:hover { box-shadow: 0 0 30px rgba(66, 133, 244, 0.2); border-color: #4285F4; }
.linkedin-glow:hover { box-shadow: 0 0 30px rgba(10, 102, 194, 0.2); border-color: #0A66C2; }
.direct-glow:hover { box-shadow: 0 0 30px rgba(160, 32, 240, 0.2); border-color: var(--accent-purple); }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.stars { color: #FFD700; letter-spacing: 2px; }
.card-header i { font-size: 1.5rem; color: #444; }

.quote {
    font-family: 'Space Mono', monospace;
    color: #eee;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img, .client-initials {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--accent-purple);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Audiowide'; color: #fff;
}

.client-info h4 { font-family: 'Audiowide', cursive; font-size: 0.9rem; color: #fff; margin: 0; }
.client-info span { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: #666; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testi-title { font-size: 2.8rem; }
    .happy-stats { flex-direction: column; gap: 30px; }
}