/* ========================================
   CHI SIAMO PAGE — DRAMATIC DARK REDESIGN
   ======================================== */

.about-page * { box-sizing: border-box; }
.about-page { background: #f0f9fc; }

.cs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

/* ========================================
   SHARED ELEMENTS
   ======================================== */

.cs-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(127, 199, 217, 0.15);
    border: 1px solid rgba(127, 199, 217, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #7FC7D9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.cs-section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.cs-badge-dot {
    width: 7px;
    height: 7px;
    background: #7FC7D9;
    border-radius: 50%;
    animation: heroPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(127, 199, 217, 0.5);
}

.cs-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.cs-section-title span {
    background: linear-gradient(135deg, #7FC7D9 0%, #a8e0eb 50%, #7FC7D9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradient 4s ease-in-out infinite;
}

.cs-section-title-center {
    text-align: center;
}

/* Background Orbs */
.cs-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}
.cs-bg-orb-1 { width: 500px; height: 500px; background: rgba(127,199,217,0.15); top: -150px; left: -200px; animation: orbFloat 14s ease-in-out infinite; }
.cs-bg-orb-2 { width: 400px; height: 400px; background: rgba(58,155,181,0.1); bottom: -100px; right: -100px; animation: orbFloat 18s ease-in-out infinite reverse; }
.cs-bg-orb-3 { width: 350px; height: 350px; background: rgba(127,199,217,0.12); top: 50%; left: 60%; animation: orbFloat 12s ease-in-out infinite 2s; }
.cs-bg-orb-4 { width: 500px; height: 500px; background: rgba(127,199,217,0.1); top: -150px; right: -200px; animation: orbFloat 16s ease-in-out infinite; }

/* ========================================
   HERO — FULL PARALLAX
   ======================================== */

.cs-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cs-hero-parallax {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.cs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,53,71,0.75) 0%, rgba(12,53,71,0.85) 50%, rgba(12,53,71,0.95) 100%);
    z-index: 1;
}

.cs-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 2;
}
.cs-hero-orb-1 { width: 400px; height: 400px; background: rgba(127,199,217,0.15); top: -100px; right: -50px; animation: orbFloat 12s ease-in-out infinite; }
.cs-hero-orb-2 { width: 300px; height: 300px; background: rgba(58,155,181,0.12); bottom: -80px; left: -50px; animation: orbFloat 16s ease-in-out infinite reverse; }

.cs-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 24px 80px;
}

.cs-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    font-size: 13px;
}

.cs-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.cs-breadcrumb a:hover { color: #7FC7D9; }
.cs-breadcrumb svg { width: 14px; height: 14px; color: rgba(255,255,255,0.3); }
.cs-breadcrumb span { color: rgba(255,255,255,0.8); }

.cs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(127,199,217,0.12);
    border: 1px solid rgba(127,199,217,0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #7FC7D9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.cs-hero-badge-dot {
    width: 7px; height: 7px;
    background: #7FC7D9;
    border-radius: 50%;
    animation: heroPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(127,199,217,0.5);
}

.cs-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cs-hero-title span {
    background: linear-gradient(135deg, #7FC7D9 0%, #a8e0eb 50%, #7FC7D9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradient 4s ease-in-out infinite;
}

.cs-hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cs-hero-scroll {
    animation: float 3s ease-in-out infinite;
}
.cs-hero-scroll svg {
    width: 28px; height: 28px;
    color: rgba(127,199,217,0.5);
}

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

/* ========================================
   STORIA — LIGHT
   ======================================== */

.cs-storia {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #f0f9fc 0%, #e6f4f9 50%, #dceef5 100%);
    overflow: hidden;
}

.cs-storia::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #7FC7D9 30%, #3A9BB5 50%, #7FC7D9 70%, transparent 90%);
    opacity: 0.5;
}

.cs-storia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cs-storia-content .cs-section-badge {
    background: rgba(127,199,217,0.12);
    border-color: rgba(127,199,217,0.25);
    color: #3A9BB5;
}

.cs-storia-content .cs-section-title {
    color: #1F2937;
}

.cs-storia-content .cs-section-title span {
    background: linear-gradient(135deg, #3A9BB5 0%, #7FC7D9 50%, #3A9BB5 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradient 4s ease-in-out infinite;
}

.cs-storia-content p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.85;
    margin-bottom: 16px;
}

.cs-storia-features {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.cs-storia-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.15);
    border-radius: 16px;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cs-storia-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #7FC7D9, #3A9BB5);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.cs-storia-feature:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(127,199,217,0.15);
    border-color: rgba(127,199,217,0.3);
}

.cs-storia-feature:hover::before {
    transform: scaleY(1);
}

.cs-feature-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.cs-feature-icon svg { width: 24px; height: 24px; color: white; }

