/* =========================================================
   Social Plan Group — foglio di stile unico

   Stessa grafica dei report mensili e dei preventivi: carta
   #ece9e3, card crema #f6f5f0, fucsia #ec1b6f, blu polvere
   #859db9. Anton per i titoli, Bebas Neue per occhielli ed
   etichette, Inter per il testo.
   Se questi valori cambiano nei documenti (modello-report e
   preventivi), vanno cambiati anche qui.
   ========================================================= */

:root {
  --ink: #1c1c1b;
  --ink-soft: #3a3a38;
  --ink-faint: #7a7873;
  --paper: #ece9e3;
  --card: #f6f5f0;
  --sand: #e3dfd6;
  --sand-deep: #d8d4cc;
  --line: #d8d4cc;
  --fucsia: #ec1b6f;
  --fucsia-soft: #ec4285;
  --fucsia-dark: #c10e52;
  --blu: #859db9;
  --blu-deep: #4f6480;
  --giallo: #f7e08a;

  --max: 1200px;
  --gut: 24px;
  --r: 6px;
  --r-lg: 15px;   /* i 4 mm delle card dei report */

  --f-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --f-label: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow: 0 1px 2px rgba(28, 28, 27, .04), 0 6px 22px rgba(28, 28, 27, .07);
  --shadow-lg: 0 2px 4px rgba(28, 28, 27, .05), 0 18px 46px rgba(28, 28, 27, .11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2 {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.07;
  letter-spacing: -.01em;
  margin: 0 0 .45em;
}

/* Anton anche nei titoletti, come nelle proposte dei report: stesso
   carattere dei documenti, ma non maiuscolo, che qui sarebbe gridato */
h3 {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: none;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}

h4 {
  font-family: var(--f-body);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

/* L'accento: parola in fucsia dentro il titolo, come nei report e nei
   preventivi. Nella prima schermata resta il blocco pieno (vedi .hero) */
h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--fucsia);
}

/* Riga nera di separazione, la firma dei preventivi */
.rule { height: 3px; background: var(--ink); margin: 0 0 26px; }
.rule.thin { height: 1px; background: var(--line); }

p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: 780px; }

.eyebrow {
  font-family: var(--f-label);
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--fucsia);
  line-height: 1;
  margin: 0 0 .85rem;
  display: block;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: var(--ink);
  margin-bottom: 14px;
}
.eyebrow.on-dark, .eyebrow.blu { color: var(--blu); }
.eyebrow.on-dark::before, .band:not(.sand) .eyebrow::before, .hero .eyebrow::before { background: var(--fucsia); }
.eyebrow.nuda::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink-soft); }

section { padding-block: clamp(56px, 8vw, 110px); }
section.tight { padding-block: clamp(40px, 5vw, 70px); }

/* ---------- bottoni ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 15px 28px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--fucsia); color: #fff; }
.btn-primary:hover { background: var(--fucsia-dark); }
.btn-ghost { border-color: currentColor; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-wa { background: #25D366; color: #0B2B14; }
.btn-wa:hover { background: #1FBE59; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(236, 233, 227, .97);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 86px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; letter-spacing: -.01em; }
.brand img { height: 66px; width: auto; display: block; }
@media (max-width: 600px) { .brand img { height: 52px; } }
.brand span { font-size: 1.05rem; }
.brand b { color: var(--fucsia); font-weight: 800; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: var(--r);
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--sand-deep); color: var(--ink); }

.has-drop { position: relative; }
.drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: block; padding: 10px 12px; font-size: .9rem; line-height: 1.3; }
.drop a small { display: block; color: var(--ink-faint); font-size: .78rem; font-weight: 400; margin-top: 2px; }

.lang { display: flex; gap: 2px; align-items: center; border: 1px solid var(--line); border-radius: var(--r); padding: 3px; }
.lang a { font-family: var(--f-label); font-size: .95rem; letter-spacing: .06em; padding: 4px 9px 3px; border-radius: 3px; text-decoration: none; color: var(--ink-faint); }
.lang a[aria-current="true"] { background: var(--ink); color: #fff; }

.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,.58) 0%, rgba(20,17,15,.38) 40%, rgba(20,17,15,.95) 100%);
}
.hero-in { position: relative; z-index: 2; padding-block: clamp(90px, 14vw, 170px); max-width: 860px; }
/* Il blocco fucsia occupa piu' spazio del testo: qui le righe hanno bisogno
   di piu' aria che negli altri titoli, o il blocco mangia la riga di sopra */
