.trust-header-icon,
.trust-header h2,
.trust-header p,
.features-cards .feature-card {
  opacity: 0;
  transform: translateY(1.25rem);
}

.trust-header-icon {
  transform: scale(0.72);
}

.trust-section.is-in-view .trust-header-icon {
  animation: products-badge-pop 0.5s cubic-bezier(0.34, 1.45, 0.64, 1) 0s both;
}

.trust-section.is-in-view .trust-header h2 {
  animation: products-slide-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.trust-section.is-in-view .trust-header p {
  animation: products-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

.trust-section.is-in-view .features-cards .feature-card:nth-child(1) {
  animation: products-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
}

.trust-section.is-in-view .features-cards .feature-card:nth-child(2) {
  animation: products-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.94s both;
}

.trust-section.is-in-view .features-cards .feature-card:nth-child(3) {
  animation: products-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
}

.trust-section.is-in-view .features-cards .feature-card:nth-child(4) {
  animation: products-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.26s both;
}

.trust-section.is-in-view .features-cards .feature-card:nth-child(5) {
  animation: products-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.42s both;
}

.trust-section.is-in-view .features-cards .feature-card:nth-child(6) {
  animation: products-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.58s both;
}

.trust-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.trust-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 72rem;
  margin: 0;
  padding: 0;
}

.trust-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
}

.trust-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
}

.trust-header-icon svg {
  width: 2rem;
  height: 2rem;
}

.trust-header h2 {
  margin: 0 0 1.25rem;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.trust-header p {
  margin: 0 0 3rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #9ca3af;
}

.trust-features {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 11.25rem;
  margin: 0;
  padding: 1.5rem;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 0.5rem;
  background: transparent;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.35),
    0 8px 30px rgba(56, 189, 248, 0.12);
  transition:
    translate 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  border-color: rgba(56, 189, 248, 0.45);
  translate: 0 -2px;
}

.feature-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5625rem;
  height: 3.5625rem;
  margin: 0 0 1rem;
  color: #06b6d4;
  border: 1.5px solid rgba(6, 182, 212, 0.4);
  border-radius: 0.5rem;
  background: rgba(6, 182, 212, 0.15);
  box-shadow: 0 0.125rem 1rem rgba(6, 182, 212, 0.2);
}

.feature-icon-box svg {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
  color: #06b6d4;
  stroke: #06b6d4;
  filter: drop-shadow(0 0 0.5rem rgba(6, 182, 212, 0.6)) drop-shadow(0 0 0.75rem rgba(6, 182, 212, 0.4));
}

.feature-icon-box svg path[fill],
.feature-icon-box svg [fill] {
  fill: #06b6d4;
}

.feature-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.feature-card-description {
  margin: 0;
  padding: 0 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #b0b0b0;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .trust-header-icon,
  .trust-header h2,
  .trust-header p,
  .features-cards .feature-card {
    opacity: 1;
    transform: none;
  }

  .trust-section.is-in-view .trust-header-icon,
  .trust-section.is-in-view .trust-header h2,
  .trust-section.is-in-view .trust-header p,
  .trust-section.is-in-view .features-cards .feature-card {
    animation: none;
  }
}

