/* =========================================================
   Elettrodomestici Service — Bombana Gian Luca
   Palette: blu navy + viola/magenta (dal logo) + caldi
   Stile: caldo, rassicurante, professionale
   ========================================================= */

:root {
  /* Colori principali (dal logo) */
  --blu: #2a4a8b;
  --blu-scuro: #1d3566;
  --blu-chiaro: #4a6db0;
  --viola: #6b3a8c;
  --viola-scuro: #4d2865;
  --viola-chiaro: #8e5cad;

  /* Toni caldi neutri */
  --crema: #faf6ef;
  --crema-scuro: #f3ecdf;
  --sabbia: #e8dfc9;
  --carta: #ffffff;

  /* Testo */
  --testo: #1f2235;
  --testo-soft: #525670;
  --testo-tenue: #8a8ea4;

  /* Stato */
  --whatsapp: #25d366;
  --whatsapp-scuro: #128c7e;
  --success: #2d8a4f;
  --error: #c4453d;

  /* Gradienti firma */
  --gradient-brand: linear-gradient(135deg, var(--blu) 0%, var(--viola) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(42, 74, 139, 0.04) 0%, rgba(107, 58, 140, 0.04) 100%);

  /* Layout */
  --max-width: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(29, 53, 102, 0.06);
  --shadow-md: 0 8px 24px rgba(29, 53, 102, 0.08);
  --shadow-lg: 0 16px 48px rgba(29, 53, 102, 0.12);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Font */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--testo);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blu); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--viola); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TIPOGRAFIA ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--testo);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; line-height: 1.3; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--viola);
  margin-bottom: 12px;
}

.accent { color: var(--viola); font-style: italic; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(29, 53, 102, 0.08);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; transition: transform var(--transition); }
.logo-link:hover .logo-img { transform: scale(1.03); }

.main-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--testo);
  padding: 8px 0;
  position: relative;
}
.nav-list a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition);
}
.nav-list a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--testo);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 4px 14px rgba(42, 74, 139, 0.25);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 74, 139, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--carta);
  color: var(--blu);
  border: 1.5px solid rgba(42, 74, 139, 0.15);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--blu);
  color: var(--blu);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  color: white;
  background: #1fb858;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-sm {
  background: var(--whatsapp);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}
.btn-whatsapp-sm::after { display: none !important; }
.btn-whatsapp-sm:hover { background: #1fb858; color: white; }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-circle-1 {
  width: 500px; height: 500px;
  background: var(--blu);
  top: -120px; left: -120px;
}
.hero-circle-2 {
  width: 600px; height: 600px;
  background: var(--viola);
  bottom: -200px; right: -150px;
  opacity: 0.25;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 60vh;
}
.hero-content { max-width: 780px; }

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(107, 58, 140, 0.08);
  border: 1px solid rgba(107, 58, 140, 0.15);
  color: var(--viola);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s both;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--testo-soft);
  margin-bottom: 36px;
  max-width: 620px;
  animation: fadeUp 0.7s 0.25s both;
}
.hero-subtitle strong { color: var(--testo); font-weight: 600; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.4s both;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  animation: fadeUp 0.7s 0.55s both;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--testo-soft);
  font-weight: 500;
}
.hero-trust svg { color: var(--success); flex-shrink: 0; }

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

/* ========== SEZIONI GENERICHE ========== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p {
  font-size: 1.1rem;
  color: var(--testo-soft);
  line-height: 1.6;
}

/* ========== SERVIZI ========== */
.servizi {
  background: var(--carta);
}
.grid-servizi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.card-servizio {
  background: var(--crema);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card-servizio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card-servizio:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--carta);
  border-color: rgba(42, 74, 139, 0.08);
}
.card-servizio:hover::before { transform: scaleX(1); }

.card-illustration {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 180px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.card-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}
.card-servizio:hover .card-illustration {
  transform: translateY(-4px) scale(1.04);
}
.card-servizio h3 {
  margin-bottom: 12px;
  color: var(--testo);
  text-align: center;
}
.card-servizio p {
  color: var(--testo-soft);
  font-size: 0.97rem;
  text-align: center;
}

.servizi-cta {
  text-align: center;
  padding: 40px;
  background: var(--gradient-soft);
  border-radius: var(--radius);
}
.servizi-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--testo);
}

/* ========== PERCHÉ NOI ========== */
.perche-noi {
  background: var(--crema);
}
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--carta);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(29, 53, 102, 0.06);
  transition: all var(--transition);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107, 58, 140, 0.15);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--viola);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}
.feature p { color: var(--testo-soft); font-size: 0.95rem; }

/* ========== ZONE ========== */
.zone { background: var(--carta); }
.zone-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.zone-text .eyebrow { margin-bottom: 12px; }
.zone-text h2 { margin-bottom: 20px; }
.zone-lead {
  font-size: 1.1rem;
  color: var(--testo-soft);
  margin-bottom: 28px;
}
.zone-lead strong { color: var(--testo); font-weight: 600; }

.zone-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-bottom: 28px;
}
.zone-list li {
  padding-left: 24px;
  position: relative;
  font-weight: 500;
  color: var(--testo);
}
.zone-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.zone-note { font-size: 0.95rem; color: var(--testo-soft); }

