* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header sticky fix */
#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 100;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO LIGHT THEME - Chi Siamo
   ============================================ */
.hero-light {
    background: linear-gradient(135deg, #fafafa 0%, #f3f4f6 100%);
    padding: 80px 0;
}

.hero-light-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-light-content {
    max-width: 560px;
}

.hero-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 24px;
}

.hero-light-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-light-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Stats */
.hero-light-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-light-stat {
    display: flex;
    flex-direction: column;
}

.hero-light-stat .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.hero-light-stat .stat-label {
    font-size: 13px;
    color: #9ca3af;
}

.stat-divider-light {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* CTA Row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e22721 0%, #c91f1a 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 39, 33, 0.3);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    color: #374151;
    padding: 14px 24px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    background: white;
    transition: all 0.2s ease;
}

.hero-cta-secondary:hover {
    border-color: #e22721;
    color: #e22721;
}

/* Hero Image */
.hero-light-image {
    position: relative;
}

.hero-light-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-light-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-light-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-light-stats {
        justify-content: center;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-light-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-light {
        padding: 60px 0;
    }

    .hero-light-title {
        font-size: 36px;
    }

    .hero-light-image img {
        height: 280px;
    }

    .hero-light-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider-light {
        display: none;
    }

    .hero-light-stat {
        align-items: center;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .hero-light-title {
        font-size: 28px;
    }

    .hero-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* HERO SECTION - OLD (kept for reference) */
.hero-chi-siamo {
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    display: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.85) 100%);
}

.hero-chi-siamo .container {
    position: relative;
    z-index: 1;
}

.hero-chi-siamo h1 {
    font-size: 56px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-chi-siamo .subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.85);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #e22721;
    margin-bottom: 10px;
}

.hero-stat-number.color-primary {
    color: #e22721;
}

.hero-stat-number.color-success {
    color: #0B8D84;
}

.hero-stat-number.color-warning {
    color: #E56E12;
}

.hero-stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* INTRO SECTION - Bento Grid */
.intro-section {
    padding: 100px 0;
    background: #f9fafb;
}

.intro-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1f2937;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* VALORE SECTION - Bento Grid Modern */
.valore-section {
    padding: 100px 0;
    background: #ffffff;
}

.valore-section h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: #1f2937;
}

.valore-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.valore-card-large {
    grid-column: span 2;
    background: #f9fafb;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.valore-card-large:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.valore-card-image {
    height: 100%;
    min-height: 300px;
}

.valore-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.valore-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.valore-badge {
    display: inline-block;
    background: rgba(226, 39, 33, 0.1);
    color: #e22721;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}

.valore-card-medium {
    background: #f9fafb;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.valore-card-medium:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.valore-card-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.valore-card-image-only {
    border-radius: 20px;
    overflow: hidden;
}

.valore-card-image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.valore-title {
    font-size: 22px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 12px;
}

.valore-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    flex: 1;
}

.valore-stat {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.valore-stat .stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #e22721;
}

.valore-stat .stat-label {
    font-size: 14px;
    color: #6b7280;
}

.location-icon {
    width: 14px;
    height: 14px;
    stroke: #e22721;
    display: inline;
    vertical-align: middle;
}

/* PRESENZA SECTION - Mappa + numeri */
.presenza-section {
    padding: 100px 0;
    background: #f9fafb;
}

.presenza-section h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #1f2937;
}

.presenza-intro {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 70px;
}

.presenza-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.presenza-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.presenza-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.presenza-citta {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.presenza-filiali {
    font-size: 32px;
    font-weight: bold;
    color: #e22721;
    margin-bottom: 5px;
}

.presenza-label {
    font-size: 14px;
    color: #6b7280;
}

.presenza-cta {
    text-align: center;
    margin-top: 50px;
}

.presenza-btn {
    display: inline-block;
    background: #e22721;
    color: white;
    padding: 18px 50px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.presenza-btn:hover {
    background: #c91f1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 39, 33, 0.3);
}

/* STORIA SECTION - Timeline Verticale */
.storia-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.storia-section h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
    color: #1f2937;
}

.storia-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    max-width: 800px;
    margin: 0 auto 20px;
}

.storia-intro {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Timeline Verticale */
.timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #e22721 0%, #0B8D84 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid #e22721;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    background: #e22721;
}

.timeline-content {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateX(8px);
}

