* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: relative;
}

/* Aggiorna .header-top */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 15px 0;
}

/* Aggiorna .header-bottom */
.header-bottom {
    border-top: 1px solid #000;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: left;
    width: auto;
}

/* Contatti con icone mobile */
.contact-icons {
    display: none;
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .contact-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #000;
        font-size: 14px;
        transition: color 0.3s;
    }
    
    .contact-icon:hover {
        color: #333;
    }
    
    .contact-icon.phone::before {
        content: "T";
        font-weight: 900;
        font-size: 14px;
    }

    .contact-icon.whatsapp::before {
        content: "W";
        font-weight: 900;
        font-size: 14px;
    }

    .contact-icon.email::before {
        content: "M";
        font-weight: 900;
        font-size: 14px;
    }
    
    .header-scrolled .contact-icons {
        transform: scale(0.8);
    }
    
    .header-top {
        justify-content: space-between;
        align-items: center;
    }
    
    .header-bottom {
        justify-content: space-between;
    }
    
    .header-scrolled .header-bottom {
        display: flex;
    }
}

.contact-info {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align:right;
    width:100%
}

.logo-section {
    display: block;
}

.subtitle {
    display: none;
}

.logo-right {
    height: 40px;
}

.logo-right img {
    height: 100%;
    width: auto;
}

