.social-section {
    background: var(--ink);
    color: #fff;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}
.social-section::before {
    content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%;
    background: radial-gradient(circle at top right, rgba(147,58,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.social-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.social-header { text-align: center; margin-bottom: 60px; }
.social-header h2 { font-size: 44px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; line-height: 1.1; }
.social-header p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* Video Wrapper */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
    aspect-ratio: 16 / 9;
    position: relative;
}
.video-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
}
.play-btn { 
    width: 80px; height: 80px; background: var(--accent); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; cursor: pointer; 
    transition: transform 0.3s, box-shadow 0.3s; margin-bottom: 16px; 
    box-shadow: 0 0 0 12px rgba(147,58,255,0.2); 
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(147,58,255,0.3); }
.play-btn svg { width: 36px; height: 36px; fill: #fff; margin-left: 6px; }
.video-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; display: none; }

/* Testimonials Grid */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, background 0.3s;
}
.testimonial-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.05); }
.stars { color: #FFD700; margin-bottom: 20px; display: flex; gap: 4px; }
.stars svg { width: 20px; height: 20px; fill: currentColor; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: #fff; }
.author-info h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.author-info span { font-size: 13px; color: rgba(255,255,255,0.5); }

@media(max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } .social-header h2 { font-size: 32px; } }
