/* HERO */

.testimonials-hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:18px;
align-items:center;
border-radius:18px;
overflow:hidden;
box-shadow: var(--shadow);
background-size:cover;
background-position:center;
background-repeat:no-repeat;
min-height:300px;
padding:18px 50px;
}

.testimonials-hero-text h1{
  font-size:38px;
  font-weight:700;
  color:#1b3b52;
  margin:0 0 12px;
  line-height: 1.05;
  gap:18px;
  align-items:center;
}

.testimonials-hero-text p{
  color:var(--muted);
  margin-bottom:18px;
  max-width:620px;
}

.testimonials-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* INTRO */
.testimonials-intro{
  margin-top:55px;
  text-align:center;
}

.testimonials-intro h2{
  font-size:32px;
  font-weight:900;
  color:#1b3b52;
  margin-bottom:12px;
}

.testimonials-intro p{
  max-width:820px;
  margin:0 auto;
  color:var(--muted);
}

/* CARDS */
.testimonials-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.testimonial-card{
  background:#fff;
  border-radius:16px;
  padding:22px;
  box-shadow:var(--shadow);
}

.testimonial-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

.testimonial-avatar img{
  width:64px;
  height:64px;
  border-radius:50%;
  object-fit:cover;
  display:block;
}

.testimonial-top h3{
  margin:0;
  font-size:18px;
  font-weight:800;
  color:#1b3b52;
}

.testimonial-top span{
  color:var(--muted);
  font-size:14px;
  font-weight:600;
}

.testimonial-card blockquote{
  margin:0;
  color:#2a3b4a;
  font-size:16px;
  line-height:1.6;
  font-weight:500;
}

/* TRUST BANNER */
.trust-banner{
  margin-top:50px;
  border-radius:16px;
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 20% 40%, rgba(46,210,102,.18), transparent 60%),
    radial-gradient(900px 420px at 80% 40%, rgba(255,179,69,.18), transparent 58%),
    linear-gradient(180deg,#0b2c44, #071c2a);
  color:#2a3b4a;
  padding:28px;
}

.trust-banner-inner{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  text-align:center;
}

.trust-item strong{
  display:block;
  font-size:22px;
  margin-bottom:6px;
}

.trust-item span{
  color:#2a3b4a;
  font-weight:500;
}

/* CLIENT STORY */
.client-story{
  margin-top:55px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.client-story-text h2{
  font-size:32px;
  font-weight:900;
  color:#1b3b52;
  margin-bottom:14px;
}

.client-story-text ul{
  padding-left:18px;
  margin-bottom:20px;
}

.client-story-text li{
  margin-bottom:8px;
  color:#2a3b4a;
}

.client-story-img img{
  width:100%;
  border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

/* RESPONSIVE */
@media (max-width:900px){

  .testimonials-hero{
    grid-template-columns:1fr;
  }

  .testimonials-grid{
    grid-template-columns:1fr;
  }

  .trust-banner-inner{
    grid-template-columns:1fr;
  }

  .client-story{
    grid-template-columns:1fr;
  }
}