   @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

  :root{
    --bg: #0A0D14;
    --panel: #12161F;
    --panel-2: #161B26;
    --border: #232936;        
    --accent: #0575EC;
    --accent-soft: rgba(76,201,240,0.12);
    --amber: #FFB454;
    --text: #EDEFF4;
    --muted: #8D96A8;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Rubik', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
  }

  *{ box-sizing: border-box; }

  .testes{
    margin:0;
    background: var(--bg);
    font-family: 'Rubik', Times, serif;
    color: var(--text);
  }

  .testi-section{
    position: relative;
    padding: 110px 24px;
    overflow: hidden;
    background:
      radial-gradient(circle at 15% 20%, rgba(76,201,240,0.08), transparent 45%),
      radial-gradient(circle at 85% 80%, rgba(255,180,84,0.05), transparent 40%),
      var(--bg);
  }

  .testi-wrap{
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
  }

  /* ---------- LEFT: intro ---------- */
  .testi-intro .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family: 'Rubik', Times, serif;

    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 22px;
  }
  .testi-intro .eyebrow::before{
    content:"";
    width:8px; height:8px;
    border-radius:50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
  }

  .testi-intro h2{
        font-family: 'Rubik', Times, serif;

    font-weight: 700;
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.15;
    margin: 0 0 22px;
    letter-spacing: -0.01em;
  }
  .testi-intro h2 span{ color: var(--accent); }

  .testi-intro p{
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 440px;
    margin: 0 0 40px;
  }

  .testi-stats{
    display:flex;
    gap: 32px;
    margin-bottom: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }
  .testi-stats .stat b{
    display:block;
        font-family: 'Rubik', Times, serif;

    font-size: 26px;
    font-weight: 700;
    color: var(--text);
  }
  .testi-stats .stat span{
        font-family: 'Rubik', Times, serif;

    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.03em;
  }

  .testi-cta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 15px 26px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
        font-family: 'Rubik', Times, serif;

    font-size: 14px;
    text-decoration:none;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
  }
  .testi-cta:hover, .testi-cta:focus-visible{
    border-color: var(--accent);
    background: var(--accent-soft);
    transform: translateX(2px);
  }
  .testi-cta svg{ width:16px; height:16px; transition: transform .25s ease; }
  .testi-cta:hover svg{ transform: translateX(3px); }

  /* ---------- RIGHT: bento grid of testimonials ---------- */
  .testi-grid{
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 18px;
  }

  .circuit{
    position:absolute;
    inset: -40px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
  }

  .t-card{
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  }
  .t-card:hover{
    transform: translateY(-4px);
    border-color: rgba(76,201,240,0.45);
    box-shadow: 0 18px 40px -20px rgba(76,201,240,0.35);
  }

  .t-card.featured{
    grid-column: 1;
    grid-row: 1 / span 3;
    padding: 34px;
    justify-content: space-between;
  }
  .t-card.side{
    grid-column: 2;
  }

  .t-top{
    display:flex;
    align-items:center;
    justify-content: space-between;
  }

  .t-status{
    display:inline-flex;
    align-items:center;
    gap:7px;
        font-family: 'Rubik', Times, serif;

    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted);
  }
  .t-status .dot{
    width:7px; height:7px;
    border-radius:50%;
    background: #4ADE80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.18);
    animation: pulse 2.2s ease-in-out infinite;
  }

  .t-score{
    display:flex;
    align-items:flex-end;
    gap: 3px;
  }
  .t-score i{
    display:block;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.95;
  }
  .t-score i:nth-child(1){ height: 6px; }
  .t-score i:nth-child(2){ height: 9px; }
  .t-score i:nth-child(3){ height: 12px; }
  .t-score i:nth-child(4){ height: 15px; }
  .t-score i:nth-child(5){ height: 18px; }

  .t-quote{
        font-family: 'Rubik', Times, serif;

    color: var(--text);
    line-height: 1.65;
  }
  .t-quote .cmt{ color: var(--accent); opacity: 0.7; }
  .featured .t-quote{ font-size: 17px; }
  .side .t-quote{ font-size: 13.5px; }

  .t-profile{
    display:flex;
    align-items:center;
    gap: 12px;
    margin-top: auto;
  }
  .t-avatar{
    position: relative;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
        font-family: 'Rubik', Times, serif;

    font-weight: 600;
    font-size: 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    border: 1px solid rgba(76,201,240,0.35);
    flex-shrink: 0;
    overflow: hidden;
  }
  .t-avatar img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .featured .t-avatar{ width: 50px; height: 50px; font-size: 17px; }

  .t-name{
        font-family: 'Rubik', Times, serif;

    font-weight: 600;
    font-size: 14.5px;
    margin: 0;
  }
  .t-role{
        font-family: 'Rubik', Times, serif;

    font-size: 11.5px;
    color: var(--muted);
  }

  @keyframes pulse{
    0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.18); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.06); }
  }

  @media (prefers-reduced-motion: reduce){
    .t-status .dot{ animation: none; }
    .t-card, .testi-cta, .testi-cta svg{ transition: none; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 992px){
    .testi-wrap{ grid-template-columns: 1fr; gap: 48px; }
    .testi-intro{ text-align: center; }
    .testi-intro p{ margin-left:auto; margin-right:auto; }
    .testi-stats{ justify-content: center; }
  }

  @media (max-width: 640px){
    .testi-section{ padding: 70px 18px; }
    .testi-grid{ grid-template-columns: 1fr; }
    .t-card.featured, .t-card.side{ grid-column: 1; grid-row: auto; }
    .testi-stats{ gap: 22px; flex-wrap: wrap; }
  }

  .sr-only{
    position:absolute; width:1px; height:1px;
    padding:0; margin:-1px; overflow:hidden;
    clip: rect(0,0,0,0); white-space:nowrap; border:0;
  }