/* ════════════════════════════════════════════
   ProntoSpurghi24 — Stylesheet
   Aesthetic: Industrial precision · Navy + Yellow
   Font: Barlow Condensed (display) + Barlow (body)
   ════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:        #1a2744;
  --navy-dark:   #0f1a30;
  --navy-mid:    #243158;
  --yellow:      #F5C400;
  --yellow-dark: #d4a800;
  --yellow-light:#fff6cc;
  --white:       #ffffff;
  --off-white:   #f4f6f9;
  --text:        #2c3e50;
  --text-light:  #5a6a7e;
  --border:      #dde3ed;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(26,39,68,.08);
  --shadow-md:   0 6px 24px rgba(26,39,68,.12);
  --shadow-lg:   0 16px 48px rgba(26,39,68,.18);
  --transition:  0.25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--yellow);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(245,196,0,.35);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,196,0,.45);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(245,196,0,.08);
}
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION COMMONS ── */
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.75); }
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245,196,0,.12);
  border: 1px solid rgba(245,196,0,.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label--light {
  color: var(--yellow);
  background: rgba(245,196,0,.15);
}

/* ════════════════════
   COMING SOON BAR
   ════════════════════ */
.coming-soon-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 10px 24px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.coming-soon-bar strong { color: var(--yellow); }
.coming-soon-bar a { color: var(--yellow); font-weight: 600; text-decoration: underline; }
.cs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

/* ════════════════════
   HEADER
   ════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-image {
    height: 80px; /* Regola l'altezza come preferisci */
    width: auto;  /* Mantiene le proporzioni corrette */
    display: block;
    object-fit: contain;
}
.logo-icon { width: 42px; height: 42px; }
.logo-icon--sm { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-num { color: var(--yellow); }
.logo-sub {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--yellow); }
.main-nav a:hover::after { width: 100%; }
.cta-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all var(--transition);
  flex-shrink: 0;
}
.cta-header svg { width: 16px; height: 16px; }
.cta-header:hover { background: var(--yellow); color: var(--navy-dark); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ════════════════════
   HERO
   ════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,196,0,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.03) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.015) 40px,
      rgba(255,255,255,.015) 41px
    );
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,196,0,.15);
  border: 1px solid rgba(245,196,0,.35);
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s infinite;
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-title em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat span { font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pipe-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
}
.pipe-outer {
  width: 200px; height: 80px;
  border: 3px solid rgba(245,196,0,.4);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pipe-inner {
  width: 180px; height: 40px;
  background: rgba(245,196,0,.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.flow-anim {
  position: absolute;
  top: 50%; left: -60%;
  transform: translateY(-50%);
  width: 60%; height: 60%;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,.4), transparent);
  border-radius: 50%;
  animation: flow 2.5s linear infinite;
}
@keyframes flow {
  0% { left: -60%; }
  100% { left: 120%; }
}
.camera-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
}
.camera-icon svg { width: 48px; height: 48px; }
.pipe-labels {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
}
.pipe-label {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  padding: 4px 12px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pipe-label--ok { color: #4ade80; background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25); }
.pipe-arrow { color: rgba(255,255,255,.4); font-size: 1.2rem; }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ════════════════════
   SERVIZI
   ════════════════════ */
.servizi { background: var(--off-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-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.servizio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background var(--transition);
}
.servizio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.servizio-card:hover::before { background: var(--yellow); }
.servizio-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.servizio-card--featured::before { background: var(--yellow); }
.servizio-card--featured h3 { color: var(--white); }
.servizio-card--featured p { color: rgba(255,255,255,.75); }
.servizio-card--featured .card-features li { color: rgba(255,255,255,.8); }
.servizio-card--featured .card-features li::before { background: var(--yellow); }
.card-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.card-icon { width: 56px; height: 56px; margin-bottom: 20px; }
.card-icon svg { width: 100%; height: 100%; }
.servizio-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.servizio-card p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-features { display: flex; flex-direction: column; gap: 6px; }
.card-features li {
  font-size: .88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ════════════════════
   COME LAVORIAMO
   ════════════════════ */
.come-lavoriamo {
  background: var(--navy);
  color: var(--white);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  padding: 32px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.step:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  opacity: .7;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.65; }
.step-arrow {
  align-self: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,.2);
  padding: 0 4px;
  flex-shrink: 0;
}

/* ════════════════════
   ZONE
   ════════════════════ */
.zone { background: var(--white); }
.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.zone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 24px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.zone-card:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
  transform: translateY(-2px);
}
.zone-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  background: var(--yellow);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.zone-note { font-size: .78rem; color: var(--text-light); }

/* ════════════════════
   PERCHÉ
   ════════════════════ */
.perche { background: var(--navy-dark); color: var(--white); }
.perche-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.perche-text h2 { color: var(--white); margin-bottom: 20px; }
.perche-text p { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.perche-list { display: flex; flex-direction: column; gap: 14px; }
.perche-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
}
.perche-list li svg { width: 20px; height: 20px; flex-shrink: 0; }
.trust-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(245,196,0,.2);
}
.trust-item {
  background: rgba(255,255,255,.05);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: background var(--transition);
}
.trust-item:hover { background: rgba(245,196,0,.1); }
.trust-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.trust-label { font-size: .85rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ════════════════════
   CONTATTI
   ════════════════════ */
.contatti { background: var(--off-white); }
.contatti-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--yellow); }
.contact-block div { display: flex; flex-direction: column; gap: 4px; }
.contact-block strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-block a, .contact-block span {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.5;
}
.contact-block a:hover { color: var(--navy); }

/* FORM */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--navy);
}
.form-check label {
  text-transform: none;
  font-family: 'Barlow', sans-serif;
  font-size: .88rem;
  color: var(--text-light);
  font-weight: 400;
}
.form-check label a { color: var(--navy); text-decoration: underline; }

/* ════════════════════
   FOOTER
   ════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4 {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact h4 {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: opacity var(--transition);
}
.footer-phone svg { width: 18px; height: 18px; }
.footer-phone:hover { opacity: .8; }
.footer-email {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--yellow); }
.footer-orari { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }

/* ════════════════════
   STICKY CTA
   ════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 12px 16px;
  background: var(--white);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--yellow);
  color: var(--navy-dark);
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}
.sticky-cta-btn svg { width: 20px; height: 20px; }

/* ════════════════════
   RESPONSIVE
   ════════════════════ */
@media (max-width: 1024px) {
  .servizi-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .perche-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-box { max-width: 400px; }
  .contatti-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .main-nav, .cta-header { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero { padding: 72px 0 100px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .servizi-grid { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .zone-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .contact-form { padding: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
