/* =========================================================
   Spazio+ — foglio di stile
   Identità "editoriale / griglia": bianco + verde smeraldo,
   Space Grotesk (display) + Inter (testo). Nessuna dipendenza.
   ========================================================= */

:root {
  --ink: #0d1411;
  --ink-soft: #51635b;
  --ink-faint: #84978d;
  --bg: #ffffff;
  --bg-soft: #eef3f0;
  --bg-mute: #f6f9f7;
  --line: #dde7e1;
  --line-soft: #e8efea;

  --navy: #08120d;

  --brand: #0f9d6a;
  --brand-deep: #0a6b49;
  --brand-bright: #16c47f;
  --brand-wash: #e6f6ef;
  --brand-ink: #073d2a;

  --accent: #0f9d6a;
  --accent-deep: #0a6b49;
  --accent-soft: #e6f6ef;

  --shadow-sm: 0 1px 2px rgba(13, 20, 17, .05), 0 2px 8px rgba(13, 20, 17, .04);
  --shadow-md: 0 10px 30px rgba(13, 20, 17, .08);
  --shadow-lg: 0 24px 60px rgba(10, 80, 55, .14);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1160px;

  --ff-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

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

.text-accent { color: var(--brand-deep); }

/* ===================== BOTTONI ===================== */
.btn {
  --bg-btn: var(--ink);
  --fg-btn: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: -.01em;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--bg-btn);
  color: var(--fg-btn);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  --bg-btn: var(--brand);
  --fg-btn: #fff;
  box-shadow: 0 10px 24px rgba(15, 157, 106, .28);
}
.btn-primary:hover { --bg-btn: var(--brand-deep); box-shadow: 0 14px 30px rgba(15, 157, 106, .34); }

/* CTA grandi (hero + chiusura) */
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-lg svg { width: 20px; height: 20px; }

.btn-dark { --bg-btn: var(--ink); --fg-btn: #fff; }
.btn-dark:hover { --bg-btn: #1c2a23; }

.btn-ghost {
  --bg-btn: transparent;
  --fg-btn: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-soft); }

.btn-block { width: 100%; justify-content: center; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(13, 20, 17, .05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand span {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -.03em;
  line-height: 1;
}
.brand span small {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a:not(.btn) {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.nav > a:not(.btn):hover { color: var(--ink); background: var(--bg-soft); }
.nav > a[aria-current="page"] { color: var(--brand-deep); background: var(--brand-wash); }
.nav .btn { margin-left: 8px; }

.header-cta { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }

/* ===================== HERO ===================== */
.hero { padding: 70px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  color: var(--brand-deep);
  background: var(--brand-wash);
  border: 1px solid #cdeedd;
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow svg { width: 16px; height: 16px; }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.1rem);
  margin-top: 22px;
}
.hero .lead {
  margin-top: 22px;
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-trust svg { width: 18px; height: 18px; color: var(--brand); }

/* visual hero: "spazio meter" che riempie i metri cubi */
.hero-visual { position: relative; }
.meter-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.meter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--brand-wash), transparent 55%);
  pointer-events: none;
}
.meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 18px;
}
.meter-head .label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-soft);
}
.meter-head .pill {
  font-family: var(--ff-display);
  font-size: .76rem;
  font-weight: 600;
  color: var(--brand-deep);
  background: var(--brand-wash);
  border-radius: 999px;
  padding: 5px 11px;
}
.meter-bars { display: flex; align-items: flex-end; gap: 9px; height: 168px; position: relative; }
.meter-bars .bar {
  flex: 1;
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  transform-origin: bottom;
  transform: scaleY(.12);
  opacity: .9;
  animation: barGrow .9s cubic-bezier(.22, 1, .36, 1) forwards;
}
.meter-bars .bar:nth-child(1) { --h: .45; animation-delay: .05s; }
.meter-bars .bar:nth-child(2) { --h: .7;  animation-delay: .12s; }
.meter-bars .bar:nth-child(3) { --h: .55; animation-delay: .19s; }
.meter-bars .bar:nth-child(4) { --h: .92; animation-delay: .26s; background: linear-gradient(180deg, var(--brand), var(--brand-deep)); }
.meter-bars .bar:nth-child(5) { --h: .68; animation-delay: .33s; }
.meter-bars .bar:nth-child(6) { --h: .82; animation-delay: .40s; }
@keyframes barGrow { to { transform: scaleY(var(--h)); } }