.zone-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-card {
  background: var(--gradient-soft);
  border: 2px solid rgba(42, 74, 139, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 360px;
  transform: rotate(-2deg);
  transition: all var(--transition);
}
.map-card:hover {
  transform: rotate(0) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.map-pin {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  box-shadow: 0 8px 24px rgba(42, 74, 139, 0.3);
  animation: pulse 2.5s ease-in-out infinite;
}
.map-pin svg { width: 40px; height: 40px; }
.map-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blu);
  margin-bottom: 8px;
}
.map-label span {
  font-size: 0.95rem;
  color: var(--testo-soft);
  line-height: 1.5;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(42, 74, 139, 0.3), 0 0 0 0 rgba(107, 58, 140, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(42, 74, 139, 0.3), 0 0 0 18px rgba(107, 58, 140, 0); }
}

/* ========== CONTATTI ========== */
.contatti { background: var(--crema); }

.contatti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.contatto-card {
  position: relative;
  background: var(--carta);
  padding: 32px 24px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(29, 53, 102, 0.06);
  text-decoration: none;
  color: var(--testo);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all var(--transition);
  overflow: hidden;
}
.contatto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.contatto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107, 58, 140, 0.15);
  color: var(--testo);
}
.contatto-card:hover::before { transform: scaleX(1); }
.contatto-card-static {
  cursor: default;
}
.contatto-card-static:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: rgba(29, 53, 102, 0.06);
}
.contatto-card-static:hover::before { transform: scaleX(0); }

.contatto-card-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(18, 140, 126, 0.08));
  border-color: rgba(37, 211, 102, 0.25);
}
.contatto-card-whatsapp:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(18, 140, 126, 0.12));
  border-color: var(--whatsapp);
}
.contatto-card-whatsapp::before {
  background: var(--whatsapp);
}
.contatto-card-whatsapp .contatto-icon {
  background: var(--whatsapp);
  color: white;
}

.contatto-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blu);
  margin-bottom: 18px;
  transition: all var(--transition);
}
.contatto-icon svg { width: 28px; height: 28px; }
.contatto-card:not(.contatto-card-static):not(.contatto-card-whatsapp):hover .contatto-icon {
  background: var(--gradient-brand);
  color: white;
}

.contatto-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--testo-tenue);
  font-weight: 600;
  margin-bottom: 6px;
}
.contatto-value {
  display: block;
  font-size: 1.1rem;
  color: var(--testo);
  margin-bottom: 8px;
  word-break: break-word;
  line-height: 1.3;
  font-weight: 600;
}
.contatto-email {
  font-size: 0.95rem;
}
.contatto-hint {
  display: block;
  font-size: 0.88rem;
  color: var(--testo-soft);
}
.contatto-arrow {
  position: absolute;
  bottom: 20px;
  right: 22px;
  font-size: 1.4rem;
  color: var(--viola);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.contatto-card:hover .contatto-arrow {
  opacity: 1;
  transform: translateX(0);
}
.contatto-card-whatsapp .contatto-arrow {
  color: var(--whatsapp-scuro);
}


/* ========== FOOTER ========== */
.site-footer {
  background: var(--blu-scuro);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 30px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.15);
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 320px;
}
.site-footer h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer ul { list-style: none; }
.site-footer li {
  margin-bottom: 10px;
  font-size: 0.93rem;
  line-height: 1.5;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.site-footer a:hover { color: white; }
.footer-fiscal li {
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ========== FAB WHATSAPP ========== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: floatIn 0.6s 1s both;
}
.whatsapp-fab:hover {
  background: #1fb858;
  color: white;
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab svg { width: 32px; height: 32px; }
@keyframes floatIn {
  from { opacity: 0; transform: scale(0) rotate(-90deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* ========== MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 53, 102, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
.modal-content {
  position: relative;
  background: var(--carta);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.3s ease;
}
.modal-content h3 { margin-bottom: 20px; }
.modal-content p { margin-bottom: 14px; color: var(--testo-soft); font-size: 0.95rem; }
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--testo-soft);
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 50%;
  transition: all var(--transition);
  line-height: 1;
}
.modal-close:hover { background: var(--crema); color: var(--testo); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--carta);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(29, 53, 102, 0.08);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.4s 0.5s both;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  font-size: 0.9rem;
  color: var(--testo-soft);
  margin: 0;
  flex: 1;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .zone-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-trust { gap: 14px; }
  .hero-trust li { font-size: 0.9rem; }

  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    background: var(--carta);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: all var(--transition);
    border: 1px solid rgba(29, 53, 102, 0.08);
  }
  .nav-list.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-list a { padding: 14px 16px; border-radius: var(--radius-sm); }
  .nav-list a:hover { background: var(--crema); }
  .nav-list a::after { display: none; }
  .nav-list .btn-whatsapp-sm { text-align: center; justify-content: center; }

  .logo-img { height: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .zone-list { grid-template-columns: 1fr; }
  .whatsapp-fab { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 12px; }
  .modal-content { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }
  .hero-tag { font-size: 0.78rem; padding: 6px 14px; }
  .hero-subtitle { font-size: 1.05rem; }
  .card-servizio, .feature { padding: 28px 22px; }
  .servizi-cta { padding: 28px 20px; }
  .map-card { padding: 36px 24px; }
}
