/* =============================================
   NEXUS ECBL — Marketing Site
   Palette: Nexus blu/viola, fondo medio (un filo meno scuro)
   ============================================= */

:root {
  --bg-page: #1a1f30;
  --bg-section: #1e2438;
  --bg-section-alt: #232a40;
  --bg-card: #2a3149;
  --bg-card-hover: #313a56;
  --bg-elevated: #353d5d;
  --border: #3a4262;
  --border-soft: #2f3656;

  --text-primary: #f5f6f8;
  --text-secondary: #b8bdd0;
  --text-muted: #8d93a6;

  --primary: #6366f1;
  --primary-hover: #5558e0;
  --accent: #8b5cf6;
  --accent-light: #a5a8ff;
  --accent-soft: #c4b5fd;

  --success: #10b981;

  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(139,92,246,0.12));

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --max-w: 1180px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.15);
  --shadow: 0 8px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 60px rgba(99,102,241,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* =============================================
   NAVBAR
   ============================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26, 31, 48, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em;
}
.logo-bolt {
  width: 32px; height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 12px rgba(99,102,241,0.4);
}
.logo-name { color: var(--text-primary); }
.logo-tag {
  font-size: 10px;
  color: var(--accent-light);
  background: rgba(139,92,246,0.14);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.menu {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px;
}
.menu a {
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 500;
}
.menu a:hover { color: var(--text-primary); }
.menu-secondary {
  color: var(--accent-light) !important;
  border-left: 1px solid var(--border);
  padding-left: 28px;
  margin-left: 4px;
}
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; height: 2px; background: var(--text-primary); border-radius: 2px;
  transition: transform 0.25s;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  cursor: pointer; border: none;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid rgba(165,168,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--accent-light);
  background: rgba(165,168,255,0.08);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
}
.hero-glow {
  position: absolute; top: -120px; left: 30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.tag {
  display: inline-block;
  background: rgba(99,102,241,0.14);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px; font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(99,102,241,0.3);
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.hero-meta .dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.05); }
}
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.network-svg {
  width: 100%; max-width: 420px;
  filter: drop-shadow(0 0 40px rgba(139,92,246,0.18));
}
.network-svg .pulse {
  animation: nodePulse 3s ease-in-out infinite;
  transform-origin: 55px 55px;
}
@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

/* =============================================
   KPIS STRIP
   ============================================= */
