* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0066cc, #003366);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #0066cc;
}

.nav a.active {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 4px;
}

/* Hero */
.hero {
    background: linear-gradient(120deg, #f0f5fa 0%, #e6edf4 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #0a2942;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 32px;
    color: #2c3e50;
}

/* Bottoni */
.btn {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #004c99;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #0066cc;
    color: #0066cc;
}

.btn-outline:hover {
    background: #0066cc;
    color: white;
}

/* Sezioni */
.section {
    padding: 64px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.section-sub {
    text-align: center;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Griglia prodotti */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
    border-color: #cbd5e1;
}

.product-img {
    height: 200px;
    background: #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #2c5282;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-info p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tag {
    display: inline-block;
    background: #e6f0ff;
    color: #0066cc;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Servizi / Features */
.services {
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.feature {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.2s;
}

.feature:hover {
    background: white;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* Mission */
.mission {
    background: #0a2942;
    color: white;
}

.mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mission h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission ul {
    list-style: none;
    margin-top: 24px;
}

.mission li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 48px 0 24px;
    text-align: center;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* Form contatti */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #0066cc;
}

/* Info contatti */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
    text-align: center;
}

.contact-info-item {
    padding: 24px;
    background: #f8fafc;
    border-radius: 20px;
}

.contact-info-item .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* Pagina prodotto dettaglio */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-img {
    background: #eef2f6;
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.specs {
    margin: 24px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
}

.specs li {
    margin-bottom: 8px;
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .header-inner {
        flex-direction: column;
    }
    .mission .container {
        grid-template-columns: 1fr;
    }
    .product-detail {
        grid-template-columns: 1fr;
    }
}