
  
  /* ── TESTIMONIALS MASTER ──────────────────────────────────── */
  .testimonials-master {
    position: relative;
    z-index: 2;
    padding: 6rem 0 4rem;
    overflow: hidden;
  }
  .testimonials-master .section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
  }
 
  /* ── HEADER ────────────────────────────────────────────────── */
  .testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .testimonials-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: var(--neon-green);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(57, 255, 20, 0.06);
    margin-bottom: 1.5rem;
  }
  .testimonials-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 30%, var(--neon-green) 85%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
  }
  .testimonials-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }
 
  /* ── FEATURED (ROTATING) QUOTE ─────────────────────────────── */
  .featured-testimonial-wrap {
    position: relative;
    margin-bottom: 4rem;
  }
  .featured-quote-bg {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(ellipse at 60% 40%, rgba(57,255,20,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .featured-quote-panel {
    position: relative;
    padding: 3rem 3.5rem;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
  }
  .featured-quote-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-green), #00ff88, transparent);
  }
  .giant-quote-mark {
    position: absolute;
    top: 1.5rem; left: 2.5rem;
    font-size: 8rem;
    line-height: 1;
    color: var(--neon-green);
    opacity: 0.08;
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
  }
  .featured-quote-inner {
    width: 100%;
    position: relative;
  }
  .featured-slides {
    position: relative;
    min-height: 180px;
  }
  .featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
  }
  .featured-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .featured-slide-text {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  .featured-slide-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .featured-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(57,255,20,0.2);
  }
  .featured-author-info strong {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 700;
  }
  .featured-author-info span {
    color: var(--text-gray);
    font-size: 0.82rem;
  }
  .featured-stars {
    display: flex;
    gap: 3px;
    margin-top: 4px;
  
  }
  .featured-stars i { color: #ffd700; font-size: 0.8rem; }
 
  /* Navigation dots */
  .featured-nav {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .f-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--card-border);
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .f-dot.active {
    background: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 8px rgba(57,255,20,0.6);
    width: 22px;
    border-radius: 50px;
  }
  .f-prev, .f-next {
    width: 32px; height: 32px;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    color: var(--text-gray);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
  }
  .f-prev:hover, .f-next:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 12px rgba(57,255,20,0.3);
  }
 
  /* ── CARDS GRID ─────────────────────────────────────────────── */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .testi-card {
    position: relative;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }
  .testi-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(57,255,20,0.12);
  }
  .testi-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .testi-card:hover::after { opacity: 1; }
 
  .card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .testi-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }
  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1.5px solid rgba(57,255,20,0.35);
  }
  .av-green  { background: rgba(57,255,20,0.12); color: var(--neon-green); }
  .av-blue   { background: rgba(30,144,255,0.12); color: #1E90FF; border-color: rgba(30,144,255,0.35); }
  .av-purple { background: rgba(180,0,255,0.12); color: #b400ff; border-color: rgba(180,0,255,0.35); }
  .av-orange { background: rgba(255,140,0,0.12); color: #FF8C00; border-color: rgba(255,140,0,0.35); }
  .av-cyan   { background: rgba(0,229,255,0.12); color: #00e5ff; border-color: rgba(0,229,255,0.35); }
  .av-rose   { background: rgba(255,80,120,0.12); color: #ff5078; border-color: rgba(255,80,120,0.35); }
 
  .testi-author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
  }
  .testi-author-info span {
    font-size: 0.78rem;
    color: var(--text-gray);
  }
  .testi-stars {
    display: flex;
    gap: 2px;
  }
  .testi-stars i { color: #ffd700; font-size: 0.72rem; }
 
  .testi-quote-icon {
    color: rgba(57,255,20,0.15);
    font-size: 1.8rem;
    line-height: 1;
    font-family: Georgia, serif;
    position: absolute;
    top: 1.5rem; right: 1.5rem;
  }
  .testi-text {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .testi-tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: rgba(57,255,20,0.07);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--neon-green);
    letter-spacing: 0.04em;
  }
 
  /* ── MARQUEE STRIP ──────────────────────────────────────────── */
  .testi-marquee-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -4rem;
    padding: 1rem 0;
  }
  .testi-marquee-wrap::before,
  .testi-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .testi-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
  }
  .testi-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
  }
  .testi-marquee-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
  }
  .testi-marquee-track:hover { animation-play-state: paused; }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .marquee-pill {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.2rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    white-space: nowrap;
    transition: border-color 0.3s ease;
  }
  .marquee-pill:hover { border-color: var(--neon-green); }
  .marquee-pill-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .marquee-pill-text {
    font-size: 0.82rem;
    color: var(--text-gray);
  }
  .marquee-pill-stars { display: flex; gap: 1px; }
  .marquee-pill-stars i { color: #ffd700; font-size: 0.62rem; }
 
  /* ── STATS BAR ─────────────────────────────────────────────── */
  .testi-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    padding: 2rem 2.5rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  .testi-stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  }
  .ts-stat { text-align: center; }
  .ts-stat .ts-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px rgba(57,255,20,0.4);
  }
  .ts-stat .ts-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
  }
  .ts-divider {
    width: 1px;
    height: 40px;
    background: var(--card-border);
  }
 
  /* ── RESPONSIVE ────────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .testimonials-master .section-inner { padding: 0 2rem; }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-quote-panel { padding: 2.5rem 2rem; }
    .featured-slide-text { font-size: 1.1rem; }
    .testi-marquee-wrap { margin: 0 -2rem; }
  }
  @media (max-width: 768px) {
    .testimonials-master .section-inner { padding: 0 1.5rem; }
    .testimonials-title { font-size: 2rem; }
    .testi-grid { grid-template-columns: 1fr; }
    .featured-quote-panel { padding: 2rem 1.5rem; }
    .featured-slide-text { font-size: 1rem; }
    .featured-nav { bottom: 1.2rem; right: 1.5rem; }
    .testi-stats-bar { gap: 1.5rem; flex-wrap: wrap; padding: 1.5rem; }
    .ts-divider { display: none; }
    .testimonials-master { padding: 4rem 0 3rem; }
    .testi-marquee-wrap { margin: 0 -1.5rem; }
  }

  @media (max-width: 512px) {
   
    .featured-slide-text { font-size: 0.6rem; }
    
  }
