/* =====================================================
   DGF TRIVELMORRA — servizi.css
   Service Cards · Accordion · Mini Grid
   ===================================================== */

.servizi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; padding: 32px; position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s; transform-style: preserve-3d;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
}
.service-card:hover { border-color: var(--orange); box-shadow: 0 24px 60px rgba(0,0,0,.6); }

.card-icon-wrap {
  width: 44px; height: 44px; background: rgba(255,255,255,.05); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,.08);
}
.card-icon svg { width: 22px; height: 22px; color: var(--orange); }
.service-card h3 { font-size: 17px; font-weight: 900; margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 13px; line-height: 1.65; color: var(--text-dim); margin-bottom: 16px; }
.card-spec {
  display: inline-block; font-size: 10px; font-weight: 600; color: var(--orange);
  letter-spacing: 1.5px; padding: 4px 10px; background: rgba(255,255,255,.04); border-radius: 2px;
}

/* ── Tutti i Servizi accordion ── */
.tutti-servizi-section { margin-top: 56px; }
.tutti-servizi-toggle {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 20px 32px; font-size: 14px; font-weight: 700;
  letter-spacing: 2px; cursor: pointer; border-radius: 4px;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .2s; font-family: inherit;
}
.tutti-servizi-toggle:hover { border-color: var(--orange); }
.toggle-icon { font-size: 22px; color: var(--orange); transition: transform .3s; }
.tutti-servizi-toggle.open .toggle-icon { transform: rotate(45deg); }
.tutti-servizi-toggle.open { border-color: var(--orange); }

/* Accordion Body - inicialmente chiuso */
.tutti-servizi-body {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

/* Quando la classe open è aggiunta, si apre con animazione */
.tutti-servizi-body.open {
  display: grid;
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 2000px;
  }
}

.servizi-secondary-grid { 
  display: inherit;
  grid-template-columns: inherit;
  gap: inherit;
}

.servizio-mini {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 3px; padding: 16px 20px; font-size: 12px; font-weight: 600;
  line-height: 1.5; color: var(--text-dim); transition: border-color .2s, color .2s;
  position: relative; overflow: hidden;
}
.servizio-mini::before { content:''; position:absolute; left:0; top:0; bottom:0; width:2px; background:var(--orange); opacity:.4; }
.servizio-mini:hover { border-color: var(--orange); color: var(--text); }
.servizio-mini:hover::before { opacity: 1; }

/* Stili per service-card-sm */
.service-card-sm {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 3px; padding: 16px 20px; font-size: 12px; font-weight: 600;
  line-height: 1.5; color: var(--text-dim); transition: border-color .2s, color .2s;
  position: relative; overflow: hidden;
}
.service-card-sm::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--orange); opacity: 0.4;
}
.service-card-sm:hover { border-color: var(--orange); color: var(--text); }
.service-card-sm:hover::before { opacity: 1; }
.service-card-sm h4 { font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.service-card-sm p { font-size: 12px; margin: 0; }

/* Stili per liste feature nelle card */
.service-features {
  list-style: none; padding: 0; margin: 16px 0 0 0;
}
.service-features li {
