/* ==========================================================================
   Sezione 6 — "Un supporto solido e costante" (Figma 1070:4732, parte alta)
   Eyebrow + titolo centrato, 5 feature con bordo sinistro, claim "300 aziende"
   e striscia loghi in pillola con marquee.
   ========================================================================== */

.supporto { background: var(--color-surface); }

.supporto__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-section);
  align-items: center;
  padding-block: var(--space-section);
}

.supporto__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 886px;
  text-align: center;
}
.supporto__eyebrow {
  font-size: var(--fs-body);
  line-height: 1.2;
  color: #888;
  letter-spacing: 0.02em;
}
.supporto__title {
  font-size: var(--fs-h2); /* 48px */
  font-weight: var(--fw-light);
  line-height: var(--lh-h2);
  color: var(--color-text);
}
.supporto__title strong { font-weight: var(--fw-bold); }

/* ---- 5 feature ---- */
.supporto__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.supporto__feat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 24px;
  border-left: 1px solid var(--color-border);
}
.supporto__feat-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(157.26deg, #ffffff 0%, #11b371 100%);
  color: #fff;
}
.supporto__feat-ic svg { width: 22px; height: 22px; }
.supporto__feat-text {
  font-size: var(--fs-p22);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-text);
}

/* ---- Claim + striscia loghi ---- */
.supporto__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.supporto__claim {
  max-width: 890px;
  font-size: var(--fs-p28); /* 28px */
  line-height: 1.2;
  text-align: center;
  color: var(--color-text);
}
.supporto__claim strong { font-weight: var(--fw-bold); }

.supporto__logos {
  width: 100%;
  padding: 12px 14px;
  border-radius: 50px;
  background: rgba(199, 199, 199, 0.12);
  overflow: hidden;
}
.supporto__logos .clients__marquee { border-radius: 50px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .supporto__features { flex-wrap: wrap; }
  .supporto__feat { flex: 1 1 40%; }
}

@media (max-width: 720px) {
  .supporto__inner { gap: 40px; }
  .supporto__head { gap: 16px; }
  .supporto__features { gap: 20px; }
  .supporto__feat { flex: 1 1 100%; gap: 12px; }
  .supporto__feat-text { line-height: 1.35; }
  .supporto__claim { font-size: var(--fs-p22); line-height: 1.4; }
}
