/*
 * CSS dedicato per la pagina Chi Siamo
 * Hero section innovativa con design asimmetrico e animazioni avanzate
 */

/* Hero Section Innovativa */
.hero-innovative {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.9) 0%, 
        rgba(226, 232, 240, 0.8) 30%,
        rgba(203, 213, 225, 0.9) 70%,
        rgba(241, 245, 249, 0.8) 100%);
}

/* Background Container con forme geometriche */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.8;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15), rgba(52, 199, 89, 0.15));
    opacity: 0.6;
    animation: floatShape 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 30%;
    animation-delay: 3s;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(0, 122, 255, 0.05) 20%,
        rgba(52, 199, 89, 0.05) 50%,
        rgba(0, 122, 255, 0.08) 80%,
        rgba(255, 255, 255, 0.7) 100%);
    z-index: 3;
}

/* Contenuto principale */
.hero-main-content {
    position: relative;
    z-index: 4;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
}

/* Pannello sinistro */
.hero-left-panel {
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-badge-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    margin-bottom: 40px;
    width: fit-content;
    animation: fadeInUp 1s ease-out 0.5s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.1);
}

.hero-badge-modern:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.15);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.badge-sublabel {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 400;
}

.hero-title-container {
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-title-modern {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0;
}

.title-word {
    display: block;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.title-word-1 {
    animation-delay: 0.9s;
    color: var(--secondary-color);
}

.title-word-2 {
    animation-delay: 1.1s;
    color: var(--secondary-color);
    margin-left: 20px;
}

.title-accent-modern {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.3s both;
}

.hero-description-modern {
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.description-text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--light-text);
    max-width: 600px;
    margin: 0;
}
.description-text-mobile { display: none; }

.hero-actions-modern {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.7s both;
}

.action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.action-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
}

.action-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 122, 255, 0.4);
    color: var(--white);
    text-decoration: none;
}

.action-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.1);
}

.action-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.2);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.action-primary:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Pannello destro */
.hero-right-panel {
    animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.stats-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.15);
}

.stats-header {
    text-align: center;
    margin-bottom: 32px;
}

.stats-header h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 16px 0;
}

.stats-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.1);
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

.stat-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.stat-content {
    text-align: center;
}

.stat-number {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 500;
    line-height: 1.2;
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: progressFill 2s ease-out 1s both;
}

.stat-card-1 .progress-bar { animation-delay: 1.2s; }
.stat-card-2 .progress-bar { animation-delay: 1.4s; }
.stat-card-3 .progress-bar { animation-delay: 1.6s; }
.stat-card-4 .progress-bar { animation-delay: 1.8s; }


/* Indicatore di scroll moderno */
.scroll-indicator-modern {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 5;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-track {
    width: 2px;
    height: 60px;
    background: rgba(0, 122, 255, 0.2);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    animation: scrollMove 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
    text-align: center;
}

/* Particelle animate */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.8;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    top: 80%;
    right: 25%;
    animation-delay: 6s;
}

.particle-5 {
    top: 30%;
    left: 50%;
    animation-delay: 1s;
}

/* Mission Section */
.mission-section {
    padding: 120px 24px;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.02) 0%, 
        rgba(52, 199, 89, 0.02) 50%, 
        rgba(0, 122, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(52, 199, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mission-badge i {
    font-size: 1rem;
    color: var(--accent-color);
}

.mission-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mission-title .title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 1s ease-out both;
}

.mission-title .title-line:nth-child(1) { animation-delay: 0.6s; }
.mission-title .title-line:nth-child(2) { animation-delay: 0.8s; }

.mission-title .title-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.mission-card:nth-child(1) { animation-delay: 0.2s; }
.mission-card:nth-child(2) { animation-delay: 0.4s; }

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.mission-card-content h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.mission-card-content p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
    font-weight: 400;
}