.cs-feature-icon-blue { background: linear-gradient(135deg, #3B82F6, #2563EB); box-shadow: 0 4px 16px rgba(59,130,246,0.3); }
.cs-feature-icon-green { background: linear-gradient(135deg, #10B981, #059669); box-shadow: 0 4px 16px rgba(16,185,129,0.3); }

.cs-storia-feature:hover .cs-feature-icon { transform: scale(1.1) rotate(-5deg); }

.cs-storia-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
}

.cs-storia-feature small {
    font-size: 12px;
    color: #6B7280;
}

/* Image */
.cs-storia-image-wrap {
    position: relative;
}

.cs-storia-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(127,199,217,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.23,1,0.32,1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.cs-storia-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.cs-storia-placeholder {
    aspect-ratio: 4/3;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(127,199,217,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.cs-storia-placeholder svg { width: 64px; height: 64px; color: rgba(127,199,217,0.4); }

.cs-storia-image-accent {
    position: absolute;
    inset: 12px -12px -12px 12px;
    border: 1px solid rgba(127,199,217,0.2);
    border-radius: 24px;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.23,1,0.32,1);
}

.cs-storia-image-wrap:hover .cs-storia-image-accent {
    inset: 16px -16px -16px 16px;
}

/* Stats bar */
.cs-storia-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 24px;
    padding: 20px 32px;
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.cs-stat {
    flex: 1;
    text-align: center;
}

.cs-stat-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #3A9BB5;
}

.cs-stat-label {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(127,199,217,0.3), transparent);
    margin: 0 16px;
}

/* ========================================
   MISSION
   ======================================== */

.cs-mission {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(160deg, #0a2f3f 0%, #0c3547 50%, #0e3b4f 100%);
    overflow: hidden;
}

.cs-mission-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.cs-mission-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    overflow: hidden;
}

.cs-mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7FC7D9, #a8e0eb);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.cs-mission-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(127,199,217,0.3);
    box-shadow: 0 24px 60px rgba(0,0,0,0.2), 0 0 40px rgba(127,199,217,0.08);
}

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

.cs-mission-icon {
    width: 68px; height: 68px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
    border-radius: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(127,199,217,0.3);
    transition: all 0.4s ease;
}

.cs-mission-icon svg { width: 32px; height: 32px; color: white; }

.cs-mission-card:hover .cs-mission-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(127,199,217,0.5);
}

.cs-mission-number {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(127,199,217,0.08);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.cs-mission-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.cs-mission-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   PARALLAX DIVIDER
   ======================================== */

.cs-parallax-divider {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cs-parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cs-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,53,71,0.8) 0%, rgba(12,53,71,0.7) 50%, rgba(12,53,71,0.9) 100%);
}

.cs-parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 24px;
    max-width: 700px;
}

.cs-parallax-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cs-parallax-content h2 span {
    background: linear-gradient(135deg, #7FC7D9 0%, #a8e0eb 50%, #7FC7D9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradient 4s ease-in-out infinite;
}

.cs-parallax-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

/* ========================================
   EXPERTISE — LIGHT
   ======================================== */

.cs-expertise {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #f0f9fc 0%, #e6f4f9 50%, #dceef5 100%);
    overflow: hidden;
}

.cs-expertise::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #7FC7D9 30%, #3A9BB5 50%, #7FC7D9 70%, transparent 90%);
    opacity: 0.5;
}

.cs-expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cs-expertise-card {
    position: relative;
    padding: 36px 28px 28px;
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.15);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cs-expertise-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #7FC7D9, #3A9BB5);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.cs-expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(127,199,217,0.15);
    border-color: rgba(127,199,217,0.3);
}

.cs-expertise-card:hover::before { transform: scaleY(1); }

.cs-expertise-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(127,199,217,0.3);
    transition: all 0.4s ease;
}

.cs-expertise-icon svg { width: 28px; height: 28px; color: white; }

.cs-expertise-card:hover .cs-expertise-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 28px rgba(127,199,217,0.5);
}

.cs-expertise-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.cs-expertise-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.65;
    margin: 0 0 16px;
}

.cs-expertise-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(127,199,217,0.12);
    border: 1px solid rgba(127,199,217,0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #3A9BB5;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ========================================
   WHY US
   ======================================== */

.cs-why {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(160deg, #0a2f3f 0%, #0c3547 50%, #0e3b4f 100%);
    overflow: hidden;
}

.cs-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cs-why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.cs-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

.cs-why-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(127,199,217,0.2);
    transform: translateX(6px);
}

.cs-why-check {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(127,199,217,0.3);
}

.cs-why-check svg { width: 18px; height: 18px; color: white; }

.cs-why-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.cs-why-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin: 0;
}

/* Stats Grid */
.cs-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cs-stat-card {
    padding: 36px 24px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}

