/* Custom Styles for YOB Asset */

:root {
    --orange-primary: #FF6B00;
    --orange-light: #FF8A33;
    --orange-lighter: #FFB366;
    --orange-pale: #FFF5F0;
    --gray-dark: #1C1C1C;
    --gray-medium: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
}


/* Font Configuration */
.font-inter {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hexagon Icons */
.hexagon-icon {
    width: 80px;
    height: 64px;
    background: linear-gradient(135deg, #FFF5F0, #FFE4D6);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hexagon-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Large Hexagon Icons */
.hexagon-icon-large {
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, #FFF5F0, #FFE4D6);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hexagon-icon-large:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Asset Icons (no background) */
.asset-icon {
    font-size: 2.2rem !important;
    color: var(--orange-light) !important;
    margin-bottom: 8px !important;
    transition: all 0.3s ease !important;
    background: none !important;
    clip-path: none !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
}

.hexagon-card:hover .asset-icon {
    transform: scale(1.1);
    color: var(--orange-light);
}

/* Small Hexagon Icons */
.hexagon-icon-small {
    width: 60px;
    height: 48px;
    background: linear-gradient(135deg, #FFF5F0, #FFE4D6);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hexagon-icon-small:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Social Hexagon Icons */
.hexagon-icon-social {
    width: 70px;
    height: 56px;
    background: linear-gradient(135deg, #FFF5F0, #FFE4D6);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hexagon-icon-social:hover {
    background: linear-gradient(135deg, #FFE4D6, #FFD4B8);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-primary);
}

/* Navigation Styles */
#navbar {
    transition: all 0.3s ease;
}

#navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--orange-light), var(--orange-lighter));
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-lighter));
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--orange-lighter), var(--orange-pale));
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) rotate(270deg) scale(1.05);
    }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.animate-scroll {
    animation: scroll 1.5s infinite;
}

/* 3D Card Effect */
.perspective-card {
    perspective: 1000px;
}

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(-5deg);
}

/* Process Cards */
.process-card {
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-card:hover::before {
    opacity: 0.1;
}

/* Asset Cards */
.asset-card {
    transition: all 0.3s ease;
}

.asset-card:hover {
    transform: translateY(-8px);
}

/* Range Slider Custom Style */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--orange-primary) 0%, var(--orange-primary) var(--value, 50%), #d3d3d3 var(--value, 50%), #d3d3d3 100%);
    outline: none;
    transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange-primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.6);
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.6);
}

/* Button Styles */
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

/* Loading Animation */
.loading-dots {
    display: inline-flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-primary);
    animation: loading 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loading {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Gradient Text Animation */
.gradient-text-animate {
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-light), var(--orange-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow:hover {
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
}

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Hover Card Lift */
.card-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-lift:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradient Border */
.gradient-border {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Responsive Typography */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--orange-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if needed */
}

/* Animation Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-1000 { animation-delay: 1000ms; }

/* Hexagon Cards Design - Alveare Style */
.hexagon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 50px 0;
    padding: 30px;
    position: relative;
}

/* Container specifico per gli assets - Due Griglie 1x3 Separate */
.hexagon-container:has(.hexagon-card) {
    height: auto;
    min-height: 1000px;
    align-items: flex-start;
    justify-content: center;
    display: flex !important;
    flex-direction: row !important;
    gap: 0;
    width: 800px;
    max-width: 100%;
    margin: 0 auto 150px auto;
    padding: 40px;
    position: relative;
}

/* Container specifico per le applicazioni - Due Griglie 1x2 Separate */
.hexagon-container:has(.hexagon-card):has(.hexagon-card:nth-child(4)) {
    height: auto;
    min-height: 900px;
    align-items: flex-start;
    justify-content: center;
    display: flex !important;
    flex-direction: row !important;
    gap: 0;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 150px auto;
    padding: 60px 40px;
    position: relative;
}

/* Colonna Sinistra - 1x3 */
.hexagon-container:has(.hexagon-card)::before {
    content: '';
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

/* Colonna Destra - 1x3 con Offset */
.hexagon-container:has(.hexagon-card)::after {
    content: '';
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 60px;
    pointer-events: none;
}

/* Container specifico per i processi */
.hexagon-container:has(.hexagon-process) {
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    padding: 20px !important;
}

/* Asset Cards - Design Alveare Vero (2x3 Grid) - Con SVG Border */
.hexagon-container .hexagon-card {
    width: 360px !important;
    height: 320px !important;
    background: var(--white) !important;
    border: none !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15) !important;
    margin: 0 !important;
    text-decoration: none !important;
    transform: none !important;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
}

/* Esagoni per Applicazioni - Dimensioni originali */
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card {
    width: 450px !important;
    height: 400px !important;
    background: var(--white) !important;
    border: none !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15) !important;
    margin: 0 !important;
    text-decoration: none !important;
    transform: none !important;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
}