.mission-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.6s; }
.feature-item:nth-child(2) { animation-delay: 0.8s; }
.feature-item:nth-child(3) { animation-delay: 1s; }
.feature-item:nth-child(4) { animation-delay: 1.2s; }

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-about .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-about .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-about .hero-title {
        font-size: 3rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-innovative {
        min-height: 700px;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }
    
    .hero-left-panel {
        text-align: center;
    }
    
    .hero-right-panel {
        order: -1;
    }
    
    .stats-container {
        padding: 40px 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-innovative { height: 100svh; min-height: 540px; }
    .hero-main-content { padding: 0 20px; gap: 28px; }
    .hero-title-modern { font-size: 5rem !important; line-height: 1.05 !important; letter-spacing: -0.03em; }
    .title-accent-modern { font-size: 2.6rem !important; }

    /* Show only: badge, title, short description, primary CTA */
    .hero-right-panel,
    .scroll-indicator-modern,
    .particles-container,
    .action-secondary { display: none !important; }
    .hero-actions-modern { flex-direction: column; align-items: center; }
    .action-btn { min-width: 250px; }

    /* Text handling */
    .description-text { display: none; }
    .description-text-mobile { display: block; font-size: 1.2rem !important; line-height: 1.55 !important; color: var(--light-text); }
}

@media (max-width: 576px) {
    .hero-innovative { height: 100svh; min-height: 520px; }
    .hero-main-content { padding: 0 16px; gap: 24px; }
    .hero-title-modern { font-size: 3.6rem !important; letter-spacing: -0.03em; }
    .title-accent-modern { font-size: 2rem !important; }
    .description-text { font-size: 1.05rem; }
    .description-text-mobile { font-size: 1.1rem !important; }
    .hero-badge-modern { flex-direction: column; text-align: center; gap: 12px; }
    .hero-actions-modern { flex-direction: column; gap: 12px; }
    .action-btn { width: 100%; max-width: 280px; padding: 14px 24px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero-innovative { height: 100svh; min-height: 480px; }
    .hero-title-modern { font-size: 3rem !important; letter-spacing: -0.02em; }
    .title-accent-modern { font-size: 1.7rem !important; }
    .description-text { font-size: 1rem; }
    .description-text-mobile { font-size: 1.05rem !important; }
    .action-btn { padding: 12px 20px; font-size: 0.85rem; }
}

/* Founder Section */
.founder-section {
    padding: 120px 24px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(52, 199, 89, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.founder-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.founder-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.founder-badge i {
    font-size: 1rem;
    color: var(--accent-color);
}

.founder-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.founder-title .title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 1s ease-out both;
}

.founder-title .title-line:nth-child(1) { animation-delay: 0.6s; }
.founder-title .title-line:nth-child(2) { animation-delay: 0.8s; }

.founder-title .title-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.founder-profile {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.founder-image {
    position: relative;
    margin-bottom: 24px;
}

.founder-avatar {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-avatar:hover {
    transform: scale(1.05);
}

.founder-bg-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(52, 199, 89, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-profile:hover .founder-bg-pattern {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.founder-name {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.founder-role {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
}

.founder-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.founder-stats .stat {
    text-align: center;
}

.founder-stats .stat-number {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.founder-stats .stat-label {
    font-size: 0.8rem;
    color: var(--light-text);
    font-weight: 500;
}

.founder-story {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease-out;
}

.story-card:nth-child(1) { animation-delay: 0.4s; }
.story-card:nth-child(2) { animation-delay: 0.6s; }

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.story-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.story-content h4 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.story-content p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
    font-weight: 400;
}







/* Values Section */
.values-section {
    padding: 120px 24px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 122, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(52, 199, 89, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.values-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.values-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.values-badge i {
    font-size: 1rem;
    color: var(--accent-color);
}

.values-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.values-title .title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 1s ease-out both;
}

.values-title .title-line:nth-child(1) { animation-delay: 0.6s; }
.values-title .title-line:nth-child(2) { animation-delay: 0.8s; }

.values-title .title-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    position: relative;
    height: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.4s; }
.value-card:nth-child(3) { animation-delay: 0.6s; }
.value-card:nth-child(4) { animation-delay: 0.8s; }
.value-card:nth-child(5) { animation-delay: 1s; }
.value-card:nth-child(6) { animation-delay: 1.2s; }

.value-card-inner {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.value-card:hover .value-card-inner::before {
    transform: scaleX(1);
}

.value-card:hover .value-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
}

.value-icon-container {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(52, 199, 89, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card:hover .value-icon-bg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.value-content h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.value-content p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.value-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.feature-tag {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 122, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .feature-tag {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Partners Section */
.partners-section {
    padding: 120px 24px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(52, 199, 89, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.partners-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partners-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.partners-badge i {
    font-size: 1rem;
    color: var(--accent-color);
}

.partners-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.partners-title .title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 1s ease-out both;
}

.partners-title .title-line:nth-child(1) { animation-delay: 0.6s; }
.partners-title .title-line:nth-child(2) { animation-delay: 0.8s; }

.partners-title .title-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.partner-card:nth-child(1) { animation-delay: 0.2s; }
.partner-card:nth-child(2) { animation-delay: 0.4s; }
.partner-card:nth-child(3) { animation-delay: 0.6s; }
.partner-card:nth-child(4) { animation-delay: 0.8s; }

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.partner-info {
    flex: 1;
}

.partner-info h4 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.partner-location {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 4px;
    font-weight: 500;
}

.partner-type {
    font-size: 0.8rem;
    color: var(--light-text);
    font-weight: 400;
}

.partner-status {
    flex-shrink: 0;
}

.status-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partners-cta {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.partners-cta h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.partners-cta p {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.05) 0%, 
        rgba(52, 199, 89, 0.05) 50%, 
        rgba(0, 122, 255, 0.05) 100%);
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(52, 199, 89, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-section .cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-content {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out;
}

.final-cta-section .cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.final-cta-section .cta-icon i {
    font-size: 2rem;
    color: var(--white);
}

.final-cta-section .cta-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.final-cta-section .cta-description {
    font-size: 1.25rem;
    color: var(--light-text);
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.final-cta-section .cta-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.final-cta-section .phone-section,
.final-cta-section .hours-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.final-cta-section .phone-section::before,
.final-cta-section .hours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.final-cta-section .phone-section:hover,
.final-cta-section .hours-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.final-cta-section .phone-icon,
.final-cta-section .hours-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    flex-shrink: 0;
}

.final-cta-section .phone-icon i,
.final-cta-section .hours-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.final-cta-section .phone-info,
.final-cta-section .hours-info {
    flex: 1;
}

.final-cta-section .phone-label,
.final-cta-section .hours-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-section .phone-number {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 4px;
}

.final-cta-section .phone-number:hover {
    color: #0056CC;
    text-decoration: none;
}

.final-cta-section .hours-text {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.final-cta-section .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.final-cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    justify-content: center;
    text-decoration: none;
}

.final-cta-section .cta-btn i {
    font-size: 1.1rem;
}

.final-cta-section .cta-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(0, 122, 255, 0.3);
}

.final-cta-section .cta-btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 122, 255, 0.4);
    color: var(--white);
    text-decoration: none;
}

.final-cta-section .cta-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.final-cta-section .cta-btn.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 122, 255, 0.3);
    text-decoration: none;
}

/* Responsive Design per le nuove sezioni */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-title,
    .values-title,
    .partners-title {
        font-size: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 768px) {
    .founder-section,
    .values-section,
    .partners-section,
    .final-cta-section {
        padding: 80px 20px;
    }
    
    .founder-title,
    .values-title,
    .partners-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    
    .story-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .final-cta-section .cta-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .final-cta-section .phone-section,
    .final-cta-section .hours-section {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .final-cta-section .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-section .cta-btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .founder-section,
    .values-section,
    .partners-section,
    .final-cta-section {
        padding: 60px 16px;
    }
    
    .founder-title,
    .values-title,
    .partners-title {
        font-size: 2rem;
    }
    
    .founder-profile {
        padding: 32px 24px;
    }
    
    .founder-avatar {
        width: 140px;
        height: 140px;
        font-size: 3rem;
    }
    
    .value-card-inner {
        padding: 32px 24px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .value-icon-bg {
        width: 90px;
        height: 90px;
    }
    
    .partner-card {
        padding: 24px 20px;
    }
    
    .partner-logo {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .final-cta-section .cta-title {
        font-size: 2rem;
    }
    
    .final-cta-section .cta-description {
        font-size: 1.125rem;
    }
    
    .final-cta-section .cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .final-cta-section .cta-icon i {
        font-size: 1.5rem;
    }
    
    .final-cta-section .phone-section,
    .final-cta-section .hours-section {
        padding: 24px 20px;
    }
    
    .final-cta-section .phone-icon,
    .final-cta-section .hours-icon {
        width: 50px;
        height: 50px;
    }
    
    .final-cta-section .phone-icon i,
    .final-cta-section .hours-icon i {
        font-size: 1.25rem;
    }
    
    .final-cta-section .phone-number {
        font-size: 1.25rem;
    }
    
    .final-cta-section .cta-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* Animazioni personalizzate per la hero section innovativa */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressFill {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes scrollMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(40px);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) translateX(-5px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(15px);
        opacity: 0.7;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Responsive Design per la hero section innovativa */
@media (max-width: 1200px) {
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-right-panel {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-innovative { height: 100svh; min-height: 540px; }
    .hero-main-content { padding: 0 20px; gap: 28px; }
    .hero-title-modern { font-size: 3.5rem; }
    .title-accent-modern { font-size: 2rem; }

    /* Show only: badge, title, short description, primary CTA */
    .hero-right-panel,
    .scroll-indicator-modern,
    .particles-container,
    .action-secondary { display: none !important; }
    .hero-actions-modern { flex-direction: column; align-items: center; }
    .action-btn { min-width: 250px; }

    /* Text handling */
    .description-text { display: none; }
    .description-text-mobile { display: block; font-size: 1rem; line-height: 1.5; color: var(--light-text); }
}

@media (max-width: 576px) {
    .hero-innovative { height: 100svh; min-height: 520px; }
    .hero-main-content { padding: 0 16px; gap: 24px; }
    .hero-title-modern { font-size: 2.2rem; }
    .title-accent-modern { font-size: 1.4rem; }
    .description-text { font-size: 0.95rem; }
    .description-text-mobile { font-size: 0.95rem; }
    .hero-badge-modern { flex-direction: column; text-align: center; gap: 12px; }
    .hero-actions-modern { flex-direction: column; gap: 12px; }
    .action-btn { width: 100%; max-width: 280px; padding: 14px 24px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero-innovative { height: 100svh; min-height: 480px; }
    .hero-title-modern { font-size: 1.8rem; }
    .title-accent-modern { font-size: 1.2rem; }
    .description-text { font-size: 0.9rem; }
    .description-text-mobile { font-size: 0.9rem; }
    .action-btn { padding: 12px 20px; font-size: 0.85rem; }
}

/* Foto di gruppo - Box arrotondato */
.team-photo-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.02) 0%, 
        rgba(52, 199, 89, 0.02) 50%, 
        rgba(0, 122, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.team-photo-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-photo-box {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.team-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: var(--white);
}

.photo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.photo-badge i {
    color: var(--accent-color);
    font-size: 1rem;
}

.photo-overlay h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.photo-overlay p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Foto del fondatore */
.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-avatar:hover .founder-photo {
    transform: scale(1.05);
}

/* Sezioni con foto laterali */
.mission-visual,
.values-visual,
.partners-visual {
    margin-bottom: 40px;
}

/* Box caratteristiche sotto l'immagine */
.mission-visual .mission-features {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mission-visual .feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.mission-visual .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mission-visual .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0056CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-visual .feature-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.mission-visual .feature-content h4 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.mission-visual .feature-content p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.4;
    margin: 0;
}

.mission-image-box,
.values-image-box,
.partners-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mission-image-box:hover,
.values-image-box:hover,
.partners-image-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-photo,
.values-photo,
.partners-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Desktop: alza solo l'immagine del box "I nostri valori" */
.values-photo {
    height: 380px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.8) 0%, 
        rgba(52, 199, 89, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-image-box:hover .image-overlay,
.values-image-box:hover .image-overlay,
.partners-image-box:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    animation: fadeInUp 0.6s ease-out;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.overlay-content span {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Layout responsive per le sezioni con foto */
@media (min-width: 1024px) {
    .mission-content,
    .values-content,
    .partners-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 60px;
        align-items: start;
    }
    
    .mission-visual,
    .values-visual,
    .partners-visual {
        margin-bottom: 0;
    }
}

@media (max-width: 1023px) {
    .mission-content,
    .values-content,
    .partners-content {
        display: block;
    }
    
    .mission-visual,
    .values-visual,
    .partners-visual {
        margin-bottom: 40px;
    }
    
    .mission-photo,
    .values-photo,
    .partners-photo {
        height: 250px;
    }
    
    .team-photo {
        height: 450px;
    }
    
    .mission-visual .mission-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .mission-visual .feature-item {
        padding: 16px;
        gap: 12px;
    }
    
    .mission-visual .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .mission-visual .feature-icon i {
        font-size: 1rem;
    }
    
    .mission-visual .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .mission-visual .feature-content p {
        font-size: 0.8rem;
    }

    /* Aumenta solo il box immagine della sezione "I nostri valori" */
    .values-photo {
        height: 400px;
    }
}

@media (max-width: 900px) {
    .team-photo {
        height: 400px;
    }
    
    .photo-overlay h3 {
        font-size: 2.25rem;
    }
    
    .photo-overlay p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .team-photo-section {
        padding: 60px 20px;
    }
    
    .team-photo {
        height: 350px;
    }
    
    .photo-overlay {
        padding: 30px 20px;
    }
    
    .photo-overlay h3 {
        font-size: 2rem;
    }
    
    .photo-overlay p {
        font-size: 1rem;
    }
    
    .mission-photo,
    .values-photo,
    .partners-photo {
        height: 400px;
    }
    /* Solo per la sezione "I nostri valori": un po' più alta */
    .values-photo {
        height: 520px;
    }
    
    .mission-visual .mission-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mission-visual .feature-item {
        padding: 16px;
        gap: 12px;
    }
    
    .mission-visual .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .mission-visual .feature-icon i {
        font-size: 1rem;
    }
    
    .mission-visual .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .mission-visual .feature-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .team-photo-section {
        padding: 40px 16px;
    }
    
    .team-photo {
        height: 300px;
    }
    
    .photo-overlay {
        padding: 24px 16px;
    }
    
    .photo-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .photo-overlay h3 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .photo-overlay p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .mission-photo,
    .values-photo,
    .partners-photo {
        height: 280px;
    }
    
    .mission-image-box,
    .values-image-box,
    .partners-image-box {
        border-radius: 16px;
    }
    
    .overlay-content i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .overlay-content span {
        font-size: 1rem;
    }

    /* Valori: alza un po' di più solo questa immagine su mobile piccolo */
    .values-photo {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-innovative {
        min-height: 450px;
    }
    
    .hero-title-modern {
        font-size: 1.8rem;
    }
    
    .title-accent-modern {
        font-size: 1.2rem;
    }
    
    .description-text {
        font-size: 0.9rem;
    }
    
    .action-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .team-photo {
        height: 320px;
    }
    
    .photo-overlay h3 {
        font-size: 1.5rem;
    }
    
    .photo-overlay p {
        font-size: 0.85rem;
    }

    /* Valori: mantieni altezza maggiore anche su telefoni stretti */
    .values-photo {
        height: 390px;
    }
}