/* Navigation */
.nav {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #000;
    border-top: none;
    z-index: 1000;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile a {
    display: block;
    padding: 15px 40px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Languages section in mobile menu */
.languages-section {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.languages-title {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 0 40px;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 40px;
}

.language-item {
    text-align: center;
    padding: 8px 5px;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #eee;
    transition: background-color 0.3s;
}

.language-item:hover {
    background-color: #f5f5f5;
}

/* Products showcase */
.products-showcase {
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-block {
    background-color: #f8f8f8;
    padding: 25px;
    text-align: center;
}

.product-url {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-transform: lowercase;
    margin-bottom: 15px;
    font-family: 'Arial Black', Arial, sans-serif;
}

.product-description {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    text-align: left;
}

/* Main Content */
main {
    padding: 0;
}

.service-section {
    margin: 0;
    background-color: #fff;
}

.service-header {
    padding: 60px 0 40px 0;
}

.service-title {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.service-subtitle {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.service-content {
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
}

.service-info {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: start;
}

.service-meta {
    text-align: left;
}

.service-meta h4 {
    font-size: 12px;
    font-weight: normal;
    color: #000;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-meta p {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.features-list {
    list-style: none;
    font-size: 14px;
    line-height: 1.6;
}

.features-list > li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.features-list > li:before {
    content: "•";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.sub-features {
    list-style: none;
    margin-top: 8px;
    margin-left: 0;
}

.sub-features li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 15px;
    font-size: 13px;
    color: #333;
}

.sub-features li:before {
    content: "-";
    color: #000;
    position: absolute;
    left: 0;
    top: 0;
}

/* Channels Section */
.channels-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.channels-title {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.channel-column ul {
    list-style: none;
    font-size: 14px;
    line-height: 1.8;
}

.channel-column li {
    padding: 4px 0;
    position: relative;
    padding-left: 15px;
}

.channel-column li:before {
    content: "•";
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 4px;
}

/* Demo request section */
.demo-request {
    background-color: #f8f9fa;
    border: 2px solid #000;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.demo-title {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.demo-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-button {
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.demo-button:hover {
    background-color: #333;
}

.demo-button.phone {
    background-color: #007bff;
}

/* Special highlight */
.duration-highlight {
    background-color: #000;
    color: #fff;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0;
    display: inline-block;
}

/* Bottom notes */
.bottom-notes {
    padding: 40px 0;
    border-top: 1px solid #000;
    margin-top: 40px;
}

.bottom-notes p {
    font-size: 12px;
    color: #000;
    font-weight: bold;
    line-height: 1.5;
}

/* Footer */
.footer {
    border-top: 3px solid #000;
    background-color: #f8f8f8;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 12px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        align-items: center;
    }

    .logo-section {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .logo-right {
        height: 32px;
    }

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

    .service-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .service-subtitle {
        font-size: 18px;
        line-height: 1.2;
    }

    .channels-title {
        font-size: 24px;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-header {
        padding: 40px 0 30px 0;
    }

    .languages-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
    }

    .languages-title {
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

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

    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }

    .demo-button {
        width: 200px;
    }
}

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

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

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

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

    .logo-right {
        height: 28px;
    }
}

/* Header fisso */
.header {
    position: relative;
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Aggiungi padding al body quando header è fisso */
body.header-fixed-active {
    padding-top: 120px; /* Regola in base all'altezza del tuo header */
}

/* Header fisso e animazioni */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    transition: all 0.3s ease;
}

.header-scrolled {
    padding: 5px 0 !important;
}

.header-scrolled .header-top {
    padding: 10px 0 8px 0;
}

.header-scrolled .header-bottom {
    padding: 8px 0;
    display: none; /* Nascondi contatti quando scrollato */
}

.header-scrolled .logo-right {
    height: 28px;
}

.header-scrolled .header-title {
    font-size: 10px;
}

.header-scrolled .hamburger {
    transform: scale(0.8);
}

/* Contatti con icone mobile */
.contact-icons {
    display: none;
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .contact-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #000;
        font-size: 14px;
        transition: color 0.3s;
    }

    .contact-icon:hover {
        color: #333;
    }

    /* Rimuovi i ::before e usa direttamente le classi FA */
    .contact-icon.phone::before,
    .contact-icon.whatsapp::before,
    .contact-icon.email::before {
        content: none;
    }

    .header-scrolled .contact-icons {
        transform: scale(0.8);
    }
}

/* Responsive migliorato */
@media (max-width: 768px) {
    .header-top {
        justify-content: space-between;
        align-items: center;
    }
    
    .header-bottom {
        justify-content: space-between;
    }
    
    .header-scrolled .header-bottom {
        display: flex; /* Mantieni visibile su mobile */
    }
}

.product-block {
    background-color: #f8f8f8;
    padding: 25px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-block:hover {
    background-color: #e8e8e8;
}

.product-url {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-transform: lowercase;
    margin-bottom: 15px;
    font-family: 'Arial Black', Arial, sans-serif;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.external-link-icon {
    font-size: 14px;
    color: #000;
}

/* AGGIUNGI QUESTO CSS ALLA FINE DEL TUO style.css */

/* Sezione Verticali */
.verticals-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ccc;
}

.verticals-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.verticals-section .section-title h2 {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.verticals-section .section-title p {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid dei Verticali */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Card Verticale */
.vertical-card {
    background: white;
    border: 2px solid #000;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.vertical-card:hover {
    background-color: #f8f8f8;
}

/* Header della card */
.vertical-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.vertical-icon {
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.vertical-title h3 {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.vertical-url {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Courier New', monospace;
}

/* Contenuto della card */
.vertical-tagline {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vertical-description {
    color: #333;
    line-height: 1.5;
    font-size: 13px;
}

/* Badge di stato */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-available {
    background: #000;
    color: #fff;
}

.status-coming-soon {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

/* Responsive verticali */
@media (max-width: 768px) {
    .verticals-section {
        padding: 40px 0;
    }
    
    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vertical-card {
        padding: 20px;
    }
    
    .verticals-section .section-title h2 {
        font-size: 24px;
    }
    
    .vertical-header {
        align-items: flex-start;
    }
    
    .vertical-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.external-link-icon {
    margin-left: 6px;
    font-size: 0.85em;
    color: #555;
}

/* Menu Services Section */
.menu-services-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

.menu-services-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.menu-services-section .section-title h2 {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.menu-services-section .section-title p {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid dei Menu Services */
.menu-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Card Menu Service */
.menu-service-card {
    background: #f8f8f8;
    border: 2px solid #000;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.menu-service-card:hover {
    background-color: #e8e8e8;
    transform: translateY(-2px);
}

/* Header della menu card */
.menu-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-service-header h3 {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
    margin: 0;
}

.menu-service-header i {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
}

.menu-service-card:hover .menu-service-header i {
    transform: translateY(3px);
}

/* Descrizione della menu card */
.menu-service-description {
    color: #333;
    line-height: 1.5;
    font-size: 13px;
}

/* Responsive menu services */
@media (max-width: 768px) {
    .menu-services-section {
        padding: 40px 0;
    }
    
    .menu-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-service-card {
        padding: 20px;
    }
    
    .menu-services-section .section-title h2 {
        font-size: 24px;
    }
    
    .menu-service-header {
        align-items: flex-start;
    }
}

/* Sezione Glossario */
.glossario-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ccc;
}

.glossario-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.glossario-section .section-title h2 {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.glossario-section .section-title p {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid del Glossario */
.glossario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

/* Item del Glossario */
.glossario-item {
    background: white;
    border: 2px solid #000;
    padding: 20px;
    transition: all 0.3s ease;
}

.glossario-item:hover {
    background-color: #f8f8f8;
    transform: translateY(-1px);
}

/* Termine del glossario */
.glossario-term {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
}

/* Definizione del glossario */
.glossario-definition {
    color: #333;
    line-height: 1.6;
    font-size: 13px;
}

/* Responsive glossario */
@media (max-width: 768px) {
    .glossario-section {
        padding: 40px 0;
    }
    
    .glossario-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .glossario-item {
        padding: 15px;
    }
    
    .glossario-section .section-title h2 {
        font-size: 24px;
    }
    
    .glossario-term {
        font-size: 14px;
    }
    
    .glossario-definition {
        font-size: 12px;
    }
}
