/* ==========================================================
   CleanPro Pisa - Impresa di Pulizie Professionale
   Demo realizzata da Future Is Now - futureisnow.cloud
   Palette: Azzurro #0EA5E9 | Blu scuro #0369A1 | Giallo lemon #FACC15
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --blue: #0EA5E9;
  --blue-dark: #0369A1;
  --blue-deeper: #0C4A6E;
  --blue-soft: rgba(14, 165, 233, 0.1);
  --blue-light: #BAE6FD;
  --yellow: #FACC15;
  --yellow-dark: #CA8A04;
  --yellow-soft: rgba(250, 204, 21, 0.15);
  --bg: #F0F9FF;
  --white: #FFFFFF;
  --ink: #0F172A;
  --ink-soft: #64748B;
  --border: #E0F2FE;
  --shadow-sm: 0 1px 3px rgba(14, 165, 233, 0.07);
  --shadow-md: 0 4px 16px rgba(14, 165, 233, 0.12);
  --shadow-lg: 0 12px 32px rgba(14, 165, 233, 0.18);
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --transition: 0.25s ease;
  --radius-pill: 9999px;
  --radius-card: 18px;
  --radius-btn: 10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* --- NAV --- */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-icon {
  font-size: 20px;
  color: var(--blue);
}
.brand-logo > .brand-name,
.brand-logo > .brand-sub {
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}
.brand-logo .brand-name,
.brand-logo .brand-sub {
  display: block;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  box-shadow: var(--shadow-md);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue);
}
.btn-ghost:hover {
  background: var(--blue-soft);
}
.btn-accent {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn-accent:hover {
  background: #EAB308;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.35);
}
.btn-large { padding: 18px 44px; font-size: 17px; }
.btn-block { width: 100%; }

/* --- EYEBROW --- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-dark);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.eyebrow-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}
.eyebrow-banner {
  color: var(--yellow);
  background: rgba(250, 204, 21, 0.15);
}

/* --- HERO --- */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(160deg, var(--bg) 0%, #E0F2FE 50%, var(--white) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero h1 em {
  color: var(--blue-dark);
  font-style: italic;
  font-weight: 800;
}
.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-trust span { font-size: 13px; color: var(--ink-soft); }
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.hero-image-tag span { font-size: 28px; }
.hero-image-tag p { font-size: 13px; line-height: 1.4; color: var(--ink); }

/* --- INTRO STATEMENT --- */
.intro-statement {
  padding: 80px 0;
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
}
.intro-quote {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto;
}
.intro-quote em {
  color: var(--yellow);
  font-style: italic;
}

/* --- SECTIONS BASE --- */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-head h2 em { color: var(--blue-dark); font-style: italic; }
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --- CHI SIAMO --- */
.section-chi { background: var(--bg); }
.chi-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.chi-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.chi-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.chi-text h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.chi-text h2 em { color: var(--blue-dark); font-style: italic; }
.chi-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}
.credentials { margin-top: 28px; }
.credentials li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.credentials li:last-child { border-bottom: none; }

/* --- SERVIZI --- */
.section-servizi { background: var(--white); }
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servizio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.servizio-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  background: #F0F9FF;
}
.servizio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.servizio-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.servizio-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.servizio-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-dark);
  background: var(--blue-soft);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.servizio-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.servizio-desc {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.65;
  flex-grow: 1;
}
.servizio-card ul { margin-top: auto; }
.servizio-card ul li {
  padding: 5px 0 5px 22px;
  font-size: 13px;
  position: relative;
  color: var(--ink);
  border-top: 1px solid var(--border);
}
.servizio-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* --- SETTORI --- */
.section-settori { background: var(--bg); }
.settori-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.settore-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.settore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.settore-img {
  height: 180px;
  overflow: hidden;
}
.settore-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.settore-card:hover .settore-img img {
  transform: scale(1.05);
}
.settore-content {
  padding: 24px 20px;
}
.settore-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.settore-content p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* --- PREVENTIVO --- */
.section-preventivo {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
  color: var(--white);
}
.preventivo-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.preventivo-text h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.preventivo-text h2 em { color: var(--yellow); font-style: italic; }
.preventivo-text > p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.65;
  margin-bottom: 40px;
}
.preventivo-promise {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.preventivo-promise > div {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 3px solid var(--yellow);
}
.preventivo-promise strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 2px;
}
.preventivo-promise span {
  font-size: 14px;
  opacity: 0.85;
}
.preventivo-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.preventivo-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}
.preventivo-form label {
  display: block;
  margin-bottom: 16px;
}
.preventivo-form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.preventivo-form input,
.preventivo-form select,
.preventivo-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  transition: var(--transition);
  appearance: auto;
}
.preventivo-form input:focus,
.preventivo-form select:focus,
.preventivo-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