.timeline-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #e22721;
    background: rgba(226, 39, 33, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Highlight */
.timeline-highlight .timeline-marker {
    border-color: #e22721;
    background: #e22721;
}

.timeline-highlight .timeline-content {
    background: linear-gradient(135deg, rgba(226, 39, 33, 0.05) 0%, rgba(226, 39, 33, 0.02) 100%);
    border-color: rgba(226, 39, 33, 0.2);
}

/* Timeline Final (Fusione) */
.timeline-final .timeline-marker {
    border-color: #0B8D84;
    background: #0B8D84;
    width: 22px;
    height: 22px;
    left: -42px;
}

.timeline-final .timeline-content {
    background: linear-gradient(135deg, #0B8D84 0%, #097a72 100%);
    border: none;
}

.timeline-final .timeline-year {
    background: rgba(255,255,255,0.2);
    color: white;
}

.timeline-final .timeline-content h3 {
    color: white;
}

.timeline-final .timeline-content p {
    color: rgba(255,255,255,0.9);
}

.timeline-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.timeline-stats span {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

/* Timeline Expandable Content */
.timeline-expandable {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.timeline-expandable.open {
    max-height: 600px;
    opacity: 1;
    margin-top: 12px;
}

.timeline-expandable p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.timeline-expandable ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
    list-style: none;
}

.timeline-expandable ul li {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 8px;
}

.timeline-expandable ul li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #e22721;
    border-radius: 50%;
}

.timeline-final .timeline-expandable p {
    color: rgba(255,255,255,0.9);
}

/* Timeline Toggle Button */
.timeline-toggle {
    background: none;
    border: none;
    color: #e22721;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.timeline-toggle:hover {
    color: #c91f1a;
}

.timeline-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.timeline-toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.timeline-final .timeline-toggle {
    color: rgba(255,255,255,0.8);
}

.timeline-final .timeline-toggle:hover {
    color: white;
}

/* Timeline content p margin for multiple paragraphs */
.timeline-content p + p {
    margin-top: 12px;
}

/* ============================================
   SEZIONI TEMATICHE - Bento Grid
   ============================================ */
.storia-tematiche {
    margin-top: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tematiche-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
}

.tematiche-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tematica-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease, opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.tematica-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.tematica-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.tematica-card.animate-in:hover {
    transform: translateY(-4px);
}

.tematica-card-large {
    grid-column: span 2;
}

.tematica-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tematica-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.tematica-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.tematica-card .timeline-expandable p {
    margin-top: 12px;
}

.tematica-card .timeline-expandable ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
    list-style: none;
}

.tematica-card .timeline-expandable ul li {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 8px;
}

.tematica-card .timeline-expandable ul li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #E56E12;
    border-radius: 50%;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .timeline-item,
    .tematica-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* TEAM SECTION - Modern */
.team-section {
    padding: 100px 0;
    background: #f9fafb;
}

.team-section h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #1f2937;
}

.team-intro {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-card-photo {
    height: 240px;
    overflow: hidden;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card-modern:hover .team-card-photo img {
    transform: scale(1.05);
}

.team-card-info {
    padding: 24px;
}

.team-card-name {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 14px;
    color: #e22721;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.team-card-quote {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #e22721;
    margin-bottom: 16px;
}

.team-card-stats {
    font-size: 14px;
    color: #6b7280;
}

.team-card-stats .stat-highlight {
    font-weight: bold;
    color: #0B8D84;
    font-size: 18px;
}

/* Keep old team-grid for backwards compatibility but hide */
.team-grid {
    display: none;
}

/* FLIP CARD EFFECT */
.team-card {
    perspective: 1000px;
    height: 320px;
    cursor: pointer;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-card-front {
    z-index: 2;
    display: flex;
    flex-direction: row;
    background: white;
    opacity: 1;
}

.team-card-back {
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
}

.team-card:hover .team-card-front {
    opacity: 0;
    pointer-events: none;
}

.team-card:hover .team-card-back {
    z-index: 3;
    opacity: 1;
    transform: scale(1);
}

.team-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.team-card-back-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.team-card-back-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.team-card-back-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-back-avatar i,
.team-card-back-avatar svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.team-card-back-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 4px;
}

.team-card-back-role {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.team-card-back-story {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
}

.team-card-back-quote {
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid #e22721;
    line-height: 1.7;
    word-wrap: break-word;
}

.team-card-back-evidence {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    word-wrap: break-word;
}

.team-card-back-footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #0B8D84;
    font-weight: 500;
}

.team-card-back-footer i,
.team-card-back-footer svg {
    width: 18px;
    height: 18px;
    stroke: #0B8D84;
}

.click-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
}

.click-hint i,
.click-hint svg {
    width: 12px;
    height: 12px;
    stroke: #9ca3af;
}

.team-photo {
    width: 200px;
    height: 100%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo i,
.team-photo svg {
    width: 70px;
    height: 70px;
    stroke: #9ca3af;
}

.team-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.team-name {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    color: #e22721;
    margin-bottom: 16px;
    font-weight: 600;
}

.team-location {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.team-stat {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* RISULTATI SECTION - Modern Reviews */
.risultati-section {
    padding: 100px 0;
    background: #ffffff;
}

.risultati-section h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: #1f2937;
}

.reviews-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.review-card-modern {
    background: #f9fafb;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.review-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
}

.review-role {
    font-size: 13px;
    color: #6b7280;
}

.review-stars {
    color: #fbbf24;
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    font-style: italic;
}

/* Modern Stats Bar */
.risultati-stats-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: #f9fafb;
    padding: 40px 60px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    margin-bottom: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e5e7eb;
}

/* Hide old risultati-grid */
.risultati-grid {
    display: none;
}

.risultati-stats {
    display: none;
}

/* CTA SECTION - Modern with Image */
.cta-section-modern {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.92) 0%, rgba(17, 24, 39, 0.95) 100%);
}