.hero h1 { color: #fff; line-height: 1.3; }
/* Nella prima schermata la parola chiave resta sul blocco fucsia pieno:
   e' l'unico punto in cui il sito usa il segno delle grafiche Instagram */
.hero h1 em {
  background: var(--fucsia);
  color: #fff;
  padding: .02em .15em .05em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero .lead { color: rgba(255,255,255,.85); max-width: 620px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-facts div strong { display: block; font-family: var(--f-display); font-size: 2.3rem; line-height: 1; letter-spacing: -.01em; color: var(--fucsia); }
.hero-facts div span { display: block; font-family: var(--f-label); font-size: 1rem; line-height: 1.15; text-transform: uppercase; letter-spacing: .08em; color: var(--blu); margin-top: 5px; }

/* hero interne, più basse */
.hero.page .hero-in { padding-block: clamp(70px, 10vw, 120px); }

/* ---------- griglie ---------- */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 30px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--fucsia); }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.card .ico { width: 42px; height: 42px; margin-bottom: 18px; color: var(--fucsia); }
.card .more { margin-top: auto; padding-top: 18px; font-family: var(--f-label); font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; color: var(--fucsia); }

.card.dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.card.dark p { color: rgba(255,255,255,.72); }

/* ---------- banda scura ---------- */
.band { background: var(--ink); color: #fff; }
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(255,255,255,.75); }
.band.sand { background: var(--sand); color: var(--ink); }
.band.sand h2, .band.sand h3, .band.sand h4 { color: var(--ink); }
.band.sand p { color: var(--ink-soft); }
.band.sand .checks li { color: var(--ink-soft); }
.band.sand .checks li::before { background: var(--fucsia); }
.band.sand .stat span { color: var(--ink-faint); }
.band.sand .stat strong { color: var(--fucsia); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat strong { display: block; font-family: var(--f-display); font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1; color: var(--fucsia); }
.band .stat strong { color: var(--fucsia); }
.stat span { display: block; font-family: var(--f-label); font-size: 1.05rem; line-height: 1.2; text-transform: uppercase; letter-spacing: .08em; color: var(--blu); margin-top: 6px; }
.band .stat span { color: var(--blu); }

/* ---------- passi numerati ---------- */
.steps { counter-reset: s; display: grid; gap: 4px; }
.step {
  counter-increment: s;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.step::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--f-display);
  font-size: 2.2rem;
  line-height: .95;
  color: var(--fucsia);
}
.step h3 { margin-bottom: .2em; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- elenco spuntato ---------- */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 32px; color: var(--ink-soft); }
.checks li::before {
  content: "";
  position: absolute; left: 0; top: .45em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--fucsia);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
}
.band .checks li { color: rgba(255,255,255,.8); }
.band .checks li::before { background: var(--blu); }

/* ---------- due colonne testo+media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split img { border-radius: var(--r-lg); box-shadow: var(--shadow); }
.split.rev > *:first-child { order: 2; }

/* ---------- clienti ---------- */
.clients { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 16px; }
.client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 26px 18px 20px;
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  background: var(--card);
  text-decoration: none;
  text-align: center;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.client:hover { border-color: var(--fucsia); transform: translateY(-3px); box-shadow: var(--shadow); }
.client .marca { height: 82px; width: 100%; display: grid; place-items: center; }
.client .marca img { max-height: 82px; width: auto; object-fit: contain; }
.client .marca > span {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: 1.3rem; line-height: 1.1; color: var(--ink);
}
.client b { display: block; font-family: var(--f-label); font-size: 1.1rem; font-weight: 400; letter-spacing: .05em; text-transform: uppercase; line-height: 1.1; }
.client small { color: var(--ink-faint); font-size: .78rem; display: block; margin-top: 4px; }
.client:hover small { color: var(--fucsia); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 18px; background: var(--sand); }
.marquee-track { display: flex; gap: 42px; width: max-content; animation: slide 42s linear infinite; will-change: transform; }
.marquee span { font-family: var(--f-label); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .07em; color: var(--ink-soft); white-space: nowrap; }
.marquee span::after { content: "•"; margin-left: 42px; color: var(--fucsia); }
@keyframes slide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- galleria del lavoro ---------- */
.galeria { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.galeria figure { margin: 0; overflow: hidden; border-radius: var(--r); background: var(--sand); }
.galeria img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .5s ease;
}
.galeria figure:hover img { transform: scale(1.06); }
@media (max-width: 860px) { .galeria { grid-template-columns: repeat(2, 1fr); } }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; }
.member .ph {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 2.4rem; color: var(--fucsia);
  margin-bottom: 16px;
}
.member .ph-foto { display: block; width: 100%; height: auto; aspect-ratio: 400 / 575; object-fit: cover; border-radius: 6px; margin-bottom: 16px; }
.member b { display: block; font-size: 1.05rem; }
.member small { color: var(--blu); font-family: var(--f-label); font-size: 1rem; letter-spacing: .07em; text-transform: uppercase; }
.member p { font-size: .9rem; color: var(--ink-soft); margin-top: 8px; }