/* --- TESTIMONIANZE --- */
.section-testi { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.testi-stars {
  color: #F59E0B;
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  gap: 14px;
  align-items: center;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  border: 2px solid var(--blue-light);
}
.testi-author strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}
.testi-author span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* --- BANNER / LAVORA CON NOI --- */
.section-banner { padding: 60px 0; background: var(--bg); }
.banner-inner {
  background: var(--ink);
  color: var(--white);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}
.banner-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.banner-inner h2 em { color: var(--yellow); font-style: italic; }
.banner-inner > p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* --- FAQ --- */
.section-faq { background: var(--white); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  padding-right: 40px;
  position: relative;
  list-style: none;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: var(--blue);
  transition: var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
}
.faq-item strong { color: var(--ink); }

/* --- CONTATTI --- */
.section-contatti { background: var(--bg); }
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contatti-text h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.contatti-text h2 em { color: var(--blue-dark); font-style: italic; }
.contatti-text > p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.65;
}
.contatti-info { margin-bottom: 12px; }
.contatti-info > div {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.contatti-info > div:last-child { border-bottom: none; }
.contatti-info span:first-child { font-size: 20px; margin-top: 1px; }
.contatti-info strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contatti-info > div > div { font-size: 15px; color: var(--ink-soft); }
.contatti-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contatti-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contatti-form label {
  display: block;
  margin-bottom: 18px;
}
.contatti-form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contatti-form input,
.contatti-form select,
.contatti-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  transition: var(--transition);
  appearance: auto;
}
.contatti-form input:focus,
.contatti-form select:focus,
.contatti-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.form-check {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px !important;
}
.form-check input { width: auto !important; margin-top: 3px; flex-shrink: 0; }
.form-privacy-link { color: var(--blue); text-decoration: underline; }
.form-promise {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

/* --- FOOTER --- */
.footer {
  background: var(--blue-deeper);
  color: var(--white);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-brand-name {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-sub {
  display: block;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.footer p { font-size: 14px; opacity: 0.8; line-height: 1.6; }
.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--yellow);
}
.footer ul li { padding: 4px 0; }
.footer a { font-size: 14px; opacity: 0.8; transition: var(--transition); }
.footer a:hover { opacity: 1; color: var(--blue-light); }
.footer-legal { margin-top: 12px; }
.footer-legal p { font-size: 12px; opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.65;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- DEMO BADGE --- */
.demo-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #0EA5E9;
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
  font-size: 13px;
  max-width: 380px;
  z-index: 200;
  line-height: 1.4;
}
.demo-badge a { color: var(--white); text-decoration: underline; font-weight: 600; }
.demo-badge a:hover { color: var(--blue-light); }

/* --- RESPONSIVE: 1024px --- */
@media (max-width: 1024px) {
  .servizi-grid { grid-template-columns: repeat(2, 1fr); }
  .settori-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- RESPONSIVE: 768px --- */
@media (max-width: 768px) {
  .hero { padding: 50px 0 64px; }
  .hero-grid,
  .chi-grid,
  .preventivo-inner,
  .contatti-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.4rem; }
  .chi-text h2,
  .preventivo-text h2,
  .contatti-text h2,
  .banner-inner h2 { font-size: 1.9rem; }
  .section-head h2,
  .intro-quote { font-size: 1.6rem; }
  section { padding: 64px 0; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 99;
    gap: 8px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-cta { align-self: stretch; text-align: center; }
  .servizi-grid { grid-template-columns: 1fr; }
  .settori-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-trust { gap: 20px; }
  .hero-image img { height: 360px; }
  .chi-image img { height: 360px; }
  .banner-inner { padding: 40px 24px; border-radius: 16px; }
  .demo-badge { right: 8px; left: 8px; max-width: none; font-size: 12px; bottom: 8px; }
  .preventivo-form-wrap { padding: 28px 20px; }
  .contatti-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .settori-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
}
