.trust-strip {
  width: 88%;
  margin: 70px auto;
  background: #fff;
  border: 1px solid rgba(12,107,61,.16);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
  padding: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-card {
  text-align: center;
  padding: 25px 45px;
  border-right: 1px solid rgba(0,0,0,.12);
}

.trust-card:last-child {
  border-right: none;
}

.trust-icon,
.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #edf9f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon i,
.service-icon i {
  font-size: 40px;
  color: var(--green);
}

.trust-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--text);
}

.trust-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.circle-arrow {
  width: 50px;
  height: 50px;
  margin: auto;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.circle-arrow:hover {
  background: var(--green);
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  min-height: 390px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 48px 35px;
  text-align: center;
  box-shadow: 0 14px 38px rgba(0,0,0,.07);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
}

.service-card h3 {
  color: var(--text);
  font-size: 30px;
  margin-bottom: 18px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--green);
  font-weight: 900;
}

.service-card a span {
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.service-card a:hover span {
  background: var(--green);
  color: #fff;
}

.stats-section {
  background: linear-gradient(rgba(0,25,15,.88), rgba(0,25,15,.88)), url('/assets/img/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 75px 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.stat {
  border-right: 1px solid rgba(255,255,255,.14);
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  display: block;
  font-size: 52px;
  font-family: Georgia, serif;
  margin-bottom: 10px;
}

.stat span {
  display: block;
  font-weight: 800;
  line-height: 1.5;
}

.cta-section {
  width: 86%;
  margin: 50px auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  padding: 35px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.cta-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  margin-bottom: 10px;
}

.cta-section p {
  color: var(--muted);
  line-height: 1.7;
}

body.dark .trust-strip,
body.dark .trust-card,
body.dark .service-card,
body.dark .cta-section {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .trust-card {
  border-right-color: rgba(255,255,255,.12);
}

body.dark .trust-card h3,
body.dark .service-card h3,
body.dark .cta-section h2 {
  color: #fff;
}

body.dark .trust-card p,
body.dark .service-card p,
body.dark .cta-section p {
  color: #d7d7d7;
}

@media (max-width: 980px) {
  .trust-strip,
  .service-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .trust-card {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
  }

  .trust-card:last-child {
    border-bottom: none;
  }

  body.dark .trust-card {
    border-bottom-color: rgba(255,255,255,.12);
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