/* ---------- faq ---------- */
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq details[open] summary { color: var(--fucsia); }
.faq summary {
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--fucsia); }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 12px 0 0; color: var(--ink-soft); }

/* ---------- blog ---------- */
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 26px; }
.post { border: 1px solid transparent; border-radius: var(--r-lg); overflow: hidden; text-decoration: none; background: var(--card); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post .thumb { aspect-ratio: 16/10; background: var(--sand); overflow: hidden; }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-family: var(--f-label); font-size: 1rem; line-height: 1; letter-spacing: .07em; text-transform: uppercase; color: var(--blu); }
.post h3 { font-size: 1.25rem; margin: 10px 0 8px; }
.post p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

.article { max-width: 720px; margin-inline: auto; }
.article h2 { margin-top: 1.8em; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.article h3 { margin-top: 1.4em; }
.article ul, .article ol { color: var(--ink-soft); padding-left: 1.2em; }
.article li { margin-bottom: .5em; }
.article blockquote {
  margin: 2em 0; padding: 2px 0 2px 24px;
  border-left: 4px solid var(--fucsia);
  font-family: var(--f-display); font-weight: 400; font-style: normal;
  text-transform: uppercase; font-size: 1.6rem; line-height: 1.1; letter-spacing: -.01em;
}
.article blockquote em { font-style: normal; color: var(--fucsia); }
.article blockquote p:last-child { margin-bottom: 0; }

/* ---------- contatto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); }
.contact-card { border: 1px solid transparent; border-radius: var(--r-lg); padding: 28px; background: var(--card); }
.contact-card a { color: var(--fucsia); font-weight: 600; text-decoration: none; }
form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
form input, form textarea, form select {
  width: 100%; padding: 13px 15px; margin-bottom: 16px;
  border: 1px solid var(--line); border-radius: var(--r);
  font-family: inherit; font-size: .97rem; background: #fff; color: var(--ink);
}
form input:focus, form textarea:focus, form select:focus { outline: 2px solid var(--fucsia); outline-offset: 1px; border-color: transparent; }
form textarea { min-height: 130px; resize: vertical; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: 70px 34px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: var(--blu); font-family: var(--f-label); font-size: 1.05rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-brand img { height: 66px; width: auto; margin-bottom: 18px; }

/* ---------- whatsapp flottante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- banner cookie ---------- */
.cookie-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 80;
  max-width: 760px; margin: 0 auto; padding: 18px 20px;
  background: var(--card); color: var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 18px; font-size: .9rem; line-height: 1.5;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--fucsia-dark); }
.cookie-bottoni { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bottoni .btn { padding: 10px 18px; font-size: .88rem; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; left: 12px; right: 12px; bottom: 12px; }
  .cookie-bottoni .btn { flex: 1; justify-content: center; }
}

/* ---------- briciole ---------- */
.crumbs { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 86px 0 auto; z-index: 50;
    flex-direction: column; align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 26px;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .drop { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; grid-template-columns: 1fr; box-shadow: none; border: 0; padding: 0 0 0 14px; }
  .has-drop:hover .drop, .has-drop:focus-within .drop { transform: none; }
  .drop a small { display: none; }
  .split, .contact-grid, .g2 { grid-template-columns: 1fr; }
  .split.rev > *:first-child { order: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .g3, .g4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 40px 1fr; gap: 14px; }
  .hero-facts { gap: 20px; }
}

/* =========================================================
   Pagina di vendita Google Premium (Social Plan Italia)
   ========================================================= */
.largo { width: 100%; justify-content: center; }
.nota-piccola { font-size: .84rem; color: var(--ink-faint); margin: 16px 0 0; }
.band .nota-piccola { color: rgba(255,255,255,.55); }

