/* ═══════════════════════════════════════════════════
   TESTIMONIALS SECTION
   Font: 'Segoe UI', system-ui, -apple-system, sans-serif
   Theme: #dc8215 orange | #111827 dark | #f9fafb light bg
═══════════════════════════════════════════════════ */

.tst-section {
    background: #ffffff;
    padding: 80px 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.tst-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ── Header ── */
.tst-header {
    text-align: center;
    margin-bottom: 48px;
}

.tst-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dc8215;
    margin-bottom: 10px;
}

.tst-header h2 {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.2;
}

.tst-subtext {
    font-size: 1rem;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Slider wrapper ── */
.tst-slider-wrap {
    position: relative;
    overflow: hidden;
}

/* ── Track ── */
.tst-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Card ── */
.tst-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #f9fafb;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s ease;
}

.tst-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ── Stars ── */
.tst-stars {
    color: #dc8215;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ── Quote ── */
.tst-quote {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.72;
    flex: 1;
    font-style: italic;
}

/* ── Author ── */
.tst-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.tst-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dc8215;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tst-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
}

.tst-role {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1px;
}

/* ── Dots ── */
.tst-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.tst-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, width 0.25s;
}

.tst-dot.active {
    background: #dc8215;
    width: 24px;
    border-radius: 100px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .tst-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .tst-section {
        padding: 56px 0;
    }
    .tst-card {
        flex: 0 0 100%;
    }
}
