/* Section: Trusted (Home) */
.trusted-home {
  position: relative;
  background: #0c4a34;
  padding: 90px 0;
  border-top: 10px solid #ccaa68;
  border-bottom: 10px solid #ccaa68;
}

.trusted-home::before {
  top: 0;
}
.trusted-home::after {
  bottom: 0;
}

.trusted-home__container {
  padding: 0 130px;
}
@media (max-width: 1450px) {
  .trusted-home__container {
    padding: 0 90px;
  }
}
@media (max-width: 1024px) {
  .trusted-home__container {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .trusted-home__container {
    padding: 0 40px;
  }
}
@media (max-width: 526px) {
  .trusted-home__container {
    padding: 0 14px;
  }
}

.trusted-home__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.trusted-home__content h2 {
  margin: 0 0 20px;
  color: var(--glm-white);
  font-family: var(--glm-secondary-font);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 470px;
}

.trusted-home__badge {
  display: block;
  width: 100%;
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 0px;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ccaa68;
}
.trusted-home__badge::after {
  content: "";
  width: 210px;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background: #cca967b3;
  border-radius: 100%;
}
.trusted-home__badge::before {
  content: "";
  width: 210px;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background: #cca967b3;
  border-radius: 100%;
}

.trusted-home__text {
  margin: 0 0 32px;
  color: #ffffffcc;
  font-size: 16px;
  line-height: 1.7;
}

.trusted-home__quote {
  position: relative;
  padding: 25px 15px 25px;
  border-left: 2px solid #ccaa68;
  background: #ffffff0d;
}

.trusted-home__quote-icon {
  display: block;
  width: 40px;
  height: auto;
  margin-bottom: 12px;
  position: absolute;
  top: -17px;
}

.trusted-home__quote p {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
}

.trusted-home__quote span {
  color: #ccaa68;
  font-weight: 700;
  font-size: 16px;
}

.trusted-home__media {
  position: relative;
}

.trusted-home__media::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -6px;
  width: 100%;
  height: 100%;
  border: 1px solid #ccaa68;
  z-index: 0;
}

.trusted-home__video {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background-color: #0c4a34;
  background-size: cover;
  background-position: center;
}

.trusted-home__play {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.trusted-home__video:hover .trusted-home__play {
  transform: scale(1.08);
}

@media (max-width: 980px) {
  .trusted-home {
    padding: 70px 0;
  }

  .trusted-home__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trusted-home__media {
    order: -1;
  }

  .trusted-home__content h2 {
    font-size: 36px;
  }

  .trusted-home__text,
  .trusted-home__quote {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .trusted-home {
    padding: 70px 0;
  }

  .trusted-home__content h2 {
    font-size: 28px;
  }

  .trusted-home__quote {
    padding: 22px 22px 20px;
  }

  .trusted-home__media::before {
    top: -10px;
    left: -10px;
  }
}