/* l'offerta: elenco a sinistra, cartellino scuro col prezzo a destra */
.offerta { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.cartellino-prezzo {
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: 34px 30px; position: sticky; top: 96px; box-shadow: var(--shadow-lg);
}
.cartellino-prezzo .nome { font-family: var(--f-label); font-size: 1.25rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blu); }
.cartellino-prezzo .cifra { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.cartellino-prezzo .cifra strong { font-family: var(--f-display); font-weight: 400; font-size: 5rem; line-height: 1; }
.cartellino-prezzo .cifra span { font-family: var(--f-label); font-size: 1.4rem; letter-spacing: .06em; text-transform: uppercase; }
.cartellino-prezzo .anticipo { color: #f7c5d9; margin: 8px 0 24px; }
.cartellino-prezzo .btn + .garanzia-bollo { margin-top: 16px; }
.garanzia-bollo {
  border: 1.5px dashed rgba(255,255,255,.3); border-radius: var(--r);
  padding: 12px 14px; font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: 16px;
}
.garanzia-bollo strong { color: var(--fucsia-soft); }

/* la garanzia: due colonne grandi, cosa si e cosa no */
.garanzia { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.garanzia > div { border-radius: var(--r-lg); padding: 30px 28px; }
.garanzia .si { background: var(--fucsia); }
.garanzia .si h3, .garanzia .si p { color: #fff; }
.garanzia .no { border: 1.5px solid rgba(255,255,255,.22); }
.garanzia p:last-child { margin-bottom: 0; }

/* il simulatore */
.simulatore { background: var(--card); border-radius: var(--r-lg); padding: 30px 28px; }
.simulatore label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; font-size: .95rem; }
.simulatore output { font-family: var(--f-display); font-size: 1.7rem; color: var(--fucsia); }
.simulatore input[type=range] { width: 100%; accent-color: var(--fucsia); margin: 10px 0 4px; }
.sim-scala { display: flex; justify-content: space-between; font-family: var(--f-label); font-size: .95rem; letter-spacing: .05em; color: var(--blu); text-transform: uppercase; }
.sim-risultati { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 3px solid var(--ink); }
.sim-risultati strong { display: block; font-family: var(--f-display); font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.05; }
.sim-risultati span { display: block; font-family: var(--f-label); font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; color: var(--blu); margin-top: 4px; line-height: 1.15; }
.sim-risultati .forte strong { color: var(--fucsia); }

/* Chiara */
.referente { display: grid; grid-template-columns: 180px 1fr; gap: 34px; align-items: center; }
.referente img, .referente .ph { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; }
.referente .ph { background: var(--ink); display: grid; place-items: center; font-family: var(--f-display); font-size: 4rem; color: var(--fucsia); }

/* i pacchetti in arrivo, in grigio */
.in-arrivo {
  background: transparent; border: 1.5px dashed var(--sand-deep); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 6px; color: var(--ink-faint);
}
.in-arrivo h3 { color: var(--ink-faint); margin: 8px 0 0; }
.in-arrivo p { font-size: .93rem; margin: 0; }
.in-arrivo .badge { align-self: flex-start; font-family: var(--f-label); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; background: var(--sand-deep); color: var(--ink-soft); padding: 3px 9px 2px; border-radius: 3px; }
.in-arrivo .prezzo-grigio { font-family: var(--f-display); font-size: 1.6rem; color: var(--ink-faint); margin: 8px 0 12px; }
.in-arrivo .btn { margin-top: auto; justify-content: center; color: var(--ink-soft); background: transparent; font-family: inherit; cursor: pointer; }
.in-arrivo form { margin-top: auto; }
.in-arrivo form label { color: var(--ink-soft); }

@media (max-width: 860px) {
  .offerta, .garanzia { grid-template-columns: 1fr; }
  .cartellino-prezzo { position: static; }
  .sim-risultati { grid-template-columns: 1fr 1fr; }
  .referente { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .referente .eyebrow::before { margin-inline: auto; }
  /* sul telefono il modulo dell'analisi viene prima dell'elenco: chi arriva dalla pubblicita' deve vederlo subito */
  .split.analisi > form { order: -1; }
}

/* landing: modulo nella prima schermata */
.hero.con-modulo .hero-in { max-width: var(--max); display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(50px, 8vw, 110px); }
.hero.con-modulo h1 { font-size: clamp(2.3rem, 5.4vw, 4.2rem); }
.hero.con-modulo .modulo-analisi { color: var(--ink); box-shadow: var(--shadow-lg); }
.hero.con-modulo .modulo-analisi h3 { color: var(--ink); }
.hero.con-modulo .modulo-analisi .nota-piccola { color: var(--ink-faint); }
.hero.con-modulo .hero-facts { margin-top: 28px; }
@media (max-width: 860px) {
  .hero.con-modulo .hero-in { grid-template-columns: 1fr; padding-block: 36px 44px; }
  .hero.con-modulo .lead { margin-bottom: 0; }
  .hero.con-modulo .hero-facts { display: none; }
}
