:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 16px 64px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 24px 96px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: #fafbfc;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-light);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(102, 126, 234, 0.1);
}

.nav-links a.cta {
    background: var(--primary-gradient);
    color: white;
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
    background: white;
    color: var(--text-primary);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-dashboard {
    /* background: var(--glass-bg); */
    background-image: url(../img/snap-softaready.jpg);
    background-size: cover;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    box-shadow: var(--shadow-heavy);
    height: 350px;
}

.dashboard-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dashboard-item {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Products Showcase */
.products-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.products-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.showcase-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.showcase-header .section-title {
    color: white;
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-50px);
    animation: headerReveal 1.5s ease 0.5s forwards;
}

.showcase-header .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.4rem;
    opacity: 0;
    transform: translateY(50px);
    animation: subtitleReveal 1.2s ease 1s forwards;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-card:nth-child(1) { transition-delay: 0.3s; }
.product-card:nth-child(2) { transition-delay: 0.6s; }
.product-card:nth-child(3) { transition-delay: 0.9s; }

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, transparent, rgba(102,126,234,0.3), transparent);
    border-radius: inherit;
    z-index: -1;
    animation: rotate 8s linear infinite;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}

.product-visual {
    height: auto;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-visual img {
    inline-size: -webkit-fill-available;
}

.visual-icon {
    font-size: 6rem;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.product-card.animate .visual-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.product-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.8s;
}

.product-card.animate .product-badge {
    opacity: 1;
    transform: translateY(0);
}

.product-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease 1s;
}

.product-card.animate .product-content h3 {
    opacity: 1;
    transform: translateX(0);
}

.product-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 1.2s;
}

.product-card.animate .product-content p {
    opacity: 1;
    transform: translateY(0);
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: var(--text-primary);
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.product-card.animate .feature-tag:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.4s;
}

.product-card.animate .feature-tag:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.6s;
}

.product-card.animate .feature-tag:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.8s;
}

.product-card.animate .feature-tag:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2s;
}

.product-cta {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 2.2s;
}

.product-card.animate .product-cta {
    opacity: 1;
    transform: translateY(0);
}

.product-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    border: 1px solid #f1f3f4;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-box {
    background-color: white;
border-radius: 10px;
padding: 10px;
opacity: 0.8;
}
.servizi-consulenza {
    background-image: url(../img/servizi-consulenza.jpg);
    background-size: cover;
}
.servizi-configurazione {
    background-image: url(../img/servizi-configurazione.jpg);
    background-size: cover;
}
.servizi-formazione {
    background-image: url(../img/servizi-formazione.jpg);
    background-size: cover;
}
.servizi-supporto {
    background-image: url(../img/servizi-supporto.jpg);
    background-size: cover;
}
.servizi-update {
    background-image: url(../img/servizi-update.jpg);
    background-size: cover;
}
.servizi-cloud {
    background-image: url(../img/servizi-cloud.jpg);
    background-size: cover;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    /* color: var(--text-secondary); */
    color: #404747;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 0fr;
    /* gap: 6rem; */
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-gradient);
    border-radius: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.tech-stack {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid #f1f3f4;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 24px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .form-group select:focus {
            outline: none;
            border-color: rgba(255,255,255,0.4);
            background: rgba(255,255,255,0.15);
        }

        .form-group select option {
            background: #2c3e50;
            color: white;
            padding: 0.5rem;
        }

        .error-message {
            display: block;
            color: yellow;
            font-size: 0.85rem;
            margin-top: 0.5rem;
            min-height: 1.2rem;
        }

        .form-group.error input,
        .form-group.error textarea,
        .form-group.error select {
            border-color: #ff6b6b;
            background: rgba(255, 107, 107, 0.1);
        }

        .form-group.success input,
        .form-group.success textarea,
        .form-group.success select {
            border-color: #4ecdc4;
            background: rgba(78, 205, 196, 0.1);
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 0;
        }

        .checkbox-label input[type="checkbox"] {
            opacity: 0;
            position: absolute;
            width: 0;
            height: 0;
        }

        .checkmark {
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 4px;
            margin-right: 0.75rem;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s ease;
            margin-top: 2px;
        }

        .checkbox-label input[type="checkbox"]:checked + .checkmark {
            background: #4ecdc4;
            border-color: #4ecdc4;
        }

        .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .checkbox-label a {
            color: #4ecdc4;
            text-decoration: underline;
        }

        .checkbox-label a:hover {
            color: white;
        }

        .submit-btn {
            background: white;
            color: var(--text-primary);
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-loader {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .spinner {
            width: 16px;
            height: 16px;
            border: 2px solid transparent;
            border-top: 2px solid var(--text-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .form-status {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            display: none;
        }

        .form-status.success {
            background: rgba(78, 205, 196, 0.2);
            border: 1px solid rgba(78, 205, 196, 0.5);
            color: #4ecdc4;
        }

        .form-status.error {
            background: rgba(255, 107, 107, 0.2);
            border: 1px solid rgba(255, 107, 107, 0.5);
            color: yellow;
        }

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.7;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    to { 
        transform: rotate(360deg); 
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .showcase-header .section-title {
        font-size: 2.5rem;
    }

    .product-content h3 {
        font-size: 1.5rem;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .tech-items {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .product-card {
        padding: 2rem;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1001;
    transition: transform 0.3s ease;
}
/* Scarica SOFTA Section */
.scaricasofta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
/* Policy Privacy e Informative Clienti e Fornitori */
#policy 	{font-family: arial; line-height: 1.5em; margin-top:120px}
#policy h1 	{font-size: 1.5em}
#policy h2	{color:Steelblue; margin:10px 0px}
#policy p	{line-height: 1.4em}
#policy ul {background-color: #d0e8ff; margin:20px; padding:20px; border-radius:10px}
#policy ul li {margin-left:10px; margin-bottom:10px}
#policy .nodot {list-style-type:lower-latin}
#policy table {
    width: 100%;
    margin-bottom: 24px;
    border-bottom: solid 1px #ddd;
}
#policy table th, table td {
    padding: 8px;
    border-top: solid 1px #ddd;
}
a         {color:white}
a:visited {color:lightgreen}