/* ─────────────────────────────────────────────────────────────
   NPC REPAIR — Custom CSS
   Design cyberpunk dark / ciano / magenta
   Font: Orbitron (intestazioni) + Rajdhani (corpo)
───────────────────────────────────────────────────────────── */

/* ── VARIABILI CSS ── */
:root {
  --npc-bg:       #050a0f;
  --npc-surface:  #0a1520;
  --npc-cyan:     #00d4ff;
  --npc-magenta:  #ff2d78;
  --npc-text:     #e0f0ff;
  --npc-muted:    #7a9bb0;
  --npc-border:   rgba(0,212,255,0.2);
  --npc-glow:     0 0 20px rgba(0,212,255,0.3);
  --npc-font-h:   'Orbitron', monospace;
  --npc-font-b:   'Rajdhani', sans-serif;
}

/* ── RESET BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--npc-bg);
  color: var(--npc-text);
  font-family: var(--npc-font-b);
  overflow-x: hidden;
  margin: 0;
}

/* Rimuovi margin del blocco principale WordPress */
.wp-site-blocks,
.is-root-container {
  margin: 0;
  padding: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGAZIONE
═══════════════════════════════════════════════════════════ */
.npc-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 32px !important;
  border-bottom: 1px solid var(--npc-border);
  background: rgba(5,10,15,0.97) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Logo */
.npc-logo,
a.npc-logo {
  font-family: var(--npc-font-h);
  font-size: 18px;
  font-weight: 900;
  color: var(--npc-cyan) !important;
  letter-spacing: 3px;
  text-shadow: var(--npc-glow);
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.npc-logo span {
  color: var(--npc-magenta);
}

/* Navigation Links */
.npc-nav .wp-block-navigation__container,
.npc-nav .wp-block-navigation {
  gap: 24px !important;
}
.npc-nav .wp-block-navigation-item__content,
.npc-nav .wp-block-navigation a {
  font-family: var(--npc-font-b);
  color: var(--npc-muted) !important;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: color 0.2s ease;
  padding: 0 !important;
}
.npc-nav .wp-block-navigation a:hover,
.npc-nav .wp-block-navigation-item:hover > .wp-block-navigation-item__content {
  color: var(--npc-cyan) !important;
}

/* Pulsante CTA nav */
.npc-nav-cta,
a.npc-nav-cta {
  background: var(--npc-magenta);
  color: #fff !important;
  border: none;
  padding: 8px 20px;
  font-family: var(--npc-font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.npc-nav-cta:hover,
a.npc-nav-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(255,45,120,0.4);
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.npc-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 32px;
  overflow: hidden;
  background: var(--npc-bg);
}

.npc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,45,120,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.npc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.npc-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.npc-hero-content {
  max-width: 600px;
  flex: 1;
}

.npc-hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--npc-magenta);
  border: 1px solid var(--npc-magenta);
  padding: 4px 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.npc-hero-title {
  font-family: var(--npc-font-h) !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin: 0 0 8px !important;
  color: var(--npc-text) !important;
}

.npc-hero-title .npc-cyan,
.wp-block-heading .npc-cyan {
  color: var(--npc-cyan);
  display: block;
}
.npc-hero-title .npc-magenta,
.wp-block-heading .npc-magenta {
  color: var(--npc-magenta);
  display: block;
}
.npc-hero-title .npc-white,
.wp-block-heading .npc-white {
  color: var(--npc-text);
  display: block;
  font-size: 32px;
}

.npc-hero-sub {
  font-size: 18px !important;
  color: var(--npc-muted) !important;
  margin: 16px 0 32px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}

.npc-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Pulsanti Hero */
.btn-primary,
a.btn-primary {
  background: var(--npc-cyan);
  color: #000 !important;
  padding: 12px 28px;
  font-family: var(--npc-font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-block;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn-primary:hover,
a.btn-primary:hover {
  box-shadow: 0 0 24px rgba(0,212,255,0.5);
  opacity: 0.95;
}

.btn-secondary,
a.btn-secondary {
  background: transparent;
  color: var(--npc-magenta) !important;
  padding: 11px 27px;
  font-family: var(--npc-font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border: 1px solid var(--npc-magenta);
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-block;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.btn-secondary:hover,
a.btn-secondary:hover {
  background: rgba(255,45,120,0.08);
  box-shadow: 0 0 20px rgba(255,45,120,0.3);
}

/* Badge hero */
.npc-hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.npc-badge-circle {
  width: 140px;
  height: 140px;
  border: 2px solid var(--npc-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  animation: npc-pulse 3s ease-in-out infinite;
}
.npc-badge-circle::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
}
.npc-badge-circle .num {
  font-family: var(--npc-font-h);
  font-size: 36px;
  font-weight: 900;
  color: var(--npc-cyan);
  line-height: 1;
}
.npc-badge-circle .label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--npc-muted);
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.4;
}

@keyframes npc-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(0,212,255,0); }
}

/* ═══════════════════════════════════════════════════════════
   SEZIONI GENERALI
═══════════════════════════════════════════════════════════ */
.npc-section {
  padding: 60px 32px;
  background: var(--npc-bg);
}

.npc-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.npc-section-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, var(--npc-cyan), transparent);
}

