/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    height: -webkit-fill-available;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #e8e8e8;
    line-height: 1.5;
    min-height: 100%;
    min-height: -webkit-fill-available;
}

/* HEADER */
.header {
    background: #1a1a1a;
    position: relative;
    z-index: 10000;
}

.header-shape {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    clip-path: polygon(0 0, 100% 0, 100% 65%, 96% 100%, 0 100%);
    padding-bottom: 20px;
}

/* Rimuovi clip-path su mobile per permettere al menu di funzionare */
@media (max-width: 768px) {
    .header-shape {
        clip-path: none;
    }
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.logo-slogan {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    font-weight: 400;
}

.logo:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-globe {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: white;
}

.social {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: transform 0.3s;
}

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

.facebook { background: #3b5998; }
.linkedin { background: #0077b5; }
.twitter { background: #1da1f2; }
.youtube { background: #ff0000; }
.rss { background: #ff9800; }

/* HERO */
.hero {
    background: linear-gradient(135deg, #5ba3d0 0%, #3d8fc7 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.hero-visual {
    font-size: 120px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.warehouse {
    position: relative;
    width: 300px;
    height: 200px;
}

.forklift {
    font-size: 100px;
    position: absolute;
    left: 10%;
    bottom: 10px;
}

.shelves {
    font-size: 80px;
    position: absolute;
    right: 15%;
    bottom: 20px;
}

.product-visual {
    font-size: 120px;
    text-align: center;
}

.c64-icon {
    position: relative;
    display: inline-block;
}

.c64-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.c64-retro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #8B7355 0%, #6B5344 100%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid #5a4a3a;
    margin: 0 auto;
}

.c64-screen {
    font-size: 48px;
    font-weight: bold;
    color: #40E0D0;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(64, 224, 208, 0.8);
    letter-spacing: 3px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero-right {
    position: relative;
    min-height: 250px;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
    pointer-events: none;
    text-align: right;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.hero-title {
    font-size: 64px;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 36px;
    color: #ffd54f;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-license {
    color: #ff5252;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-download {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 15px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* MAIN */
.main {
    background: white;
    padding: 30px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 25px;
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.widget-title {
    background: #2d2d2d;
    color: white;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: bold;
}

.widget-body {
    padding: 15px;
}

.widget-body p {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-box {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-avatar {
    font-size: 36px;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 10px;
    color: #666;
    font-weight: bold;
    margin-bottom: 3px;
}

.contact-phone {
    font-size: 14px;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-hours {
    font-size: 10px;
    color: #666;
    line-height: 1.5;
}

.widget-icon {
    text-align: center;
    font-size: 50px;
    margin: 15px 0;
}

.widget-link {
    display: block;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    margin-top: 10px;
}

.widget-link:hover {
    text-decoration: underline;
}

.w3c-badge {
    text-align: center;
    margin-top: 15px;
}

.badge-html5 {
    display: inline-block;
    background: #005a9c;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

/* CONTENT */
.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-title {
    font-size: 18px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

/* PRODUCTS */
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.product:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    padding: 5px 40px;
    font-size: 10px;
    font-weight: bold;
    color: white;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-ribbon.gratuito {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.product-ribbon.premium {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.product-ribbon.nuovo {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.product-ribbon.custom {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.product-layout {
    display: flex;
    gap: 15px;
}

.product-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.product-content {
    flex: 1;
}

.product-name {
    font-size: 13px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.product-note {
    font-size: 10px;
    color: #999;
    font-style: italic;
    margin-bottom: 12px;
}

.product-links {
    display: flex;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.product-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
}

.product-links a:hover {
    text-decoration: underline;
}

/* CLIENTS */
.clients {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.client {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.client:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.client-logo {
    font-size: 40px;
    margin-bottom: 12px;
}

.client-name {
    font-size: 13px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 10px;
}

.client-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.client-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
}

.client-link:hover {
    text-decoration: underline;
}

.clients-more {
    text-align: right;
    margin-top: 15px;
}

.clients-more a {
    color: #0066cc;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

.clients-more a:hover {
    text-decoration: underline;
}

/* STORY SECTION */
.story-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.story-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-left: 4px solid #0066cc;
    border-radius: 6px;
}

.story-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.story-content strong {
    color: #2d2d2d;
    font-weight: bold;
}

.story-content em {
    color: #0066cc;
    font-style: italic;
}

.story-cta {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
}

.story-cta strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 30px 20px;
    border-top: 4px solid #ff9800;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-copyright {
    font-size: 11px;
    color: #888;
    margin-bottom: 15px;
}

.footer-info {
    font-size: 11px;
    color: #bbb;
    line-height: 1.9;
}

.footer-info strong {
    color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .story-content {
        padding: 20px;
    }

    .story-intro {
        font-size: 13px;
        padding: 15px;
    }

    .story-content p {
        font-size: 12px;
    }

    .story-cta {
        padding: 15px;
        font-size: 12px;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .clients {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100000;
    }
    
    .logo-image {
        height: 90px;
    }

    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;
        min-height: 100vh;
        background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 99999;
        overflow-y: auto;
    }

    .header-right.active {
        right: 0;
    }
    
    /* Overlay scuro quando il menu è aperto */
    .header-right::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }
    
    .header-right.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social {
        justify-content: center;
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 30px 20px 80px;
        gap: 30px;
    }

    .hero-left {
        order: 2;
        min-height: 150px;
    }

    .hero-visual {
        font-size: 80px;
    }

    .hero-right {
        order: 1;
        min-height: 200px;
    }

    .hero-slide {
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-controls {
        bottom: 20px;
    }

    .hero-prev,
    .hero-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .widget-body p {
        font-size: 12px;
    }

    .contact-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-title {
        font-size: 16px;
    }

    .product {
        padding: 15px;
    }

    .product-icon {
        font-size: 50px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-desc {
        font-size: 12px;
    }

    .clients {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client {
        padding: 15px 10px;
    }

    .client-logo {
        font-size: 35px;
    }

    .client-name {
        font-size: 12px;
    }

    .client-desc {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 80px;
    }

    .logo-globe {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .logo-text {
        font-size: 22px;
    }

    .hero-content {
        padding: 20px 15px 70px;
    }

    .hero-visual {
        font-size: 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .btn-download {
        padding: 12px 35px;
        font-size: 16px;
    }

    .hero-controls {
        bottom: 15px;
        gap: 15px;
    }

    .hero-prev,
    .hero-next {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .btn-download {
        padding: 12px 35px;
        font-size: 16px;
    }

    .warehouse {
        width: 200px;
        height: 120px;
    }

    .forklift {
        font-size: 50px;
    }

    .shelves {
        font-size: 45px;
    }

    .hero-content {
        padding: 20px 15px 50px;
    }

    .main {
        padding: 20px 0;
    }

    .container {
        padding: 0 15px;
    }

    .sidebar {
        gap: 15px;
    }

    .widget-title {
        font-size: 12px;
        padding: 10px 12px;
    }

    .widget-body {
        padding: 12px;
    }

    .product-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .product-icon {
        font-size: 60px;
    }

    .product-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .clients {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .client {
        padding: 20px 15px;
    }

    .client-logo {
        font-size: 45px;
    }

    .client-name {
        font-size: 13px;
    }

    .client-desc {
        font-size: 11px;
    }

    .footer {
        padding: 20px 15px;
    }

    .footer-info {
        font-size: 10px;
        line-height: 1.8;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 18px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn-download {
        padding: 10px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 14px;
    }

    .product-name {
        font-size: 13px;
    }
}


/* ========================================
   PAGINA AZIENDA
   ======================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 56px;
    color: white;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 20px;
    color: #ffd54f;
    font-weight: 500;
}

/* Company Container */
.company-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.company-section {
    margin-bottom: 60px;
}

.company-heading {
    font-size: 32px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.company-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 2px;
}

.company-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0066cc 0%, #5ba3d0 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    z-index: 2;
}

.timeline-icon {
    font-size: 28px;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0066cc;
}

.timeline-content h3 {
    font-size: 22px;
    color: #2d2d2d;
    margin-bottom: 10px;
    font-weight: bold;
}

.timeline-year {
    font-size: 14px;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content strong {
    color: #2d2d2d;
    font-weight: bold;
}

.timeline-content em {
    color: #0066cc;
    font-style: italic;
}

.highlight-text {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    margin-top: 20px;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 50px 30px;
    border-radius: 12px;
    margin-top: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 18px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Company CTA */
.company-cta {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.company-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
}

.company-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #0066cc;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0066cc;
}

/* Responsive - Pagina Azienda */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .company-heading {
        font-size: 26px;
    }

    .lead-text {
        font-size: 16px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .timeline-icon {
        font-size: 24px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
    }

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

    .company-cta {
        padding: 40px 25px;
    }

    .company-cta h2 {
        font-size: 26px;
    }

    .company-cta p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 15px 40px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .company-container {
        padding: 30px 15px;
    }

    .company-heading {
        font-size: 22px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .timeline-icon {
        font-size: 20px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        font-size: 40px;
    }
}


/* ========================================
   PAGINA NETWORK
   ======================================== */

.network-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.network-intro {
    margin-bottom: 60px;
}

.network-heading {
    font-size: 32px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.network-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 2px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Network Sites Grid */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.network-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.network-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.network-card.featured {
    border-color: #ffd54f;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-card.featured .card-badge {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-tagline {
    font-size: 14px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.card-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f7fa;
    border-radius: 8px;
}

.card-stats .stat {
    font-size: 12px;
    color: #555;
}

.card-stats strong {
    color: #2d2d2d;
    font-weight: bold;
}

.card-link {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

.card-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Philosophy Section */
.network-philosophy {
    margin: 80px 0;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: 12px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.philosophy-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.philosophy-card h3 {
    font-size: 20px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Network Stats */
.network-stats-section {
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-box {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: #0066cc;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Network CTA */
.network-cta {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.network-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
}

.network-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive - Network */
@media (max-width: 900px) {
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .network-heading {
        font-size: 26px;
    }

    .intro-content p {
        font-size: 15px;
    }

    .card-icon {
        font-size: 50px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 13px;
    }

    .philosophy-icon {
        font-size: 40px;
    }

    .philosophy-card h3 {
        font-size: 18px;
    }

    .stat-number {
        font-size: 40px;
    }

    .network-cta h2 {
        font-size: 26px;
    }

    .network-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .network-container {
        padding: 30px 15px;
    }

    .network-heading {
        font-size: 22px;
    }

    .sites-grid {
        gap: 20px;
    }

    .network-card {
        padding: 25px 20px;
    }

    .card-badge {
        top: 15px;
        right: 15px;
        font-size: 10px;
        padding: 5px 12px;
    }

    .card-icon {
        font-size: 45px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-stats {
        padding: 12px;
    }

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

    .stat-box {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .network-philosophy {
        padding: 40px 20px;
    }

    .philosophy-card {
        padding: 25px 20px;
    }

    .network-cta {
        padding: 40px 25px;
    }

    .network-cta h2 {
        font-size: 22px;
    }

    .network-cta p {
        font-size: 15px;
    }
}


/* ========================================
   PAGINA CONTATTI
   ======================================== */

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-intro {
    margin-bottom: 60px;
    text-align: center;
}

.contact-heading {
    font-size: 32px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 2px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.cta-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

.cta-box strong {
    color: #2d2d2d;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 24px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 25px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: #0066cc;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 15px;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.info-content a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.social-links {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 25px;
    border-radius: 12px;
}

.social-links h4 {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    color: white;
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Extra */
.contact-extra {
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Responsive - Contatti */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .intro-text p {
        font-size: 15px;
    }

    .cta-box {
        padding: 20px;
        font-size: 14px;
    }

    .info-card {
        padding: 20px;
    }

    .benefit-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 30px 15px;
    }

    .contact-heading {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .btn-submit {
        padding: 14px 25px;
        font-size: 15px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .info-icon {
        font-size: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .contact-extra {
        padding: 40px 20px;
    }
}


/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    color: white;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}


/* ========================================
   PRODUCT LANDING PAGE
   ======================================== */

/* Product Hero */
.product-hero {
    background: linear-gradient(135deg, #5ba3d0 0%, #3d8fc7 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.product-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.product-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.product-hero-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.product-hero-title {
    font-size: 64px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.product-hero-subtitle {
    font-size: 32px;
    color: #ffd54f;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.product-hero-description {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-primary-large {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.6);
}

.btn-secondary-large {
    background: white;
    color: #0066cc;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background: transparent;
    color: white;
}

/* Product Container */
.product-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-heading {
    font-size: 36px;
    color: #2d2d2d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 2px;
}

/* Product Intro */
.product-intro {
    margin-bottom: 80px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
}

.intro-text strong {
    color: #0066cc;
    font-weight: bold;
}

/* Features Grid */
.product-features {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Benefits */
.product-benefits {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 80px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-check {
    width: 40px;
    height: 40px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 18px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Product CTA */
.product-cta {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.product-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.product-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    font-size: 14px;
    margin-top: 25px;
    opacity: 0.9;
}

/* Responsive - Product Landing */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 60px 20px;
    }

    .product-hero-title {
        font-size: 42px;
    }

    .product-hero-subtitle {
        font-size: 24px;
    }

    .product-hero-description {
        font-size: 16px;
    }

    .product-hero-icon {
        font-size: 60px;
    }

    .section-heading {
        font-size: 28px;
    }

    .intro-text {
        font-size: 16px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        font-size: 48px;
    }

    .feature-title {
        font-size: 20px;
    }

    .product-benefits {
        padding: 40px 25px;
    }

    .product-cta {
        padding: 40px 25px;
    }

    .product-cta h2 {
        font-size: 28px;
    }

    .product-hero-buttons {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 40px 15px;
    }

    .product-hero-title {
        font-size: 32px;
    }

    .product-hero-subtitle {
        font-size: 20px;
    }

    .product-hero-description {
        font-size: 15px;
    }

    .product-container {
        padding: 40px 15px;
    }

    .section-heading {
        font-size: 24px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 42px;
    }

    .benefit-check {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .benefit-content h4 {
        font-size: 16px;
    }

    .benefit-content p {
        font-size: 14px;
    }

    .product-cta h2 {
        font-size: 24px;
    }

    .product-cta p {
        font-size: 16px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        padding: 15px 30px;
        font-size: 16px;
    }
}


/* ========================================
   NETSHACKER SPECIFIC STYLES
   ======================================== */

/* Terminal Examples */
.gameplay-examples {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.terminal-example {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.terminal-header {
    background: #2d2d2d;
    color: #40E0D0;
    padding: 12px 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 2px solid #40E0D0;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: #40E0D0;
    background: #0a0a0a;
}

.terminal-body code {
    display: block;
    color: #40E0D0;
    text-shadow: 0 0 5px rgba(64, 224, 208, 0.5);
}

/* Review Boxes */
.review-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    border-left: 4px solid #4caf50;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-size: 14px;
    color: #0066cc;
    font-weight: bold;
    text-align: right;
}

/* Responsive - NetShacker */
@media (max-width: 768px) {
    .terminal-header {
        font-size: 12px;
        padding: 10px 15px;
    }

    .terminal-body {
        padding: 15px;
        font-size: 11px;
    }

    .review-box {
        padding: 20px;
    }

    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .terminal-body {
        padding: 12px;
        font-size: 10px;
    }

    .review-box {
        padding: 15px;
    }

    .review-text {
        font-size: 13px;
    }
}


/* ========================================
   RECENSIONI PAGE
   ======================================== */

.reviews-section {
    margin: 60px 0;
}

.review-article {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0066cc;
    transition: all 0.3s;
}

.review-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-article.featured {
    border-left-width: 6px;
    border-left-color: #ff9800;
}

.review-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.review-source-logo {
    font-size: 48px;
    flex-shrink: 0;
}

.review-source-info {
    flex: 1;
}

.review-source-name {
    font-size: 24px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 8px;
}

.review-source-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

.review-date {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.review-content {
    padding: 10px 0;
}

.review-title {
    font-size: 22px;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 20px;
}

.review-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 20px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-left: 4px solid #0066cc;
    border-radius: 6px;
    position: relative;
}

.review-quote::before {
    content: '"';
    font-size: 48px;
    color: #0066cc;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: Georgia, serif;
}

.review-features {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 20px 0;
    padding: 15px 20px;
    background: #fff9e6;
    border-left: 4px solid #ff9800;
    border-radius: 6px;
}

.review-features strong {
    color: #2d2d2d;
}

.review-conclusion {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 20px 0;
    padding: 15px 20px;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 6px;
}

.review-conclusion strong {
    color: #2d2d2d;
}

.review-link {
    display: inline-block;
    margin-top: 20px;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s;
}

.review-link:hover {
    color: #0052a3;
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: 12px;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 48px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Responsive - Recensioni */
@media (max-width: 900px) {
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .review-article {
        padding: 25px 20px;
    }

    .review-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .review-source-logo {
        font-size: 40px;
    }

    .review-source-name {
        font-size: 20px;
    }

    .review-title {
        font-size: 20px;
    }

    .review-quote {
        font-size: 15px;
        padding: 15px 20px;
    }

    .stat-icon {
        font-size: 48px;
    }

    .stat-value {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .review-article {
        padding: 20px 15px;
    }

    .review-source-logo {
        font-size: 36px;
    }

    .review-source-name {
        font-size: 18px;
    }

    .review-title {
        font-size: 18px;
    }

    .review-quote {
        font-size: 14px;
        padding: 12px 15px;
    }

    .stats-grid-large {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-icon {
        font-size: 42px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stats-section {
        padding: 40px 20px;
    }
}


/* ========================================
   SECURITYHOST SPECIFIC STYLES
   ======================================== */

/* CMS Grid */
.cms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.cms-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #4caf50;
}

.cms-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.cms-card h4 {
    font-size: 20px;
    color: #2d2d2d;
    font-weight: bold;
    margin-bottom: 12px;
}

.cms-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cms-link {
    display: inline-block;
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

.cms-link:hover {
    color: #388e3c;
    transform: translateX(5px);
}

/* Pricing Box */
.pricing-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 600px;
    margin: 40px auto;
    border: 3px solid #4caf50;
}

.pricing-header {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 56px;
    font-weight: bold;
}

.price-period {
    font-size: 20px;
    opacity: 0.9;
}

.pricing-features {
    padding: 40px 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.feature-check {
    color: #4caf50;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-cta {
    padding: 30px;
    background: #f5f7fa;
    text-align: center;
}

.pricing-note {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
}

/* Responsive - SecurityHost */
@media (max-width: 900px) {
    .cms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cms-card {
        padding: 25px 20px;
    }

    .pricing-box {
        margin: 30px 15px;
    }

    .pricing-header {
        padding: 30px 20px;
    }

    .pricing-header h3 {
        font-size: 24px;
    }

    .price-amount {
        font-size: 48px;
    }

    .pricing-features {
        padding: 30px 20px;
    }

    .pricing-cta {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .cms-icon {
        font-size: 40px;
    }

    .cms-card h4 {
        font-size: 18px;
    }

    .pricing-header {
        padding: 25px 15px;
    }

    .pricing-header h3 {
        font-size: 22px;
    }

    .price-amount {
        font-size: 42px;
    }

    .price-period {
        font-size: 18px;
    }

    .pricing-features {
        padding: 25px 15px;
    }

    .pricing-feature {
        font-size: 14px;
    }
}


/* Comparison Grid for S-Admin */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.comparison-card.highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #8B4513;
    transform: scale(1.02);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.comparison-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.comparison-card .feature-list {
    list-style: none;
    padding: 0;
}

.comparison-card .feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.comparison-card .feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.comparison-card.highlight .feature-list li:before {
    color: #8B4513;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.highlight {
        transform: scale(1);
    }
}


/* ===========================
   STATISTICS WIDGET & PAGE
   =========================== */

/* Stats Widget in Sidebar */
.stats-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.stats-chart-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.stats-chart-link:hover {
    transform: scale(1.05);
}

#statsChart {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

.chart-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
}

/* Stats Page */
.stats-page {
    background: #f5f7fa;
    min-height: 100vh;
    padding: 40px 20px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* Stats Overview Cards */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.stat-card-icon {
    font-size: 3rem;
    line-height: 1;
}

.stat-card-content h3 {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.stat-card-change {
    font-size: 0.85rem;
    color: #666;
}

.stat-card-change.positive {
    color: #34A853;
}

.stat-card-change.negative {
    color: #EA4335;
}

/* Charts Section */
.stats-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chart-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.chart-container canvas {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.chart-legend {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Stats Tables */
.stats-table-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.stats-table {
    overflow-x: auto;
    margin-top: 20px;
}

.stats-table table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
}

.stats-table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.stats-table tbody tr:hover {
    background: #f8f9fa;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4285F4 0%, #34A853 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Responsive Stats */
@media (max-width: 768px) {
    .stats-page {
        padding: 20px 10px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
    }
    
    .stats-charts {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card-icon {
        font-size: 2.5rem;
    }
    
    .stat-card-value {
        font-size: 1.5rem;
    }
    
    .chart-container {
        padding: 15px;
    }
    
    .stats-table {
        font-size: 0.85rem;
    }
    
    .stats-table th,
    .stats-table td {
        padding: 8px;
    }
}
