/* ── Home Trusted (marquee) ───────────────────────────── */

.home-trusted {
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-trusted__heading {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 3rem;
}

.home-trusted__heading h2 {
  color: #fff;
}

.home-trusted .section-kicker {
  color: rgba(255, 255, 255, 0.5);
}

.home-trusted__track-wrapper {
  overflow: hidden;
  /* mask-image: linear-gradient(to right, black 0, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, black 0, black 92%, transparent); */
}

.home-trusted__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  width: max-content;
  /* animation: marquee 35s linear infinite; */
}

.trusted-logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* filter: grayscale(1) brightness(0.7); */
  transition: filter 0.3s ease;
  cursor: pointer;
}

.trusted-logo:hover {
  filter: grayscale(0) brightness(1);
}

.trusted-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trusted-logo--clone {
  display: none;
}

.site-footer {
  background: #101010;
  color: #e9e9e9;
  padding-top: 3rem;
}

.site-footer a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-div-1{
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 4rem 0;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  width: 40%;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer__social ul,
.footer-legal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social-list {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-footer__social-list li {
  margin: 0;
}

.site-footer__social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: #e9e9e9;
  border: 0;
  transition: all 0.3s ease;
}

.site-footer__social-list a:hover {
  transform: scale(1.1);
}

.site-footer__social li {
  margin-bottom: 0.35rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.2rem 0 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal-menu {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.85rem;
  color: #c9c9c9;
}

@media (max-width: 860px) {
  .site-footer__top {
    flex-direction: column;
  }

  .footer-legal-menu {
    flex-wrap: wrap;
  }
}


/* ── Home Contact ──────────────────────────────────────── */

.home-contact {
  color: #fff;
  text-align: center;
  width: 60%;
}

.home-contact__heading {
  margin-bottom: 3rem;
}

.home-contact .section-kicker {
  color: rgba(255, 255, 255, 0.5);
}

.home-contact__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-form__row {
  width: 100%;
}

.contact-form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}

.contact-form__input,
.contact-form__textarea {
  border-radius: 8px;
  width: 100%;
  background: #bababa33;
  color: #fff;
  border: 0;
  padding: 0.75rem 0.5rem;
  outline: none;
}

.contact-form__textarea{
  min-height: 120px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-bottom-color: #fff;
}

.contact-form__input.is-invalid,
.contact-form__textarea.is-invalid {
  border: 1px solid #d44544;
  background: rgb(184 18 16 / 12%);
}

.home-contact .contact-form__submit {
  margin-top: 0.9rem;
}

.contact-notice {
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-left: 2px solid currentColor;
  font-size: 0.9rem;
}

#footer-contact-notice {
  margin-top: 1rem;
  margin-bottom: 0;
}

.contact-notice--success {
  color: #2d6b3f;
  background: rgba(45, 107, 63, 0.08);
}

.contact-notice--error {
  color: #842f2f;
  background: rgba(132, 47, 47, 0.08);
}

.contact-form__field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 1600px){
  .contact-form__textarea {
      min-height: 200px;
    }
}

@media (max-width: 860px) {
  .contact-form__submit button{
    width: 100%;
  }
  .footer-div-1{
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
  }
  .home-contact {
    width: 100%;
  }
  .site-footer__top {
    width: 100%;
  }

        .home-trusted {
          overflow: hidden;
        }
    
        .home-trusted__track-wrapper {
          overflow: hidden;
        }
    
        .home-trusted__track {
          animation: marquee 20s linear infinite;
          padding: 0;
        }
    
        .trusted-logo--clone {
          display: flex;
        }
}