/* ========================================
   CHI SIAMO PAGE STYLES
   ======================================== */

/* Hero Interno */
.hero-interno {
    position: relative;
    padding: 10rem 1.5rem 6rem;
    background: linear-gradient(135deg, #001021 0%, #061D32 100%);
    overflow: hidden;
}

.hero-interno-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(22, 180, 196, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-interno-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-pretitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #16B4C4;
    background: rgba(22, 180, 196, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.hero-interno-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-interno-title {
        font-size: 3.5rem;
    }
}

.hero-interno-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #16B4C4;
    margin-bottom: 1.5rem;
}

.hero-interno-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.hero-interno-cta {
    display: flex;
    justify-content: center;
}

.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: inline;
    }
}

/* Intro Section */
.intro-section {
    background: #ffffff;
}

.intro-content {
    max-width: 56rem;
    margin: 3rem auto 0;
}

.intro-paragraph {
    font-size: 1.125rem;
    color: rgba(19, 34, 52, 0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.intro-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 48rem;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: rgba(22, 180, 196, 0.05);
    border-left: 4px solid #16B4C4;
    border-radius: 0.75rem;
}

.highlight-icon {
    flex-shrink: 0;
}

.intro-highlight p {
    font-size: 1.125rem;
    color: #001021;
    line-height: 1.75;
    margin: 0;
}

/* Astramatic Section */
.astramatic-section {
    background: #F4F6F7;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.value-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(22, 180, 196, 0.15);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(22, 180, 196, 0.1);
    border-radius: 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #001021;
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 1rem;
    color: rgba(19, 34, 52, 0.7);
    line-height: 1.6;
}

/* Approccio Section */
.approccio-section {
    background: #ffffff;
}

.approccio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .approccio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .approccio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.approccio-item {
    position: relative;
    padding: 2rem;
    background: #F4F6F7;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approccio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(22, 180, 196, 0.15);
    background: #ffffff;
}

.approccio-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(22, 180, 196, 0.2);
}

.approccio-icon {
    margin: 0 auto 1.5rem;
}

.approccio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #001021;
    margin-bottom: 0.75rem;
}

.approccio-description {
    font-size: 1rem;
    color: rgba(19, 34, 52, 0.7);
    line-height: 1.6;
}

/* Sinergia Section */
.sinergia-section {
    background: linear-gradient(135deg, #001021 0%, #061D32 100%);
    position: relative;
    overflow: hidden;
}

.sinergia-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.sinergia-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.sinergia-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .sinergia-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.sinergia-item {
    text-align: center;
}

.sinergia-icon {
    margin: 0 auto 1rem;
}

.sinergia-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.sinergia-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.sinergia-cta {
    display: flex;
    justify-content: center;
}

/* Valori Section */
.valori-section {
    background: #F4F6F7;
}

.valori-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .valori-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .valori-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.valore-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(22, 180, 196, 0.15);
}

.valore-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: rgba(22, 180, 196, 0.1);
    border-radius: 50%;
}

.valore-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #001021;
    margin-bottom: 0.75rem;
}

.valore-description {
    font-size: 1rem;
    color: rgba(19, 34, 52, 0.7);
    line-height: 1.6;
}

/* Territorio Section Modern */
.territorio-section-modern {
    background: #ffffff;
}

.territorio-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .territorio-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.territorio-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: #F4F6F7;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.territorio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(22, 180, 196, 0.15);
    border-color: #16B4C4;
}

.territorio-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: rgba(22, 180, 196, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.territorio-card:hover .territorio-icon-wrapper {
    background: #16B4C4;
}

.territorio-card:hover .territorio-icon {
    stroke: #ffffff;
}

.territorio-icon {
    transition: all 0.3s ease;
}

.territorio-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001021;
    margin-bottom: 0.75rem;
}

.territorio-card-text {
    font-size: 1rem;
    color: rgba(19, 34, 52, 0.7);
    line-height: 1.6;
}

.territorio-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: #F4F6F7;
    border-radius: 1rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(22, 180, 196, 0.05);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(22, 180, 196, 0.1);
    transform: scale(1.05);
}

.stat-icon {
    flex-shrink: 0;
}

.stat-box span {
    font-size: 1rem;
    font-weight: 600;
    color: #001021;
}

/* Sinergia Section with Image */
.sinergia-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .sinergia-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.sinergia-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.sinergia-studio-image {
    width: 100%;
    height: auto;
    display: block;
}

.sinergia-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 180, 196, 0.1) 0%, rgba(0, 16, 33, 0.2) 100%);
    pointer-events: none;
}

.sinergia-content {
    text-align: left;
}

@media (max-width: 1023px) {
    .sinergia-content {
        text-align: center;
    }
}

.sinergia-features {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .sinergia-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #001021 0%, #061D32 100%);
    overflow: hidden;
}

.cta-bg-decoration {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(22, 180, 196, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-buttons .btn {
    width: 100%;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons .btn {
        width: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
