/* MAIN css */
body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.hero { background: #0f172a; color: #f9fafb; }
.hero-badge { font-size: 0.90rem; text-transform: uppercase; letter-spacing: .08em; }
.section-muted { background: #f9fafb; }
.pricing-card { border-radius: .80rem; border: 1px solid #e5e7eb; }
.pricing-card.featured { border: 2px solid #0d6efd; box-shadow: 0 10px 30px rgba(15,23,42,.12); }
.badge-dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; margin-right: 6px; }

/* LOGO */
/* Contenitore opzionale, utile se vuoi controllare la larghezza massima */
.logo-wrapper {
  max-width: 333px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Immagine responsive */
.logo {
  width: 100%;
  height: auto;
  max-width: 333px; /* opzionale: limita la dimensione massima */
  object-fit: contain;
  display: block;
}

/* HAMBURGER */
.hamburger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

/* ANIMAZIONE HAMBURGER */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 10000;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* MENU SLIDE-IN SINISTRA */
.mobile-menu-left {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100vh;
  background: #000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: left .3s ease-in-out;
  z-index: 10002;
}

.mobile-menu-left.open {
  left: 0;
}

.mobile-menu-left a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.mobile-menu-left .btn-cta {
  padding: 0.6rem 1rem;
  border: 1px solid #fff;
  border-radius: 4px;
  text-align: center;
}


/* SCREENSHOT */
/* clickable image */
.screenshot-section {
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
/* Overlay */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
/* zoomed image */
.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* SICUREZZA E CONFORMITA' GDPR */
.section {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    page-break-inside: avoid; /* Evita che una sezione si spezzi a metà tra le pagine */
}

.section-title {
    font-size: 13pt;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eff6ff;
    display: flex;
    align-items: center;
}

/* Tabella/Lista della checklist */
.checklist-table {
    width: 100%;
    border-collapse: collapse;
}

.checklist-row {
    border-bottom: 1px solid #f1f5f9;
}

.checklist-row:last-child {
    border-bottom: none;
}

.checkbox-cell {
    width: 30px;
    vertical-align: top;
    padding: 10px 0;
}

/* Box per la spunta */
.checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid #3b82f6;
    border-radius: 4px;
    background: white;
    display: inline-block;
}

.content-cell {
    padding: 8px 0 8px 10px;
    vertical-align: top;
}

.item-title {
    font-weight: 600;
    font-size: 10.5pt;
    color: #0f172a;
    margin-bottom: 3px;
}

.item-desc {
    font-size: 9.5pt;
    color: #475569;
    margin: 0;
}

