
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#f4f6f9;color:#111}
header{background:#0a3d62;color:#fff;padding:15px;position:sticky;top:0}
header nav a{color:#fff;margin-right:20px;text-decoration:none;font-weight:600}
.container{max-width:1200px;margin:auto;padding:30px}
.section{background:#fff;border-radius:10px;padding:25px;margin-bottom:30px}
.operator{display:flex;align-items:center;gap:20px;padding:15px 0;border-bottom:1px solid #eee}
.operator img{width:90px;height:auto}
footer{background:#111;color:#fff;text-align:center;padding:25px;font-size:14px}
.badge{background:#0a3d62;color:#fff;padding:4px 8px;border-radius:6px;font-size:12px}
/* ====== GRIGLIA HOME ====== */
.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

/* ====== BOX ====== */
.home-box {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.home-box:hover {
  transform: translateY(-5px);
}

/* ====== IMMAGINI ====== */
.home-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ====== TESTO ====== */
.home-box h3 {
  margin: 0;
  padding: 14px;
  font-size: 18px;
  text-align: center;
}
/* =========================
   RESET BOX HOME DEFINITIVO
========================= */

.home-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  margin: 40px auto !important;
}

.home-box {
  width: 100% !important;
  background: #fff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15) !important;
}

.home-box img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block !important;
}

.home-box h3 {
  margin: 0 !important;
  padding: 16px !important;
  text-align: center !important;
  font-size: 18px !important;
}
/* ===== FIX FINALE IMMAGINI NEI BOX ===== */

.home-box {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.home-box .img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.home-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ================================
   FIX DEFINITIVO ASSOLUTO IMMAGINI
================================ */

.home-box {
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15) !important;
}

.home-box img {
  width: 100% !important;
  height: 200px !important;
  max-width: 100% !important;
  max-height: 200px !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

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

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #e5e7eb;
}
.trust-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.trust-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.trust-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.trust-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
}
.compare-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.compare-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.compare-table th {
  background: #f1f5f9;
  font-weight: bold;
}

.compare-table a {
  color: #2563eb;
  text-decoration: none;
}