/* Bordo SVG per esagoni applications desktop - Selettore specifico */
.applications-hexagon::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 450 400'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='112.5,0 337.5,0 450,200 337.5,400 112.5,400 0,200' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    z-index: 1;
}

/* Bordo SVG per esagoni assets desktop - Selettore specifico */
.assets-hexagon::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 320'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='90,0 270,0 360,160 270,320 90,320 0,160' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    z-index: 1;
}


/* Griglia Sinistra 1x3 - Esagoni 1,3,5 con distanza ridotta del 50% */
.hexagon-container .hexagon-card:nth-child(1) { 
    position: absolute;
    left: 0;
    top: 0;
}
.hexagon-container .hexagon-card:nth-child(3) { 
    position: absolute;
    left: 0;
    top: 40px; /* Ridotto del 50% da 80px a 40px */
}
.hexagon-container .hexagon-card:nth-child(5) { 
    position: absolute;
    left: 0;
    top: 80px; /* Ridotto del 50% da 160px a 80px */
}

/* Griglia Destra 1x3 - Esagoni 2,4,6 con traslazione di 1/2 altezza e distanza ridotta del 50% */
.hexagon-container .hexagon-card:nth-child(2) { 
    position: absolute;
    right: 0;
    top: 160px; /* 1/2 dell'altezza dell'esagono (320px/2 = 160px) */
}
.hexagon-container .hexagon-card:nth-child(4) { 
    position: absolute;
    right: 0;
    top: 240px; /* 160px + 80px (distanza aumentata) */
}
.hexagon-container .hexagon-card:nth-child(6) { 
    position: absolute;
    right: 0;
    top: 320px; /* 240px + 80px */
}

/* Griglia 1x2 per Applicazioni - Prima colonna (1,3) */
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card:nth-child(1) { 
    position: absolute;
    left: 0;
    top: 0;
}
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card:nth-child(3) { 
    position: absolute;
    left: 0;
    top: 40px; /* Distanza ridotta */
}

/* Griglia 1x2 per Applicazioni - Seconda colonna sfasata (2,4) */
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card:nth-child(2) { 
    position: absolute;
    right: 0;
    top: 200px; /* 1/2 dell'altezza dell'esagono (400px/2 = 200px) */
}
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card:nth-child(4) { 
    position: absolute;
    right: 0;
    top: 240px; /* 200px + 40px */
}

/* Regola generica rimossa per evitare conflitti con i bordi SVG */

.hexagon-card:hover {
    transform: rotate(5deg) scale(1.08);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.3);
    border-color: var(--orange-light);
}

.hexagon-card:hover::before {
    opacity: 1;
}

.hexagon-container .hexagon-content {
    text-align: center !important;
    padding: 25px 15px !important;
    z-index: 10 !important;
    max-width: 180px !important;
}

/* Contenuto esagoni per applicazioni - più spazio */
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-content {
    text-align: center !important;
    padding: 40px 25px !important;
    z-index: 10 !important;
    max-width: 220px !important;
}

.hexagon-container .hexagon-icon {
    font-size: 2.2rem !important;
    color: var(--orange-light) !important;
    margin-bottom: 8px !important;
    transition: all 0.3s ease !important;
}

.hexagon-card:hover .hexagon-icon {
    transform: scale(1.1);
    color: var(--orange-light);
}

.hexagon-container .hexagon-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--gray-dark) !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
}

/* Titoli più grandi per esagoni applicazioni */
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--gray-dark) !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.hexagon-container .hexagon-description {
    font-size: 0.85rem !important;
    color: var(--gray-medium) !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
}

/* Descrizioni più grandi per esagoni applicazioni */
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-description {
    font-size: 0.95rem !important;
    color: var(--gray-medium) !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
}

