@supports (padding: env(safe-area-inset-top)) {
  header.fixed {
    padding-top: env(safe-area-inset-top);
  }

  .cookie-banner {
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

.trusted-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 210px));
  justify-content: center;
  justify-items: center;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.trusted-logo-card {
  width: 100%;
  max-width: 210px;
  height: 96px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trusted-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 255, 0, 0.5);
  box-shadow: 0 14px 30px rgba(214, 255, 0, 0.08);
}

.trusted-logo-card img {
  display: block;
  max-width: 150px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .trusted-logos-grid {
    grid-template-columns: 1fr;
    max-width: 240px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .trusted-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 210px));
  }
}
