* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: #0f172a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

h1 {
  margin-bottom: 8px;
}

.cards {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #1e293b;
  width: 260px;
  padding: 32px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}


.card img {
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
}

.card span {
  font-size: 22px;
  font-weight: 600;
}

.brand-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center; /* centra tutto */
}

.brand-inline img {
  height: 48px;
  width: auto;
}

/* mobile */
@media (max-width: 480px) {
  .brand-inline {
    flex-direction: column;
    gap: 8px;
  }

  .brand-inline img {
    height: 40px;
  }
}