.hexagon-container .hexagon-details {
    font-size: 0.7rem !important;
    color: var(--gray-medium) !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    font-style: italic !important;
}

.hexagon-container .hexagon-cta {
    background: var(--orange-light) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.hexagon-container .hexagon-cta:hover {
    background: var(--orange-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.3) !important;
    color: var(--white) !important;
}

/* Nuovo stile per hexagon-outcome - testo arancione senza bottone */
.hexagon-container .hexagon-outcome {
    color: var(--orange-light) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 8px !important;
    font-style: italic !important;
}

/* Stile per hexagon-outcome negli esagoni applicazioni */
.hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-outcome {
    color: var(--orange-light) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 12px !important;
    font-style: italic !important;
}

/* Team Member Hexagons */
.team-hexagon {
    width: 160px !important;
    height: 160px !important;
    position: relative !important;
    margin: 0 auto !important;
    border: 4px solid #FF8A33 !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    background: #ffffff !important;
    overflow: hidden !important;
    display: block !important;
}

.team-hexagon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    display: block !important;
}

.team-hexagon:hover {
    transform: scale(1.05) !important;
    border-color: #FF6B00 !important;
}

/* Wrapper per immagini esagonali */
.hexagon-image-wrapper {
    display: inline-block;
    padding: 4px;
    background: #FF8A33;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
}

.hexagon-image-wrapper:hover {
    transform: scale(1.05);
}

/* Large Hexagon Images */
.hexagon-image {
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    display: block !important;
}

.hexagon-image-wrapper:hover .hexagon-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}

/* Wrapper per immagini esagonali large */
.hexagon-image-large-wrapper {
    display: inline-block;
    padding: 4px;
    background: #FF8A33;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
}

.hexagon-image-large-wrapper:hover {
    transform: scale(1.05);
}

/* Extra Large Hexagon Images - Square Proportions */
.hexagon-image-large {
    width: 480px !important;
    height: 400px !important;
    object-fit: cover !important;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18) !important;
    position: relative !important;
    display: block !important;
}

.hexagon-image-large-wrapper:hover .hexagon-image-large {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25) !important;
}

/* Wrapper per immagini esagonali medium */
.hexagon-image-medium-wrapper {
    display: inline-block;
    padding: 6px;
    background: #FF8A33;
    border: 3px solid #FF8A33;
    border-radius: 20px;
}

/* Medium Hexagon Images */
.hexagon-image-medium {
    width: 100% !important;
    height: 380px !important;
    object-fit: cover !important;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
    position: relative !important;
    display: block !important;
}

.hexagon-image-medium:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18) !important;
}

/* Process Steps - Design Alveare Vero (Ruotati 90°) */
.hexagon-container .hexagon-process {
    width: 200px !important;
    height: 230px !important;
    background: var(--white) !important;
    border: none !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15) !important;
    margin: 5px !important;
    transform: none !important;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) !important;
    flex-shrink: 0 !important;
}

.hexagon-container .hexagon-process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 230'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='100,0 200,57.5 200,172.5 100,230 0,172.5 0,57.5' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}


.hexagon-process::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--orange-pale);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hexagon-process:hover {
    transform: rotate(-3deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.3);
    border-color: var(--orange-light);
}

.hexagon-process:hover::before {
    opacity: 1;
}

.hexagon-container .process-number {
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    width: 30px !important;
    height: 30px !important;
    background: var(--orange-pale) !important;
    color: var(--gray-dark) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    z-index: 30 !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid var(--white) !important;
}

.hexagon-container .process-icon {
    font-size: 2rem !important;
    color: var(--orange-light) !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
}

.hexagon-process:hover .process-icon {
    transform: scale(1.15);
    color: var(--orange-light);
}

.hexagon-container .process-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--gray-dark) !important;
    margin-bottom: 8px !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.hexagon-container .process-description {
    font-size: 0.85rem !important;
    color: var(--gray-medium) !important;
    text-align: center !important;
    line-height: 1.3 !important;
    padding: 0 10px !important;
}

