     

html { scroll-behavior: auto; } /* niente smooth via CSS */

/* Bottoni */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background-color: #2563EB;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.25); text-decoration: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid #D1D5DB;
  background-color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); text-decoration: none; }

/* Badge, logo-badge, card */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid #D1D5DB;
  background: rgba(255,255,255,0.7);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: #1F2937;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  backdrop-filter: blur(6px);
}
.logo-badge {
  display: flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid #D1D5DB;
  background: #fff;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: #6B7280;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.card {
    height: 360px;
  border-radius: 1rem;
  border: 1px solid #E5E7EB;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow .2s ease;
}
.card:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.08); }

/* Liste con check */
.li-check { display: flex; align-items: flex-start; gap: 0.5rem; }
.li-check .icon { margin-top: 2px; height: 1rem; width: 1rem; flex-shrink: 0; color: #2563EB; }

/* Item build */
.build-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid #E5E7EB;
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.mini-icon { height: 1.5rem; width: 1.5rem; color: #2563EB; }

/* Immagini */
img { max-width: 100%; height: auto; display: block; }
.section-img { border-top-left-radius: 1rem; border-top-right-radius: 1rem; box-shadow: inset 0 0 0 0 rgba(0,0,0,0); }

/* Shimmer titolo HERO */
.shimmer { animation: shimmerX 2.5s ease-in-out infinite alternate; background-position-x: 0%; }
@keyframes shimmerX { from { background-position-x: 0%; } to { background-position-x: 100%; } }

/* FAQ */
.faq.item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #E5E7EB;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #111827;
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-panel.open { grid-template-rows: 1fr; }
.faq-inner {
  overflow: hidden;
  padding: 0 1.25rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #4B5563;
}

.eyebrow {
    display: block;
    position: relative;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    left: 50%;
    transform: translate(-50%);
}


.title {
    display: block;
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    left: 50%;
    transform: translate(-50%);
}

.subtitle {
    display: block;
    position: relative;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    left: 50%;
    transform: translate(-50%);
}

.paginaRelative {
    display: block;
    position: relative;
}