.npc-section-title {
  font-family: var(--npc-font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--npc-text);
}
.npc-section-title span {
  color: var(--npc-magenta);
}

/* ═══════════════════════════════════════════════════════════
   SERVIZI
═══════════════════════════════════════════════════════════ */
.npc-services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1px !important;
  background: var(--npc-border) !important;
}

.npc-service-card {
  background: var(--npc-surface) !important;
  padding: 28px 24px !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s ease;
}
.npc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--npc-cyan);
  transition: height 0.3s ease;
}
.npc-service-card:hover::before {
  height: 100%;
}
.npc-service-card:hover {
  background: rgba(0,212,255,0.05) !important;
}

.npc-service-icon,
p.npc-service-icon {
  font-size: 28px !important;
  margin: 0 0 12px !important;
  line-height: 1 !important;
}

.npc-service-name,
h3.npc-service-name {
  font-family: var(--npc-font-h) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  color: var(--npc-cyan) !important;
  margin: 0 0 8px !important;
  text-transform: uppercase;
}

.npc-service-desc,
p.npc-service-desc {
  font-size: 14px !important;
  color: var(--npc-muted) !important;
  line-height: 1.5 !important;
  margin: 0 0 16px !important;
}

.npc-service-price,
p.npc-service-price {
  font-size: 13px !important;
  color: var(--npc-magenta) !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   PROCESSO
═══════════════════════════════════════════════════════════ */
.npc-process-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
}

.npc-step {
  padding: 28px 20px !important;
  text-align: center;
  position: relative;
  background: transparent !important;
}
.npc-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 28px;
  color: var(--npc-border);
  font-size: 20px;
  line-height: 1;
}

.npc-step-num,
p.npc-step-num {
  font-family: var(--npc-font-h) !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  color: rgba(0,212,255,0.15) !important;
  margin: 0 0 8px !important;
  line-height: 1 !important;
}

.npc-step-title,
h3.npc-step-title {
  font-family: var(--npc-font-h) !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  color: var(--npc-cyan) !important;
  text-transform: uppercase !important;
  margin: 0 0 8px !important;
  font-weight: 700 !important;
}