/* Responsive Design */
@media (max-width: 640px) {
    /* Hexagon Images - Mobile Responsive */
    .hexagon-image {
        width: 100% !important;
        max-width: 350px !important;
        height: 300px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali mobile */
    .hexagon-image::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    .hexagon-image-large {
        width: 100% !important;
        max-width: 350px !important;
        height: 300px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali large mobile */
    .hexagon-image-large::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image-large::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    .hexagon-image-medium {
        width: 100% !important;
        max-width: 350px !important;
        height: 280px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali medium mobile */
    .hexagon-image-medium::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image-medium::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    /* Layout Alveare - Mobile: 1 colonna verticale */
    .hexagon-container:has(.hexagon-card) {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 20px !important;
        margin: 0 auto 50px auto !important;
    }
    
    /* Container applicazioni su mobile */
    .hexagon-container:has(.hexagon-card):has(.hexagon-card:nth-child(4)) {
        min-height: auto !important;
        padding: 30px 20px !important;
        margin: 0 auto 80px auto !important;
    }
    
    /* Reset posizionamento assoluto su mobile */
    .hexagon-container .hexagon-card:nth-child(1),
    .hexagon-container .hexagon-card:nth-child(2),
    .hexagon-container .hexagon-card:nth-child(3),
    .hexagon-container .hexagon-card:nth-child(4),
    .hexagon-container .hexagon-card:nth-child(5),
    .hexagon-container .hexagon-card:nth-child(6) {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    /* Reset anche per la griglia 1x2 delle applicazioni */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card:nth-child(1),
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card:nth-child(2),
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card:nth-child(3),
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card:nth-child(4) {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    /* Hexagon Images - Tablet Responsive */
    .hexagon-image {
        width: 100% !important;
        max-width: 400px !important;
        height: 350px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali tablet */
    .hexagon-image::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    .hexagon-image-large {
        width: 100% !important;
        max-width: 400px !important;
        height: 350px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali large tablet */
    .hexagon-image-large::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image-large::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    .hexagon-image-medium {
        width: 100% !important;
        max-width: 400px !important;
        height: 320px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali medium tablet */
    .hexagon-image-medium::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image-medium::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    .hexagon-container .hexagon-card {
        width: 350px !important;
        height: 310px !important;
    }
    
    /* Bordo SVG per esagoni assets su tablet - selettore specifico */
    .assets-hexagon::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
    }
    
    /* Esagoni applicazioni su tablet */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card {
        width: 350px !important;
        height: 310px !important;
    }
    
    /* Bordo SVG per esagoni applications su tablet - selettore specifico */
    .applications-hexagon::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
    }
    
    /* Contenuto esagoni applicazioni su tablet */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-content {
        padding: 30px 20px !important;
        max-width: 300px !important;
    }
    
    /* Titoli esagoni applicazioni su tablet */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-title {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }
    
    /* Descrizioni esagoni applicazioni su tablet */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-description {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }
    
    /* Bordo SVG per esagoni applicazioni su tablet - corretto per 350x310 */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center;
        background-size: 100% 100%;
        z-index: 1;
    }
    
    .hexagon-process {
        width: 160px;
        height: 180px;
    }
    
    .hexagon-icon {
        font-size: 2.2rem;
    }
    
    .process-icon {
        font-size: 1.6rem;
    }
    
    .hexagon-title {
        font-size: 1rem;
    }
    
    .process-title {
        font-size: 1rem;
    }
    
    .process-number {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.9rem !important;
        top: -13px !important;
        right: -13px !important;
    }
    
    /* Container processi su mobile */
    .hexagon-container:has(.hexagon-process) {
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    /* Hexagon Images - Small Mobile Responsive */
    .hexagon-image {
        width: 100% !important;
        max-width: 300px !important;
        height: 250px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali small mobile */
    .hexagon-image::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    .hexagon-image-large {
        width: 100% !important;
        max-width: 300px !important;
        height: 250px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali large small mobile */
    .hexagon-image-large::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image-large::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    .hexagon-image-medium {
        width: 100% !important;
        max-width: 300px !important;
        height: 230px !important;
        object-fit: cover !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Bordo per immagini esagonali medium small mobile */
    .hexagon-image-medium::before {
        inset: -4px !important;
        background: var(--orange-light) !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: -1 !important;
    }
    
    .hexagon-image-medium::after {
        inset: -1px !important;
        background: white !important;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
        z-index: 0 !important;
    }
    
    .hexagon-container:has(.hexagon-card) {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px !important;
    }
    
    .hexagon-container .hexagon-card {
        width: 350px !important;
        height: 310px !important;
    }
    
    /* Bordo SVG per esagoni assets home su mobile - FORZATO con !important */
    .hexagon-container .hexagon-card::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
        z-index: 1 !important;
    }
    
    /* Testi esagoni home su mobile */
    .hexagon-container .hexagon-title {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    
    .hexagon-container .hexagon-description {
        font-size: 0.75rem !important;
        margin-bottom: 4px !important;
    }
    
    .hexagon-container .hexagon-cta {
        font-size: 0.8rem !important;
        margin-top: 4px !important;
    }
    
    /* Esagoni applicazioni su mobile - dimensioni leggermente più grandi */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card {
        width: 350px !important;
        height: 310px !important;
    }
    
    /* Bordo SVG per esagoni applicazioni su mobile - FORZATO con !important */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-card::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
        z-index: 1 !important;
    }
    
    /* BORDI MOBILE SPECIFICI - Selettori specifici come mission/vision e types */
    /* Per esagoni assets su home */
    .assets-hexagon::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
    }
    
    /* Per esagoni applications su real-estate */
    .applications-hexagon::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
    }
    
    /* Contenuto esagoni applicazioni su mobile */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-content {
        padding: 30px 25px !important;
        max-width: 300px !important;
    }
    
    /* Titoli esagoni applicazioni su mobile */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-title {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
        line-height: 1.2 !important;
    }
    
    /* Descrizioni esagoni applicazioni su mobile */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-description {
        font-size: 0.75rem !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }
    
    /* Outcome esagoni applicazioni su mobile */
    .hexagon-container:has(.hexagon-card:nth-child(4)) .hexagon-outcome {
        font-size: 0.8rem !important;
        margin-top: 4px !important;
    }
    
    .hexagon-process {
        width: 140px;
        height: 156px;
    }
}

/* Mission & Vision Hexagons - Mobile Responsive */
@media (max-width: 640px) {
    .mission-vision-container {
        max-width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin: 0 auto 50px auto !important;
    }
    
    .mission-vision-container .mission-hexagon,
    .mission-vision-container .vision-hexagon {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 350px !important;
        height: 310px !important;
        margin: 0 auto !important;
    }
    
    /* Bordo SVG per mission e vision su mobile */
    .mission-hexagon::after,
    .vision-hexagon::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
    }
    
    /* Testi mission e vision su mobile */
    .mission-hexagon h3,
    .vision-hexagon h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    
    .mission-hexagon p,
    .vision-hexagon p {
        font-size: 0.75rem !important;
        margin-bottom: 4px !important;
    }
}

/* Stats Section Hexagons - COMPLETELY NEW CLASSES */
.stats-hexagons {
    display: flex !important;
    flex-direction: row !important;
    gap: 50px !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.hexagon-container .hexagon-process.stats-hex {
    width: 280px !important;
    height: 240px !important;
    background: var(--orange-pale) !important;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 30px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15) !important;
    border: none !important;
}

.stats-hex::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    background: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 280 240\'%3E%3Cpolygon points=\'70,0 210,0 280,120 210,240 70,240 0,120\' fill=\'none\' stroke=\'%23FF8A33\' stroke-width=\'4\'/%3E%3C/svg%3E') no-repeat center !important;
    background-size: 100% 100% !important;
    z-index: 1 !important;
}

.stats-number {
    font-size: 4rem !important;
    font-weight: 900 !important;
    color: var(--gray-dark) !important;
    margin-bottom: 24px !important;
    line-height: 1 !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    display: block !important;
    z-index: 2 !important;
    text-align: center !important;
    font-family: 'Inter', sans-serif !important;
}

.stats-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--gray-dark) !important;
    margin-bottom: 16px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    z-index: 2 !important;
    font-family: 'Inter', sans-serif !important;
}

.stats-desc {
    font-size: 1rem !important;
    color: var(--gray-medium) !important;
    line-height: 1.4 !important;
    text-align: center !important;
    z-index: 2 !important;
    font-family: 'Inter', sans-serif !important;
}

.stats-hex:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.25) !important;
}