.cta-section-modern .container {
    position: relative;
    z-index: 1;
}

.cta-section-modern h2 {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
}

.cta-section-modern p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Old CTA Section - hide */
.cta-section {
    display: none;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-btn-primary {
    display: inline-block;
    background: #e22721;
    color: white;
    padding: 20px 60px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background: #c91f1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 39, 33, 0.4);
}

.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 20px 60px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.cta-badge svg {
    color: #0B8D84;
    stroke: #0B8D84;
}

.cta-extra-info {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .valore-bento {
        grid-template-columns: 1fr 1fr;
    }

    .valore-card-large {
        grid-column: span 2;
    }

    .team-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-chi-siamo {
        min-height: 500px;
        padding: 100px 0 80px;
    }

    .hero-chi-siamo h1 {
        font-size: 36px;
    }

    .hero-chi-siamo .subtitle {
        font-size: 18px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat {
        padding: 20px 30px;
    }

    .hero-stat-number {
        font-size: 36px;
    }

    .intro-bento {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-text h2 {
        font-size: 28px;
    }

    .intro-image img {
        height: 300px;
    }

    .valore-section h2,
    .presenza-section h2,
    .storia-section h2,
    .team-section h2,
    .risultati-section h2 {
        font-size: 32px;
    }

    .valore-bento {
        grid-template-columns: 1fr;
    }

    .valore-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .valore-card-image {
        min-height: 200px;
    }

    .presenza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .timeline-vertical {
        padding-left: 30px;
    }

    .timeline-vertical::before {
        left: 6px;
    }

    .timeline-marker {
        left: -30px;
        width: 14px;
        height: 14px;
    }

    .timeline-final .timeline-marker {
        width: 18px;
        height: 18px;
        left: -32px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .storia-section h2 {
        font-size: 28px;
    }

    .storia-intro {
        font-size: 16px;
    }

    .tematiche-bento {
        grid-template-columns: 1fr;
    }

    .tematica-card-large {
        grid-column: span 1;
    }

    .tematica-card {
        padding: 24px;
    }

    .tematiche-title {
        font-size: 24px;
    }

    .storia-tematiche {
        margin-top: 60px;
    }

    .team-grid-modern {
        grid-template-columns: 1fr;
    }

    .reviews-modern {
        grid-template-columns: 1fr;
    }

    .risultati-stats-modern {
        flex-direction: column;
        gap: 24px;
        padding: 30px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .cta-section-modern h2 {
        font-size: 32px;
    }

    .cta-section-modern p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }

    .cta-badges {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 500px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        height: auto;
        min-height: 420px;
    }

    .team-card-front {
        flex-direction: column;
    }

    .team-photo {
        width: 100%;
        height: 160px;
    }

    .team-card-back {
        padding: 24px;
    }

    .team-card-back-quote {
        font-size: 14px;
    }

    .team-card-back-evidence {
        font-size: 13px;
    }
}