.meter-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  position: relative;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.meter-foot .big {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -.03em;
}
.meter-foot .big small { font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.meter-foot .note { font-size: .82rem; color: var(--ink-soft); text-align: right; }

.float-chip {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 9px;
}
.float-chip svg { width: 18px; height: 18px; color: var(--brand-bright); }

/* ===================== HERO FULL-SCREEN (home) ===================== */
.hero-full {
  position: relative;
  margin-top: -74px;            /* passa sotto l'header sticky */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 96px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(6,16,11,.92) 0%, rgba(6,16,11,.66) 46%, rgba(6,16,11,.32) 100%),
    url('capannone-interno.jpg') center/cover no-repeat;
}
.hero-full .hero-inner { max-width: var(--maxw); }
.hero-full .eyebrow {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(4px);
}
.hero-full h1 {
  color: #fff;
  font-size: clamp(2.9rem, 7vw, 5rem);
  max-width: 16ch;
  margin-top: 22px;
}
.hero-full .text-accent { color: var(--brand-bright); }
.hero-full .lead {
  color: rgba(255,255,255,.9);
  max-width: 54ch;
  margin-top: 22px;
}
.hero-full .hero-cta { margin-top: 32px; }
.hero-full .hero-trust { border-top-color: rgba(255,255,255,.2); }
.hero-full .hero-trust span { color: rgba(255,255,255,.92); }
.hero-full .hero-trust svg { color: var(--brand-bright); }
.hero-full .btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.hero-full .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  display: grid;
  place-items: center;
  animation: heroBob 1.9s ease-in-out infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }
