    /* Stili minimi per adattare le sezioni originali al nuovo CSS */
    .hero h1 { 
      font-size: clamp(2.5rem, 4vw, 4rem); 
      line-height: 1.1; 
      margin-bottom: 1.5rem; 
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .hero h1 span { 
      background: linear-gradient(90deg, var(--accent), #ff6b3d); 
      -webkit-background-clip: text; 
      background-clip: text; 
      color: transparent; 
    }
    .hero p { 
      font-size: 1.1rem; 
      max-width: 600px; 
      color: var(--text); 
      line-height: 1.7;
      margin-bottom: 3rem;
    }
    
    .founders { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); 
      gap: 2rem; 
      margin: 4rem 0; 
    }
    .founder-card { 
      background: rgba(15,23,42,0.95); 
      border: 1px solid var(--border); 
      border-radius: var(--radius-lg); 
      padding: 1.5rem; 
      box-shadow: var(--shadow-card); 
      display: flex; 
      gap: 1.5rem; 
      transition: transform 0.3s ease;
    }
    .founder-card:hover { 
      transform: translateY(-4px); 
      box-shadow: var(--shadow-soft); 
    }
    .founder-avatar-wrap { 
      height: 220px; 
      width: 220px; 
      border-radius: var(--radius-lg); 
      background: linear-gradient(135deg, #1e293b, #0f172a); 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      flex-shrink: 0;
      border: 1px solid rgba(148,163,184,0.3);
    }
    .avatar { 
      border-radius: var(--radius-lg); 
      border: 3px solid rgba(255,179,0,0.3);
    }
    .founder-role { 
      font-size: 0.8rem; 
      color: var(--accent); 
      font-weight: 500; 
      text-transform: uppercase; 
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }
    .founder-name { 
      font-size: 1.3rem; 
      font-weight: 600; 
      margin-bottom: 1rem; 
      color: var(--text);
    }
    .founder-bio { 
      font-size: 0.95rem; 
      line-height: 1.6; 
      color: var(--muted);
    }

    .story-section { 
      display: grid; 
      grid-template-columns: 1fr 350px; 
      gap: 3rem; 
      margin: 5rem 0; 
      align-items: start;
    }
    .story-content h2 { 
      font-size: 1.6rem; 
      font-weight: 600; 
      margin-bottom: 1.5rem; 
      color: var(--text);
    }
    .story-content h3 { 
      font-size: 1.2rem; 
      font-weight: 500; 
      margin: 2.5rem 0 1rem 0; 
      color: var(--text);
    }
    .story-text p { 
      font-size: 1.05rem; 
      line-height: 1.7; 
      margin-bottom: 1.5rem; 
      color: var(--text);
    }
    .skills-list { 
      display: flex; 
      flex-direction: column; 
      gap: 0.75rem; 
      margin-top: 1rem;
    }
    .skill-item { 
      display: flex; 
      align-items: center; 
      gap: 0.75rem; 
      font-size: 0.95rem; 
      color: var(--muted);
    }
    .skill-dot { 
      width: 8px; 
      height: 8px; 
      border-radius: 50%; 
      background: var(--accent); 
      box-shadow: 0 0 0 2px rgba(255,179,0,0.3);
    }

    .timeline { 
      background: rgba(15,23,42,0.95); 
      border: 1px solid var(--border); 
      border-radius: var(--radius-lg); 
      padding: 2rem; 
      box-shadow: var(--shadow-card);
    }
    .stat-row { 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      margin-bottom: 1.5rem; 
      padding-bottom: 1.5rem; 
      border-bottom: 1px solid rgba(148,163,184,0.2);
    }
    .stat-row:last-child { 
      border-bottom: none; 
      margin-bottom: 0; 
      padding-bottom: 0;
    }
    .stat-val { 
      font-size: 2rem; 
      font-weight: 700; 
      background: linear-gradient(135deg, var(--accent), #ff6b3d); 
      -webkit-background-clip: text; 
      background-clip: text; 
      color: transparent; 
      line-height: 1.1;
    }
    .stat-label { 
      font-size: 0.85rem; 
      color: var(--muted); 
      margin-top: 0.25rem; 
      font-weight: 500;
    }
    .timeline > div:last-child { 
      font-size: 0.9rem; 
      color: var(--muted); 
      line-height: 1.6; 
      margin-top: 1.5rem; 
      padding-top: 1.5rem; 
      border-top: 1px solid rgba(148,163,184,0.2);
    }

    @media (max-width: 900px) {
      .story-section { grid-template-columns: 1fr; }
      .founders { grid-template-columns: 1fr; }
      .stat-row { flex-direction: column; gap: 0.5rem; text-align: center; }
    }