/* Mobile responsive for stats hexagons */
@media (max-width: 768px) {
    .stats-hexagons {
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
    }
    
    .stats-hex {
        width: 240px !important;
        height: 200px !important;
        transform: none !important;
    }
    
    .stats-number {
        font-size: 2.5rem !important;
        transform: none !important;
    }
    
    .stats-title {
        font-size: 1.1rem !important;
        transform: none !important;
    }
    
    .stats-desc {
        font-size: 0.85rem !important;
        transform: none !important;
    }
}

/* Types Section Hexagons - Reusable for all asset pages */
.types-hexagons-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    justify-content: center !important;
    align-items: flex-start !important;
    max-width: 1000px !important;
    height: 600px !important;
    margin: 64px auto 0 auto !important;
    position: relative !important;
}

/* Forza le dimensioni corrette per desktop */
.types-hexagons-container .types-hexagon {
    width: 380px !important;
    height: 340px !important;
    background: var(--white) !important;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 35px 20px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15) !important;
    overflow: hidden !important;
}

.types-hexagon {
    width: 380px !important;
    height: 340px !important;
    background: var(--white) !important;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 35px 20px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15) !important;
    overflow: hidden !important;
}

.types-hexagon::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 380 340'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='95,0 285,0 380,170 285,340 95,340 0,170' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    z-index: 1;
}