.kpis {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 36px 0;
}
.kpis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.kpi {
  padding: 12px 28px;
  border-right: 1px solid var(--border-soft);
}
.kpi:last-child { border-right: none; }
.kpi-num {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.kpi-suffix {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0;
}
.kpi-lbl {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-section); }
.eyebrow {
  font-size: 12px;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 12px;
}
.eyebrow.light { color: var(--accent-soft); }
h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
h2.white { color: #fff; }
.section-lead {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* =============================================
   GRIDS
   ============================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.grid-vantaggi {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

/* =============================================
   CARDS — SERVIZI
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
}
.card-hover:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(99,102,241,0.18);
}
.card-ic {
  width: 48px; height: 48px;
  background: var(--gradient-soft);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-light);
}
.card-ic svg { width: 24px; height: 24px; }
.card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}
.card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 14px;
}
.bullet {
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}
.bullet li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.bullet li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* =============================================
   SETTORI
   ============================================= */
.settore {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.settore:hover {
  background: var(--bg-card-hover);
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-2px);
}
.settore svg {
  width: 36px; height: 36px;
  margin: 0 auto 14px;
  color: var(--accent-light);
}
.settore h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
}
.settore span {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

/* =============================================
   VANTAGGI
   ============================================= */
.vantaggio {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 18px;
  position: relative;
  transition: all 0.25s;
}
.vantaggio:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.vantaggio-num {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.vantaggio h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.vantaggio p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* =============================================
   MANIFESTO
   ============================================= */
.manifesto {
  background: var(--gradient-soft);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-xl);
  padding: 60px 56px;
  text-align: center;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.manifesto-quote {
  position: absolute;
  top: -10px; left: 40px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}
.manifesto p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 400;
}
.valori {
  display: flex; justify-content: center; gap: 16px;
  font-size: 13px;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}
.valori .sep { color: var(--accent); opacity: 0.5; }

/* =============================================
   TEAM
   ============================================= */
.team .member {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s;
}
.team .member:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.avatar {
  width: 72px; height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(99,102,241,0.4);
}
.member h4 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
}
.member p {
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
}

/* =============================================
   CONTACT HEADER
   ============================================= */
.contact-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.contact-header h2 { margin-bottom: 16px; }
.contact-header .section-lead { margin: 0 auto; }

/* =============================================
   PROCESS — Come funziona
   ============================================= */
.process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 56px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.process-num {
  width: 36px; height: 36px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.process-step h4 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}
.process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.process-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  opacity: 0.5;
}
.process-arrow svg { width: 24px; height: 24px; }

/* =============================================
   FORM CONTATTI
   ============================================= */
.form-block {
  background: linear-gradient(135deg, var(--bg-section-alt), var(--bg-card));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
.form-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 60%);
  pointer-events: none;
}
.form-left, .form-right { position: relative; z-index: 1; }
.form-title {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 14px;
}
.segs {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.seg {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 14px 18px;
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex; flex-direction: column; gap: 3px;
}
.seg:hover {
  border-color: var(--accent-light);
  background: rgba(165,168,255,0.05);
}
.seg-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.seg-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.seg.on {
  background: var(--gradient-soft);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(99,102,241,0.25);
}
.seg.on .seg-title { color: #fff; }
.seg.on .seg-sub { color: var(--accent-soft); }
.contacts {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  margin-top: 8px;
}
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-row:last-child { border-bottom: none; }
.contact-row svg {
  width: 18px; height: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row strong {
  color: var(--text-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.contact-row span {
  color: var(--text-muted);
  font-size: 12px;
}
.form-section-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.form-section-title[hidden] { display: none; }
.form-section-title span {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.form-section-title small {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid-2 .form-row[hidden] { display: none; }
.form-row {
  margin-bottom: 16px;
}
.form-row[hidden] { display: none; }
.form-row label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-row label[data-label-for][hidden] { display: none; }
.form-row .req {
  color: var(--accent-light);
  font-weight: 700;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}
.form-row input::placeholder, .form-row textarea::placeholder {
  color: var(--text-muted);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.18);
}
.privacy {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 16px 0 20px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.privacy input { margin-top: 3px; accent-color: var(--accent); }
.privacy a { color: var(--accent-light); text-decoration: underline; }
.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  background: rgba(16,185,129,0.12);
  color: var(--success);
  border: 1px solid rgba(16,185,129,0.3);
}
.form-status.err {
  background: rgba(239,68,68,0.12);
  color: #f87171;
  border-color: rgba(239,68,68,0.3);
}

/* =============================================
   FAQ — Domande frequenti committenti
   ============================================= */
.faq {
  margin-top: 64px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.faq h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0;
  transition: all 0.25s;
}
.faq-item[open] {
  background: var(--bg-card-hover);
  border-color: var(--accent);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  position: relative;
  padding-right: 40px;
  line-height: 1.4;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-light);
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--accent);
}
.faq-item p {
  padding: 0 18px 18px;
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-logo { margin-bottom: 16px; }
.footer h5 {
  font-size: 12px;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer p a { color: var(--text-secondary); transition: color 0.2s; }
.footer p a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 32px 0;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent-light); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 980px) {
  .hero { padding: 56px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 38px; }
  .kpis-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .kpi { padding: 12px 20px; border-right: none; }
  .kpi:nth-child(2n) { border-right: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-vantaggi { grid-template-columns: repeat(2, 1fr); }
  .form-block { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .process { grid-template-columns: 1fr; gap: 12px; }
  .process-arrow { transform: rotate(90deg); padding: 4px 0; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .menu { display: none; }
  .menu-toggle { display: flex; }
  h2 { font-size: 28px; }
  .section { padding: 60px 0; }
  .manifesto { padding: 40px 28px; }
  .manifesto p { font-size: 17px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
}

@media (max-width: 540px) {
  .grid-5 { grid-template-columns: 1fr; }
  .grid-vantaggi { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 20px 0; }
  .hero h1 { font-size: 30px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; justify-content: center; }
}
