<!-- ═══════════════════════════════════════════
     SEZIONE 1: CSS
     Da incollare nel campo CSS del tema Zoho Desk
     ═══════════════════════════════════════════ -->
<style>
/* ── Reset e variabili ── */
:root {
  --z-blue:       #1565C0;
  --z-blue-light: #E3F2FD;
  --z-blue-mid:   #1976D2;
  --z-orange:     #E65100;
  --z-orange-light: #FFF3E0;
  --z-green:      #2E7D32;
  --z-green-light:#E8F5E9;
  --z-violet:     #5E35B1;
  --z-violet-light:#EDE7F6;
  --z-text:       #1A1A2E;
  --z-muted:      #546E7A;
  --z-subtle:     #90A4AE;
  --z-border:     #E0E7EF;
  --z-bg:         #F4F7FB;
  --z-white:      #FFFFFF;
  --z-radius:     14px;
  --z-radius-sm:  8px;
  --z-shadow:     0 2px 12px rgba(21,101,192,0.08);
  --z-shadow-hover: 0 8px 32px rgba(21,101,192,0.16);
}

/* ── Nascondi la pagina di scelta dipartimento finché non serve ── */
body.vs-landing-active .departmentList,
body.vs-landing-active .deptSection,
body.vs-landing-active [class*="department-list"],
body.vs-landing-active [class*="dept-list"],
body.vs-landing-active .newticket-dept-section {
  display: none !important;
}

/* ── Landing container ── */
#vs-landing {
  display: none;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--z-bg);
  min-height: 100vh;
  padding: 0;
  box-sizing: border-box;
}

#vs-landing.visible {
  display: block;
  animation: vsFadeIn 0.35s ease;
}

@keyframes vsFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Header ── */
.vs-header {
  background: linear-gradient(135deg, var(--z-blue) 0%, var(--z-blue-mid) 100%);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vs-header-logo {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vs-header-text h1 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.vs-header-text p {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* ── Body ── */
.vs-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.vs-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.vs-intro h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--z-text);
  margin: 0 0 6px;
}

.vs-intro p {
  font-size: 13px;
  color: var(--z-muted);
  margin: 0;
}

/* ── Grid 4 cards ── */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 560px) {
  .vs-grid {
    grid-template-columns: 1fr;
  }
  .vs-body {
    padding: 1.5rem 1rem 2rem;
  }
}

/* ── Card ── */
.vs-card {
  background: var(--z-white);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 1.5rem 1.25rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--z-shadow);
  position: relative;
  overflow: hidden;
}

.vs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--z-radius) var(--z-radius) 0 0;
  background: var(--card-accent, var(--z-blue));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vs-card:hover {
  box-shadow: var(--z-shadow-hover);
  transform: translateY(-3px);
  border-color: transparent;
}

.vs-card:hover::before {
  opacity: 1;
}

.vs-card:active {
  transform: translateY(-1px);
}

/* ── Card icon ── */
.vs-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--card-icon-bg, var(--z-blue-light));
  flex-shrink: 0;
}

.vs-card-icon svg {
  width: 24px;
  height: 24px;
}

/* ── Card testi ── */
.vs-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--z-text);
  margin: 0 0 3px;
  line-height: 1.3;
}

.vs-card-sub-it {
  font-size: 12px;
  color: var(--z-muted);
  margin: 0 0 2px;
  line-height: 1.4;
}

.vs-card-sub-de {
  font-size: 11px;
  color: var(--z-subtle);
  margin: 0;
  font-style: italic;
  line-height: 1.4;
}

/* ── Card CTA ── */
.vs-card-cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--card-accent, var(--z-blue));
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vs-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.vs-card:hover .vs-card-cta svg {
  transform: translateX(4px);
}

/* ── Badge "Accesso rapido" ── */
.vs-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--z-violet-light);
  color: var(--z-violet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(94,53,177,0.15);
}

/* ── Footer ── */
.vs-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 12px;
  color: var(--z-subtle);
}

.vs-footer span {
  color: var(--z-blue);
  font-weight: 600;
}
</style>