.types-hexagon-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--gray-dark) !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    z-index: 2 !important;
    font-family: 'Inter', sans-serif !important;
}

.types-hexagon-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 2 !important;
}

.types-hexagon-list li {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 10px !important;
    font-size: 0.95rem !important;
    color: var(--gray-medium) !important;
    text-align: left !important;
    font-family: 'Inter', sans-serif !important;
}

.types-hexagon-list li i {
    color: var(--orange-light) !important;
    margin-right: 10px !important;
    margin-top: 2px !important;
    font-size: 0.8rem !important;
}

.types-hexagon:nth-child(2) {
    transform: translateY(170px) !important;
}

.types-hexagon:hover {
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.25) !important;
}

.types-hexagon:nth-child(2):hover {
    transform: translateY(170px) !important;
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.25) !important;
}

/* Responsive per tablet */
@media screen and (max-width: 768px) and (min-width: 481px) {
    .types-hexagons-container {
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
        align-items: center !important;
        height: auto !important;
        padding: 0 20px !important;
    }
    
    .types-hexagon {
        width: 320px !important;
        height: 280px !important;
        padding: 25px 20px !important;
        min-width: 320px !important;
        min-height: 280px !important;
        max-width: 320px !important;
        max-height: 280px !important;
    }
    
    .types-hexagon::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 280'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='80,0 240,0 320,140 240,280 80,280 0,140' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
    }
    
    .types-hexagon:nth-child(2) {
        transform: none !important;
    }
    
    .types-hexagon:nth-child(2):hover {
        transform: translateY(-5px) !important;
    }
    
    .types-hexagon-title {
        font-size: 1.2rem !important;
        margin-bottom: 16px !important;
    }
    
    .types-hexagon-list li {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }
}

/* REGOLA FORZATA PER TYPES HEXAGON - DEVE ESSERE L'ULTIMA - SOLO PER DESKTOP */
@media screen and (min-width: 769px) {
    section .types-hexagons-container .types-hexagon {
        width: 380px !important;
        height: 340px !important;
        min-width: 380px !important;
        min-height: 340px !important;
        max-width: 380px !important;
        max-height: 340px !important;
        box-sizing: border-box !important;
    }
}

/* Regole responsive per telefoni piccoli */
@media screen and (max-width: 480px) {
    .types-hexagons-container {
        flex-direction: column !important;
        gap: 15px !important;
        max-width: 100% !important;
        align-items: center !important;
        height: auto !important;
        padding: 0 10px !important;
    }
    
    .types-hexagon {
        width: 350px !important;
        height: 310px !important;
        padding: 30px 25px !important;
        min-width: 350px !important;
        min-height: 310px !important;
        max-width: 350px !important;
        max-height: 310px !important;
    }
    
    .types-hexagon::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 310'%3E%3Cdefs%3E%3C/defs%3E%3Cpolygon points='87.5,0 262.5,0 350,155 262.5,310 87.5,310 0,155' fill='none' stroke='%23FF8A33' stroke-width='6'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: 100% 100% !important;
    }
    
    .types-hexagon:nth-child(2) {
        transform: none !important;
    }
    
    .types-hexagon:nth-child(2):hover {
        transform: translateY(-3px) !important;
    }
    
    .types-hexagon-title {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
    }
    
    .types-hexagon-list li {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .types-hexagon-list li i {
        font-size: 0.7rem !important;
        margin-right: 8px !important;
    }
}