.cs-stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(127,199,217,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.cs-stat-big {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #7FC7D9;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(127,199,217,0.3);
}

.cs-stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   LE NOSTRE LINEE — LIGHT OVERRIDE
   ======================================== */

.cs-categories-light {
    background: linear-gradient(180deg, #f0f9fc 0%, #e6f4f9 50%, #dceef5 100%) !important;
}

.cs-categories-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #7FC7D9 30%, #3A9BB5 50%, #7FC7D9 70%, transparent 90%);
    opacity: 0.5;
}

.cs-categories-light .categories-badge {
    background: rgba(127,199,217,0.12) !important;
    border-color: rgba(127,199,217,0.25) !important;
    color: #3A9BB5 !important;
}

.cs-categories-light .categories-badge svg {
    color: #3A9BB5 !important;
}

.cs-categories-light .categories-title {
    color: #1F2937 !important;
}

.cs-categories-light .categories-title span {
    background: linear-gradient(135deg, #3A9BB5 0%, #7FC7D9 50%, #3A9BB5 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.cs-categories-light .categories-subtitle {
    color: #6B7280 !important;
}

.cs-categories-light .categories-view-all {
    background: #ffffff !important;
    border-color: rgba(127,199,217,0.2) !important;
    color: #3A9BB5 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
}

.cs-categories-light .categories-view-all:hover {
    border-color: #7FC7D9 !important;
    box-shadow: 0 8px 28px rgba(127,199,217,0.15) !important;
}

.cs-categories-light .categories-view-all svg {
    color: #3A9BB5 !important;
}

/* ========================================
   CTA
   ======================================== */

.cs-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(160deg, #0a2f3f 0%, #0c3547 50%, #0e3b4f 100%);
    overflow: hidden;
}

.cs-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cs-cta-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cs-cta-content h2 span {
    background: linear-gradient(135deg, #7FC7D9, #a8e0eb, #7FC7D9);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradient 4s ease-in-out infinite;
}

.cs-cta-content > p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

.cs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;
}

.cs-btn-primary {
    color: #0a2f3f;
    background: linear-gradient(135deg, #7FC7D9, #a8e0eb);
    box-shadow: 0 6px 24px rgba(127,199,217,0.4);
}

.cs-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cs-btn-primary:hover::before { left: 100%; }

.cs-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(127,199,217,0.55);
    color: #0a2f3f;
}

.cs-btn-primary svg { width: 20px; height: 20px; transition: transform 0.3s; }
.cs-btn-primary:hover svg { transform: translateX(4px); }

.cs-btn-secondary {
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
}

.cs-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    color: #ffffff;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .cs-container { padding: 0 24px; }
    
    .cs-storia-grid,
    .cs-why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cs-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cs-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cs-hero { min-height: 60vh; }
    .cs-hero-content { padding: 100px 20px 60px; }
    .cs-hero-parallax,
    .cs-parallax-bg { background-attachment: scroll; }
    
    .cs-storia,
    .cs-mission,
    .cs-expertise,
    .cs-why,
    .cs-cta { padding: 80px 0; }
    
    .cs-parallax-divider { min-height: 40vh; }
    
    .cs-storia-features {
        flex-direction: column;
    }
    
    .cs-expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .cs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cs-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cs-hero { min-height: 55vh; }
    
    .cs-storia,
    .cs-mission,
    .cs-expertise,
    .cs-why,
    .cs-cta { padding: 60px 0; }
    
    .cs-stat-big { font-size: 32px; }
    
    .cs-stat-card { padding: 24px 16px; }
    
    .cs-mission-card { padding: 28px 24px; }
}




/* ========================================
   STORIA - IMAGE WRAP + SLIDER
   ======================================== */

.cs-storia-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
}

.cs-storia-slider {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.cs-storia-slider .swiper-slide {
    height: 100%;
}

.cs-storia-slider .cs-storia-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cs-storia-image-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(127, 199, 217, 0.3), rgba(127, 199, 217, 0.1));
    border-radius: 20px;
    z-index: -1;
}

/* Pagination bullets */
.cs-storia-pagination {
    bottom: 16px !important;
}

.cs-storia-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.cs-storia-pagination .swiper-pagination-bullet-active {
    background: var(--azzurro, #7FC7D9);
    width: 28px;
    border-radius: 5px;
}

/* Navigation arrows */
.cs-storia-nav {
    color: var(--azzurro, #7FC7D9) !important;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.cs-storia-nav:hover {
    background: var(--azzurro, #7FC7D9);
    color: #fff !important;
}

.cs-storia-nav::after {
    font-size: 16px !important;
    font-weight: 700;
}

/* Stats overlay */
.cs-storia-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 10;
    border-radius: 0 0 20px 20px;
}

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

.cs-stat-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--azzurro, #7FC7D9);
    line-height: 1;
}

.cs-stat-label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.cs-stat-divider {
    width: 1px;
    height: 36px;
    background: #E5E7EB;
}

@media (max-width: 768px) {
    .cs-storia-image-wrap,
    .cs-storia-slider {
        min-height: 320px;
        height: 320px;
    }

    .cs-storia-nav {
        display: none !important;
    }

    .cs-storia-stats {
        gap: 12px;
        padding: 12px 16px;
    }

    .cs-stat-number {
        font-size: 20px;
    }
}