.npc-step-desc,
p.npc-step-desc {
  font-size: 13px !important;
  color: var(--npc-muted) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   SEZIONE CTA + FORM
═══════════════════════════════════════════════════════════ */
.npc-cta-section {
  padding: 60px 32px !important;
  background: var(--npc-surface) !important;
  border-top: 1px solid var(--npc-border);
  border-bottom: 1px solid var(--npc-border);
}

/* Layout 2 colonne via Gutenberg Columns */
.npc-cta-section > .wp-block-columns {
  max-width: 1200px;
  margin: 0 auto;
  align-items: start !important;
}

.npc-cta-left h2 {
  font-family: var(--npc-font-h);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--npc-text);
}
.npc-cta-left h2 span {
  color: var(--npc-magenta);
}
.npc-cta-left p.npc-cta-desc {
  color: var(--npc-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.npc-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.npc-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.npc-contact-dot {
  width: 6px;
  height: 6px;
  background: var(--npc-cyan);
  flex-shrink: 0;
}
.npc-contact-dot.magenta {
  background: var(--npc-magenta);
}
.npc-contact-text {
  font-size: 14px;
  color: var(--npc-text);
}
.npc-contact-text.muted {
  color: var(--npc-muted);
}

/* Form */
.npc-form-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.npc-input,
.npc-textarea,
.npc-select {
  background: rgba(0,212,255,0.05);
  border: 1px solid var(--npc-border);
  padding: 12px 16px;
  color: var(--npc-text);
  font-family: var(--npc-font-b);
  font-size: 14px;
  letter-spacing: 0.5px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}
.npc-input:focus,
.npc-textarea:focus,
.npc-select:focus {
  border-color: var(--npc-cyan);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.2);
}
.npc-input::placeholder,
.npc-textarea::placeholder {
  color: var(--npc-muted);
}
.npc-select {
  color: var(--npc-muted);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300d4ff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.npc-select option {
  background: var(--npc-surface);
  color: var(--npc-text);
}
.npc-textarea {
  height: 90px;
  resize: vertical;
}

.npc-submit {
  background: var(--npc-magenta);
  color: #fff;
  border: none;
  padding: 14px;
  font-family: var(--npc-font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  text-transform: uppercase;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.npc-submit:hover:not(:disabled) {
  opacity: 0.9;
  box-shadow: 0 0 24px rgba(255,45,120,0.4);
}
.npc-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.npc-form-message {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  display: none;
}
.npc-form-message.success {
  display: block;
  color: var(--npc-cyan);
  border: 1px solid rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
}
.npc-form-message.error {
  display: block;
  color: var(--npc-magenta);
  border: 1px solid rgba(255,45,120,0.3);
  background: rgba(255,45,120,0.05);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.npc-footer-wrap {
  background: var(--npc-bg);
  border-top: 1px solid var(--npc-border);
}

.npc-footer {
  padding: 40px 32px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.npc-footer-brand .npc-logo {
  display: block;
  margin-bottom: 12px;
}
.npc-footer-brand p {
  font-size: 13px;
  color: var(--npc-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.npc-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.npc-social-btn,
a.npc-social-btn {
  border: 1px solid var(--npc-border);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--npc-muted) !important;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none !important;
  transition: border-color 0.2s ease, color 0.2s ease;
  display: inline-block;
}
.npc-social-btn:hover,
a.npc-social-btn:hover {
  border-color: var(--npc-cyan);
  color: var(--npc-cyan) !important;
}

.npc-footer-col h4 {
  font-family: var(--npc-font-h);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--npc-cyan);
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 700;
}
.npc-footer-col p {
  font-size: 13px;
  color: var(--npc-muted);
  line-height: 1.8;
  margin: 0;
}

.npc-orario {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--npc-muted);
  line-height: 2;
}
.npc-orario .chiuso {
  color: var(--npc-magenta);
}

.npc-footer-bottom {
  padding: 16px 32px;
  border-top: 1px solid var(--npc-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.npc-footer-bottom p,
.npc-footer-bottom a {
  font-size: 11px;
  color: var(--npc-muted);
  letter-spacing: 1px;
  margin: 0;
  text-decoration: none;
}
.npc-footer-bottom a:hover {
  color: var(--npc-cyan);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM 7 — STILE CYBERPUNK
═══════════════════════════════════════════════════════════ */

/* Reset wrapper CF7 */
.npc-cf7-col .wpcf7,
.npc-cf7-col .wpcf7-form {
  margin: 0 !important;
  padding: 0 !important;
}

/* Layout flex colonna per i campi */
.npc-cf7-col .npc-cf7-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Ogni campo è su riga intera */
.npc-cf7-col .wpcf7-form-control-wrap {
  display: block;
}

/* Input, textarea, select di CF7 — stile cyberpunk */
.npc-cf7-col input.npc-input,
.npc-cf7-col textarea.npc-textarea,
.npc-cf7-col select.npc-select {
  display: block;
  width: 100%;
}

/* Submit button CF7 (<input type="submit">) */
.npc-cf7-col input[type="submit"].npc-submit {
  width: 100%;
  display: block;
  appearance: none;
  -webkit-appearance: none;
}
.npc-cf7-col input[type="submit"].npc-submit:hover {
  box-shadow: 0 0 24px rgba(255,45,120,0.4);
  opacity: 0.9;
}

/* Errori di validazione campo */
.npc-cf7-col .wpcf7-not-valid-tip {
  display: block;
  font-size: 11px;
  color: var(--npc-magenta);
  letter-spacing: 1px;
  margin-top: 4px;
  font-family: var(--npc-font-b);
}

.npc-cf7-col input.npc-input.wpcf7-not-valid,
.npc-cf7-col textarea.npc-textarea.wpcf7-not-valid,
.npc-cf7-col select.npc-select.wpcf7-not-valid {
  border-color: var(--npc-magenta);
  box-shadow: 0 0 0 1px rgba(255,45,120,0.2);
}

/* Messaggio risposta CF7 (successo / errore) */
.npc-cf7-col .wpcf7-response-output {
  margin: 0 !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  font-family: var(--npc-font-b) !important;
  border-width: 1px !important;
}

.npc-cf7-col .wpcf7-mail-sent-ok {
  border-color: var(--npc-cyan) !important;
  background: rgba(0,212,255,0.05) !important;
  color: var(--npc-cyan) !important;
}

.npc-cf7-col .wpcf7-mail-sent-ng,
.npc-cf7-col .wpcf7-aborted,
.npc-cf7-col .wpcf7-spam-blocked,
.npc-cf7-col .wpcf7-validation-errors,
.npc-cf7-col .wpcf7-acceptance-missing {
  border-color: var(--npc-magenta) !important;
  background: rgba(255,45,120,0.05) !important;
  color: var(--npc-magenta) !important;
}

/* Spinner di caricamento */
.npc-cf7-col .wpcf7-spinner {
  background-color: var(--npc-cyan) !important;
  width: 20px !important;
  height: 20px !important;
  margin-left: 10px;
}

/* Stato "sending" del form */
.npc-cf7-col .wpcf7-form.submitting input[type="submit"].npc-submit {
  opacity: 0.6;
  cursor: wait;
}

/* Responsive */
@media (max-width: 900px) {
  .npc-cta-section > .wp-block-columns {
    flex-direction: column !important;
  }
  .npc-cta-section > .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   ANIMAZIONI SCROLL
═══════════════════════════════════════════════════════════ */
.npc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.npc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.npc-reveal:nth-child(2) { transition-delay: 0.1s; }
.npc-reveal:nth-child(3) { transition-delay: 0.2s; }
.npc-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .npc-nav {
    padding: 14px 20px !important;
    flex-wrap: wrap;
    gap: 12px;
  }
  .npc-nav .wp-block-navigation__container {
    display: none !important; /* hamburger gestito dal blocco nav */
  }

  .npc-hero {
    padding: 40px 20px;
    min-height: auto;
  }
  .npc-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .npc-hero-title {
    font-size: 30px !important;
  }
  .npc-hero-title .npc-white {
    font-size: 24px !important;
  }
  .npc-hero-badge {
    align-self: center;
    margin-top: 24px;
  }

  .npc-services-grid {
    grid-template-columns: 1fr !important;
  }

  .npc-process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .npc-step:nth-child(2)::after,
  .npc-step:last-child::after {
    display: none;
  }

  .npc-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .npc-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px 20px;
  }
  .npc-footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }

  .npc-section {
    padding: 48px 20px;
  }
  .npc-cta-section {
    padding: 48px 20px;
  }
}

@media (max-width: 600px) {
  .npc-hero-title {
    font-size: 26px !important;
  }
  .npc-process-grid {
    grid-template-columns: 1fr !important;
  }
  .npc-step::after {
    display: none !important;
  }
  .npc-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════════
   UTILITÀ
═══════════════════════════════════════════════════════════ */
.npc-cyan  { color: var(--npc-cyan) !important; }
.npc-magenta { color: var(--npc-magenta) !important; }
.npc-muted { color: var(--npc-muted) !important; }

/* Rimuovi stili di default di WordPress su blocchi dentro le sezioni custom */
.npc-cta-section .wp-block-group,
.npc-hero .wp-block-group {
  background: transparent !important;
}
