/* ==========================================================================
   SEZIONE BRAND — SFONDO NAVY SCURO CON CARD GLASSMORPHISM
   ========================================================================== */

/* Wrapper sezione con sfondo navy profondo */
.brand-section {
  background-color: var(--fs-navy-deep);
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* Card effetto vetro */
.glass-card {
  background: var(--fs-glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 50px;
  color: var(--fs-white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Titolo nella card glass */
.brand-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fs-blue-light);
  margin-bottom: 10px;
}

.brand-title span {
  color: var(--fs-white);
  text-transform: uppercase;
}

/* Sottotitolo azzurro chiaro */
.brand-subtitle {
  font-size: 1.4rem;
  color: var(--fs-blue-accent);
  font-weight: 700;
  margin-bottom: 30px;
}

/* Lista descrittiva con pallini lime */
.brand-list {
  list-style: none;
  padding: 0;
}

.brand-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Pallino lime come bullet personalizzato */
.brand-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: var(--fs-lime);
  border-radius: 50%;
}

/* Immagine hero della sezione brand (leggermente ingrandita) */
.brand-hero-img {
  max-width: 110%;
  transform: scale(1.1);
}

/* Utility z-index */
.z-index-2 {
  position: relative;
  z-index: 2;
}

/* Responsive brand section */
@media (max-width: 991px) {
  .brand-section { padding: 60px 0; }
  .glass-card { padding: 30px; margin-bottom: 30px; }
  .brand-title { font-size: 2rem; }
  .brand-hero-img { transform: scale(1); max-width: 100%; }
}
