.testimonial-reel-section {
    position: relative;
    padding: clamp(96px, 10vw, 150px) 8%;
    overflow: hidden;
    background:
      radial-gradient(circle at 78% 18%, rgba(0,113,227,.16), transparent 34%),
      radial-gradient(circle at 16% 82%, rgba(0,212,255,.10), transparent 30%),
      linear-gradient(135deg, #f5f5f7 0%, #ffffff 48%, #eef4ff 100%);
  }
  
  .testimonial-reel-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(0,0,0,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 65% 45%, #000 0%, transparent 62%);
    pointer-events: none;
  }
  
  .testimonial-reel-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(56px, 8vw, 120px);
  }
  
  .testimonial-reel-content {
    max-width: 650px;
  }
  
  .testimonial-reel-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: rgba(0,113,227,.09);
    border: 1px solid rgba(0,113,227,.16);
    color: #0071e3;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
  }
  
  .testimonial-reel-content h2 {
    color: #1d1d1f;
    font-size: clamp(3rem, 5.8vw, 3rem);
    letter-spacing: -.075em;
    font-weight: 600;
    margin-bottom: 28px;
  }
  
  .testimonial-reel-content p {
    color: #6e6e73;
    font-size: clamp(1.08rem, 1.45vw, 1.25rem);
    line-height: 1.7;
    max-width: 590px;
    margin-bottom: 36px;
    line-height: 1.2;
  }
  
  .testimonial-reel-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .testimonial-reel-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.08);
    color: #1d1d1f;
    font-size: .88rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
  }
    
  .testimonial-reel-video-wrap {
    position: relative;
    display: flex;
    justify-content: center;
  }
  
  .testimonial-reel-video-wrap::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(0,113,227,.22), transparent 62%);
    filter: blur(18px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .testimonial-phone-frame {
    position: relative;
    width: min(360px, 82vw);
    aspect-ratio: 9 / 16;
    padding: 12px;
    border-radius: 46px;
    background:
      linear-gradient(145deg, #2c2c2e, #050505);
    box-shadow:
      0 40px 120px rgba(0,0,0,.28),
      inset 0 0 0 1px rgba(255,255,255,.16);
  }
  
  .testimonial-phone-frame::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    width: 92px;
    height: 25px;
    transform: translateX(-50%);
    border-radius: 0 0 18px 18px;
    background: #050505;
    z-index: 3;
  }
  
  .testimonial-phone-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 36px;
    pointer-events: none;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.14),
      inset 0 -80px 120px rgba(0,0,0,.18);
    z-index: 2;
  }
  
  .testimonial-reel-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 36px;
    object-fit: cover;
    background: #000;
  }
  
  .testimonial-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 4;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0,0,0,.26);
    transition: transform .25s ease, opacity .25s ease;
  }
  
  .testimonial-play-btn:hover {
    transform: scale(1.06);
  }
  
  .testimonial-play-btn span {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 19px solid #0071e3;
  }
  
  .testimonial-phone-frame.is-playing .testimonial-play-btn {
    opacity: 0;
    pointer-events: none;
  }
    
  @media (max-width: 980px) {
    .testimonial-reel-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .testimonial-reel-content {
      margin: 0 auto;
    }
  
    .testimonial-reel-content p {
      margin-left: auto;
      margin-right: auto;
    }
  
    .testimonial-reel-highlights {
      justify-content: center;
    }
  }
  
  @media (max-width: 560px) {
    .testimonial-reel-section {
      padding: 86px 6%;
    }
  
    .testimonial-reel-content h2 {
      font-size: clamp(2.6rem, 13vw, 4rem);
    }
  
    .testimonial-phone-frame {
      width: min(320px, 88vw);
      border-radius: 40px;
    }
  }