@keyframes heroBob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* Header trasparente sopra l'hero scuro (solo home, prima dello scroll) */
body.home .site-header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.home .site-header:not(.scrolled) .brand span,
body.home .site-header:not(.scrolled) .brand span small { color: #fff; }
body.home .site-header:not(.scrolled) .nav-toggle {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
@media (min-width: 821px) {
  body.home .site-header:not(.scrolled) .nav > a:not(.btn) { color: rgba(255,255,255,.9); }
  body.home .site-header:not(.scrolled) .nav > a:not(.btn):hover { color: #fff; background: rgba(255,255,255,.16); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

/* ===================== STRIP STATISTICHE ===================== */
.stats {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-mute);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 30px 24px;
  text-align: center;
  border-left: 1px solid var(--line-soft);
}
.stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: -.03em;
  color: var(--brand-deep);
}
.stat .cap { font-size: .9rem; color: var(--ink-soft); margin-top: 4px; }

/* ===================== SEZIONI ===================== */
.section { padding: 84px 0; }
.section.tight { padding: 60px 0; }
.section.soft { background: var(--bg-mute); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 1.08rem; color: var(--ink-soft); }

/* ===================== FEATURE ROWS ===================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-row + .feature-row { margin-top: 72px; }
.feature-row.flip .feature-text { order: 2; }

.feature-text h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.feature-text > p { margin-top: 14px; color: var(--ink-soft); font-size: 1.06rem; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list .tick {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.feature-list .tick svg { width: 16px; height: 16px; }
.feature-list b { font-family: var(--ff-display); font-weight: 600; }
.feature-list p { color: var(--ink-soft); font-size: .98rem; margin-top: 2px; }

.feature-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* ===================== CARD GRID (use cases / vantaggi) ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .22s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cdeedd; }
.card .chip {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card .chip svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.2rem; }
.card p { margin-top: 8px; color: var(--ink-soft); font-size: .98rem; }

/* ===================== PROCESSO (timeline numerata) ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step .n {
  counter-increment: step;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  margin-bottom: 16px;
}
.step .n::before { content: "0" counter(step); }
.step h3 { font-size: 1.16rem; }
.step p { margin-top: 8px; color: var(--ink-soft); font-size: .96rem; }

/* ===================== PRICING ===================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--brand-wash) 0%, #fff 38%);
}
.price-card .chip {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  display: grid; place-items: center;
}
.price-card.featured .chip { background: var(--brand); color: #fff; }
.price-card .chip svg { width: 24px; height: 24px; }
.price-card h3 { font-size: 1.4rem; }
.badge {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--ff-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: var(--ink);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
}
.price-tag {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.price-tag small { display: block; font-size: .86rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0; margin-top: 4px; }
.price-card > p { color: var(--ink-soft); font-size: .98rem; }
.included { list-style: none; padding: 16px 0 0; margin: auto 0 0; border-top: 1px solid var(--line-soft); display: grid; gap: 10px; }
.included li { display: flex; align-items: center; gap: 10px; font-size: .96rem; font-weight: 500; }
.included svg { width: 18px; height: 18px; color: var(--brand); flex: 0 0 auto; }

.included-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 30px auto 0;
  max-width: 880px;
}
.included-band span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}
.included-band svg { width: 16px; height: 16px; color: var(--brand); }

/* ===================== FAQ ===================== */
.faq { max-width: 800px; margin: 48px auto 0; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease;
}
.faq details[open] { border-color: #cdeedd; }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  display: grid; place-items: center;
  transition: transform .25s ease;
}
.faq summary .ico svg { width: 18px; height: 18px; }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding: 0 0 20px; margin: -4px 0 0; font-size: 1rem; }

/* ===================== CTA BAND ===================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--brand-deep) 92%);
  color: #fff;
  border-radius: 28px;
  padding: 72px 40px;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(22,196,127,.22), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { margin: 14px auto 0; max-width: 52ch; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.cta-band .btn { margin-top: 28px; }
.cta-band .btn-primary { --bg-btn: #fff; --fg-btn: var(--brand-deep); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { --bg-btn: #f3fff9; }

/* ===================== CONTATTI ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  margin-top: 48px;
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-family: var(--ff-display); font-weight: 600; font-size: .9rem; }
.field .req { color: var(--brand); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-mute);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px var(--brand-wash);
}
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); margin: 4px 0 18px; }
.consent input { margin-top: 3px; accent-color: var(--brand); }
.consent a { color: var(--brand-deep); text-decoration: underline; }

.form-status { margin-top: 14px; font-weight: 600; font-size: .95rem; color: var(--brand-deep); opacity: 0; transition: opacity .2s ease; }
.form-status.show { opacity: 1; }
.form-status.error { color: #c0392b; }

.contact-info { display: grid; gap: 14px; }
.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.info-card .chip {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  display: grid; place-items: center;
}
.info-card .chip svg { width: 21px; height: 21px; }
.info-card .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); font-weight: 600; }
.info-card .value { font-family: var(--ff-display); font-weight: 600; margin-top: 2px; }
.info-card .value a:hover { color: var(--brand-deep); }
.info-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.info-card.dark .chip { background: rgba(255,255,255,.12); color: var(--brand-bright); }
.info-card.dark .label { color: rgba(255,255,255,.6); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  margin-top: 96px;
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { margin-top: 14px; max-width: 38ch; font-size: .96rem; }
.footer-brand .brand span { color: #fff; }
.footer-brand .brand span small { color: rgba(255,255,255,.55); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a:hover, .footer-col li a:hover { color: var(--brand-bright); }
.footer-col .muted { font-size: .94rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: .9rem;
}
.footer-bottom a:hover { color: var(--brand-bright); }

/* ===================== VANTAGGI (4 blocchi) ===================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .22s ease, border-color .2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cdeedd; }
.benefit .chip {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.benefit .chip svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.12rem; }
.benefit p { margin-top: 8px; color: var(--ink-soft); font-size: .95rem; }

/* ===================== FASCE DI SPAZIO (tiers) ===================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.tier {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .22s ease, border-color .2s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cdeedd; }
.tier.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--brand-wash) 0%, #fff 36%);
}
.tier-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tier .vol { font-family: var(--ff-display); font-weight: 700; font-size: 1.35rem; }
.tier .size {
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--brand-deep);
  background: var(--brand-wash);
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
}
.tier .price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -.03em;
  margin-top: 16px;
}
.tier .price small { display: block; font-size: .82rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0; margin-top: 4px; }
.tier .fits { list-style: none; padding: 18px 0 0; margin: 18px 0 22px; border-top: 1px solid var(--line-soft); display: grid; gap: 10px; }
.tier .fits li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; }
.tier .fits svg { width: 17px; height: 17px; color: var(--brand); flex: 0 0 auto; margin-top: 3px; }
.tier .btn { margin-top: auto; }
.tiers-note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 22px; }

/* ===================== ZONE SERVITE ===================== */
.zone-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.zone-tags span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 500;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.zone-tags span.more { background: var(--brand-wash); border-color: #cdeedd; color: var(--brand-deep); font-weight: 600; }

/* ===================== MAPPA ===================== */
.map-embed {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }

/* bottone "chiama" / ghost dentro la CTA band verde */
.cta-band .btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.cta-actions .btn { margin-top: 0; }

@media (max-width: 940px) {
  .benefits { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
  .map-embed iframe { height: 280px; }
}

/* =========================================================
   BLUEPRINT — linguaggio "disegno tecnico" (home)
   ========================================================= */
.mono {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
/* (rimossi reticoli/etichette "blueprint": versione pulita) */

/* ---- HERO annotato (foto come tavola di progetto) ---- */
.hero-bp {
  position: relative;
  margin-top: -74px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 64px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6,16,11,.55) 0%, rgba(6,16,11,.30) 35%, rgba(6,16,11,.78) 100%),
    url('capannone-interno.jpg') center/cover no-repeat;
}
/* reticolo tecnico sopra la foto */
.hero-bp::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.bp-frame {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
  z-index: 1;
}
.bp-corner { position: absolute; width: 16px; height: 16px; border: 0 solid rgba(255,255,255,.8); }
.bp-corner.tl { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.bp-corner.tr { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
.bp-corner.bl { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
.bp-corner.br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

.bp-tag {
  position: absolute;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.bp-tag.top { top: 40px; left: 50%; transform: translateX(-50%); }
.bp-tag.side {
  top: 50%; left: 40px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}
.bp-tag.scale { right: 44px; bottom: 40px; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.bp-scalebar { display: flex; align-items: flex-end; gap: 0; }
.bp-scalebar i { width: 22px; height: 9px; border: 1px solid rgba(255,255,255,.7); border-right: 0; }
.bp-scalebar i:last-child { border-right: 1px solid rgba(255,255,255,.7); }
.bp-scalebar i:nth-child(odd) { background: rgba(255,255,255,.7); }

.hero-bp .hero-inner { position: relative; z-index: 2; max-width: var(--maxw); }
.hero-bp .eyebrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  backdrop-filter: blur(4px);
}
.hero-bp h1 { color: #fff; font-size: clamp(3rem, 7.5vw, 5.6rem); max-width: 15ch; margin-top: 22px; }
.hero-bp .text-accent { color: var(--brand-bright); }
.hero-bp .lead { color: rgba(255,255,255,.9); max-width: 50ch; margin-top: 22px; }
.hero-bp .hero-cta { margin-top: 32px; }
.hero-bp .hero-trust { border-top-color: rgba(255,255,255,.2); }
.hero-bp .hero-trust span { color: rgba(255,255,255,.92); }
.hero-bp .hero-trust svg { color: var(--brand-bright); }
.hero-bp .btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.hero-bp .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* ---- SCENA INTERATTIVA: riempi lo spazio ---- */
.fill-scene { position: relative; height: 200vh; }
.fill-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fill-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.fill-text .eyebrow { margin-bottom: 16px; }
.fill-text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.fill-text p { margin-top: 16px; color: var(--ink-soft); font-size: 1.08rem; max-width: 40ch; }
.fill-readout {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 26px;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -.03em;
}
.fill-readout .count { font-size: 3.4rem; color: var(--brand-deep); font-variant-numeric: tabular-nums; }
.fill-readout .unit { font-size: 1.3rem; color: var(--ink-soft); }
.fill-hint { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.fill-hint svg { width: 15px; height: 15px; animation: heroBob 1.9s ease-in-out infinite; }

.fill-vis { position: relative; padding: 30px 0 26px 56px; }
.fill-vis .dim {
  position: absolute;
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--ink-faint);
}
.fill-vis .dim-x { top: 6px; left: 56px; right: 0; text-align: center; border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.fill-vis .dim-y {
  left: 6px; top: 30px; bottom: 26px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  border-left: 1px solid var(--line);
  padding-left: 6px;
  display: flex; align-items: center; justify-content: center;
}
.matrix {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.matrix .cell {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.matrix .cell.on {
  background: var(--brand);
  border-color: var(--brand-deep);
  transform: scale(1.04);
}
.matrix-base { margin-top: 12px; text-align: right; }

@media (max-width: 940px) {
  .fill-inner { grid-template-columns: 1fr; gap: 28px; }
  .fill-scene { height: 180vh; }
  .bp-tag.side { display: none; }
}
@media (max-width: 560px) {
  .matrix { grid-template-columns: repeat(8, 1fr); }
  .fill-scene { height: 160vh; }
  .bp-frame { inset: 14px; }
  .bp-tag.top, .bp-tag.scale { display: none; }
  .fill-readout .count { font-size: 2.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .fill-scene { height: auto; }
  .fill-sticky { position: relative; height: auto; padding: 60px 0; }
  .fill-hint svg { animation: none; }
}

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); transition-delay: var(--d, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .meter-bars .bar { animation: none; transform: scaleY(var(--h)); }
  html { scroll-behavior: auto; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .lead { max-width: none; }
  .feature-row, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.flip .feature-text { order: 0; }
  .card-grid, .steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(odd) { border-left: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  body.nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav > a:not(.btn) { padding: 13px 14px; }
  .nav .btn { margin: 8px 0 0; justify-content: center; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .card-grid, .steps, .pricing, .form-row, .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line-soft); }
  .stat:first-child { border-top: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .float-chip { left: 12px; }
  .cta-band { padding: 44px 24px; }
  .container { padding: 0 18px; }
}

/* =========================================================
   PREMIUM B2B — componenti aggiuntivi (blu industriale)
   ========================================================= */

/* telefono nell'header (desktop) */
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.header-phone svg { width: 17px; height: 17px; color: var(--accent); }
.header-phone:hover { background: var(--bg-soft); }
body.home .site-header:not(.scrolled) .header-phone { color: #fff; }
body.home .site-header:not(.scrolled) .header-phone:hover { background: rgba(255,255,255,.14); }
@media (min-width: 980px) { .header-phone { display: inline-flex; } }

/* dock contatti flottante (sempre visibile) */
.contact-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.contact-dock.show { opacity: 1; transform: none; }
.dock-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .18s ease, box-shadow .2s ease;
  position: relative;
}
.dock-btn svg { width: 26px; height: 26px; }
.dock-btn:hover { transform: translateY(-3px) scale(1.05); }
.dock-btn.wa { background: #25d366; }
.dock-btn.call { background: var(--brand); }
.dock-btn.quote { background: var(--accent); width: auto; height: 54px; border-radius: 999px; padding: 0 22px; gap: 9px; font-family: var(--ff-display); font-weight: 600; font-size: .96rem; }
.dock-btn .dock-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 7px 11px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.dock-btn:hover .dock-tip { opacity: 1; }
@media (max-width: 560px) {
  .dock-btn.quote span { display: none; }
  .dock-btn.quote { width: 54px; padding: 0; }
}

/* sezione scura (numeri / accenti) */
.section.dark {
  background: var(--navy);
  color: #fff;
  border: 0;
}
.section.dark .section-head h2 { color: #fff; }
.section.dark .section-head p { color: rgba(255,255,255,.72); }
.section.dark .eyebrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }

/* PROBLEMA del cliente */
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.problem {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.problem .chip {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.problem .chip svg { width: 23px; height: 23px; }
.problem h3 { font-size: 1.12rem; }
.problem p { margin-top: 8px; color: var(--ink-soft); font-size: .96rem; }
.problem .sol { margin-top: 12px; font-weight: 600; font-size: .92rem; color: var(--brand); display: flex; align-items: center; gap: 7px; }
.problem .sol svg { width: 16px; height: 16px; color: var(--brand); flex: 0 0 auto; }

/* NUMERI animati */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.counter { text-align: center; }
.counter .n {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.counter .n .suffix { color: var(--accent); }
.counter .l { margin-top: 10px; color: rgba(255,255,255,.72); font-size: .96rem; }
.counters-note { text-align: center; margin-top: 30px; font-size: .85rem; color: rgba(255,255,255,.5); }

/* GALLERY */
.gallery2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: 48px;
}
.gallery2 figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.gallery2 figure.wide { grid-column: span 2; }
.gallery2 figure.tall { grid-row: span 2; }
.gallery2 img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery2 figure:hover img { transform: scale(1.06); }
.gallery2 figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(10,24,39,.82));
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
}

/* RECENSIONI */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.review p { color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.review .who { margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 12px; }
.review .av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-wash); color: var(--brand-deep);
  display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: .95rem;
}
.review .who b { font-family: var(--ff-display); font-size: .98rem; display: block; }
.review .who span { color: var(--ink-soft); font-size: .86rem; }

@media (max-width: 940px) {
  .problems, .counters, .reviews { grid-template-columns: 1fr 1fr; }
  .gallery2 { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery2 figure.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .problems, .reviews { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .gallery2 { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery2 figure.wide, .gallery2 figure.tall { grid-column: auto; grid-row: auto; }
}

/* ===================== WHATSAPP flottante (singolo, pulito) ===================== */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  transition: transform .18s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 28px rgba(0, 0, 0, .26); }
.wa-float svg { width: 30px; height: 30px; }
