/* ==========================================================================
   Pagina Chi Siamo – hero semplice con sfondo nero
   ========================================================================== */

.chi-siamo-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.9)),
    url("/assets/img/home/chi-siamo.webp") center center / cover no-repeat;
}

.chi-siamo-page .logo-link {
  display: none;
}

.chi-siamo-page .header-inner {
  justify-content: center;
}

/* Navbar: stili specifici solo per pagina Chi Siamo */
.chi-siamo-page .nav-link,
.chi-siamo-page .mobile-nav-link {
  color: #ffffff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow: none;
}

/* Home su Chi Siamo: stile "normale", senza evidenza speciale */
.chi-siamo-page .nav-link-home,
.chi-siamo-page .mobile-nav-link-home {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #ffffff;
  text-shadow: none;
}

.chi-siamo-page .nav-link-home::after {
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    var(--color-secondary)
  );
}

/* Voce attiva: Chi Siamo */
.chi-siamo-page .nav-link-active,
.chi-siamo-page .mobile-nav-link-active {
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 0.9rem;
  background: linear-gradient(
    120deg,
    var(--color-accent),
    var(--color-secondary),
    var(--color-magenta)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(59, 130, 246, 0.55);
}

.chi-siamo-page .nav-link-active::after,
.chi-siamo-page .mobile-nav-link-active::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    var(--color-secondary),
    var(--color-magenta)
  );
}

.chi-siamo-page .nav-link-active:hover,
.chi-siamo-page .nav-link-active:focus-visible,
.chi-siamo-page .mobile-nav-link-active:hover,
.chi-siamo-page .mobile-nav-link-active:focus-visible {
  color: transparent;
}

.chi-siamo-hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3.5rem;
}

.chi-siamo-hero-inner {
  max-width: 1120px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.chi-siamo-hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.chi-siamo-hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

.chi-siamo-hero-content {
  text-align: left;
}

.chi-siamo-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
}

.chi-siamo-hero-subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e5e7eb;
}

/* Sezioni successive: testo centrato */
.chi-siamo-section {
  padding: 4rem 1.5rem;
}

.chi-siamo-section-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.chi-siamo-section-title {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
}

.chi-siamo-section-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #e5e7eb;
}

.chi-siamo-steps {
  text-align: center;
}

.chi-siamo-step-title {
  margin: 2rem 0 0.75rem;
  font-size: 1.02rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.chi-siamo-step-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #e5e7eb;
}

.chi-siamo-cta-buttons {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .chi-siamo-page .header-inner {
    justify-content: flex-end;
  }

  .chi-siamo-hero-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .chi-siamo-hero-content {
    text-align: center;
  }
}

