/* =================================================================
   STRUTTURA 360 — Atomizzatore 20L
   Landing premium mobile-first, block-based, direct-response.
   Font: Rubik (headings) + Nunito Sans (body)
================================================================= */

/* -----------------------------------------------------------------
   1. TOKEN & RESET
----------------------------------------------------------------- */
:root {
  /* Brand */
  --nero: #0d0d0d;
  --nero-90: #171717;
  --nero-80: #222222;
  --arancione: #F27820;
  --arancione-2: #ff8f3d;
  --arancione-dark: #d95f0e;
  --verde: #8FCE4A;
  --verde-2: #a4e05e;
  --verde-dark: #6db22f;

  /* Neutrals */
  --bianco: #ffffff;
  --grigio-1: #fafafa;
  --grigio-2: #f2f2f2;
  --grigio-3: #e5e5e5;
  --grigio-4: #b8b8b8;
  --grigio-5: #6b6b6b;
  --grigio-6: #2b2b2b;
  --testo: #1a1a1a;

  /* Semantic */
  --rosso: #dc2626;
  --rosso-light: #fef2f2;

  /* Elevation */
  --sh-1: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
  --sh-2: 0 4px 6px rgba(0,0,0,0.05), 0 10px 20px rgba(0,0,0,0.08);
  --sh-3: 0 12px 30px rgba(0,0,0,0.12), 0 24px 60px rgba(0,0,0,0.10);
  --sh-orange: 0 12px 30px rgba(242,120,32,0.35);

  /* Radius */
  --r-1: 8px;
  --r-2: 14px;
  --r-3: 20px;
  --r-4: 28px;
  --r-full: 999px;

  /* Type */
  --f-head: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-in: cubic-bezier(0.7, 0, 0.84, 0);
  --e-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--testo);
  background: var(--bianco);
  padding-bottom: 88px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrap--narrow { max-width: 780px; }
.center { text-align: center; }

/* Skip focus for keyboard */
:focus-visible {
  outline: 3px solid var(--arancione);
  outline-offset: 3px;
  border-radius: var(--r-1);
}

/* -----------------------------------------------------------------
   2. ANIMATIONS
----------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(242,120,32,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(242,120,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,120,32,0); }
}
@keyframes shine {
  0% { transform: translateX(-120%) skewX(-15deg); }
  100% { transform: translateX(220%) skewX(-15deg); }
}
@keyframes toastIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -10px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--e-out), transform .7s var(--e-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--right { transform: translateX(24px); }
.reveal--right.is-in { transform: translateX(0); }

/* -----------------------------------------------------------------
   3. TYPOGRAPHY UTILS
----------------------------------------------------------------- */
.h2 {
  font-family: var(--f-head);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--nero);
}
.h2--light { color: var(--bianco); }
.h2 .hi {
  background: linear-gradient(120deg, var(--arancione) 0%, var(--verde) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.h2 .hi-red { color: var(--arancione); }

.kicker {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--arancione);
  padding: 6px 12px;
  border: 1.5px solid var(--arancione);
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.kicker--dark { color: var(--verde); border-color: var(--verde); }

.sub {
  font-size: 17px;
  color: var(--grigio-5);
  margin: 0 auto 40px;
  max-width: 640px;
}
.sub--light { color: rgba(255,255,255,0.7); }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grigio-5);
  margin: 0 0 16px;
}
.lead b { color: var(--nero); }

/* -----------------------------------------------------------------
   4. PROGRESS BAR
----------------------------------------------------------------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  pointer-events: none;
}
.progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--arancione), var(--verde));
  transition: width .1s linear;
}

/* -----------------------------------------------------------------
   5. ANNOUNCEMENT BAR
----------------------------------------------------------------- */
.announce {
  background: var(--nero);
  color: var(--bianco);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--nero-80);
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.announce__dot {
  width: 8px; height: 8px;
  background: var(--verde);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.announce b { color: var(--verde); font-weight: 800; }

/* -----------------------------------------------------------------
   6. HEADER
----------------------------------------------------------------- */
.header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--grigio-3);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--nero);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.brand b { color: var(--arancione); }
.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--verde);
  color: var(--nero);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--r-full);
}
.brand-tag svg { width: 14px; height: 14px; }

/* -----------------------------------------------------------------
   7. CTA BUTTON
----------------------------------------------------------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--nero);
  color: var(--bianco);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border: none;
  border-radius: var(--r-full);
  padding: 18px 32px;
  cursor: pointer;
  transition: transform .25s var(--e-spring), background .25s var(--e-out), box-shadow .25s var(--e-out);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  box-shadow: var(--sh-2);
  will-change: transform;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--arancione), var(--arancione-2));
  z-index: -1;
  transition: opacity .3s var(--e-out);
  opacity: 0;
}
.cta:not(.cta--dark) { background: linear-gradient(135deg, var(--arancione), var(--arancione-2)); box-shadow: var(--sh-orange); }
.cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px rgba(242,120,32,0.5); }
.cta:active { transform: translateY(0) scale(0.99); transition-duration: .1s; }
.cta svg { transition: transform .3s var(--e-out); }
.cta:hover svg { transform: translateX(4px); }

.cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%) skewX(-15deg);
  animation: shine 3.5s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}

.cta--full { width: 100%; }
.cta--dark { background: var(--arancione); box-shadow: 0 12px 30px rgba(242,120,32,0.4); }

/* -----------------------------------------------------------------
   8. HERO
----------------------------------------------------------------- */
.hero {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, var(--bianco) 0%, var(--grigio-1) 100%);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nero);
  color: var(--bianco);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.tag__dot {
  width: 8px; height: 8px;
  background: var(--verde);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 2px rgba(143,206,74,0.3);
}

/* Hero title */
.hero__title {
  font-family: var(--f-head);
  font-size: clamp(38px, 8vw, 68px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--nero);
  margin: 0 0 20px;
}
.hero__title .hi {
  background: linear-gradient(120deg, var(--arancione) 0%, var(--verde) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--grigio-5);
  margin: 0 0 26px;
  max-width: 520px;
}
.hero__lead b { color: var(--nero); font-weight: 800; }

/* Price card */
.pricecard {
  background: var(--bianco);
  border: 2px solid var(--nero);
  border-radius: var(--r-3);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 8px 8px 0 var(--nero);
  transition: transform .3s var(--e-out);
}
.pricecard__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--grigio-3);
  margin-bottom: 16px;
}
.pricecard__prices { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pricecard__old {
  display: flex; flex-direction: column;
}
.pricecard__old span { font-size: 11px; color: var(--grigio-5); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.pricecard__old s { color: var(--grigio-4); font-size: 22px; font-weight: 700; font-family: var(--f-head); }
.pricecard__now {
  display: flex; flex-direction: column;
}
.pricecard__now span { font-size: 11px; color: var(--arancione); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.pricecard__now b { font-family: var(--f-head); font-size: 48px; font-weight: 900; color: var(--nero); line-height: 1; letter-spacing: -0.03em; }
.pricecard__save {
  background: var(--verde);
  color: var(--nero);
  padding: 10px 14px;
  border-radius: var(--r-2);
  text-align: center;
  min-width: 88px;
}
.pricecard__save b { font-family: var(--f-head); font-size: 22px; font-weight: 900; display: block; line-height: 1; letter-spacing: -0.02em; }
.pricecard__save span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

.pricecard__pay {
  display: flex; align-items: center; gap: 12px;
}
.pay__ico {
  width: 44px; height: 44px;
  background: var(--verde);
  color: var(--nero);
  border-radius: var(--r-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay__ico svg { width: 22px; height: 22px; }
.pricecard__pay b { display: block; font-family: var(--f-head); font-weight: 800; color: var(--nero); font-size: 15px; }
.pricecard__pay span { color: var(--grigio-5); font-size: 13px; }

/* Trust */
.trust {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: var(--grigio-5);
  font-weight: 600;
}
.trust svg {
  width: 18px; height: 18px;
  color: var(--verde-dark);
  background: rgba(143,206,74,0.15);
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}

/* Hero media */
.hero__media { position: relative; }
.deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.deco--1 { width: 200px; height: 200px; background: rgba(242,120,32,0.3); top: -30px; right: -30px; animation: floatSlow 10s ease-in-out infinite; }
.deco--2 { width: 180px; height: 180px; background: rgba(143,206,74,0.3); bottom: -20px; left: -30px; animation: floatSlow 12s ease-in-out infinite reverse; }

/* Gallery */
.gallery { position: relative; z-index: 1; }
.gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bianco);
  border-radius: var(--r-4);
  overflow: hidden;
  box-shadow: var(--sh-3);
  border: 1px solid var(--grigio-3);
}
.gallery__track {
  display: flex;
  height: 100%;
  transition: transform .55s var(--e-out);
  touch-action: pan-y;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  position: relative;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
}
/* Placeholder quando l'immagine manca */
.slide.no-img {
  background:
    radial-gradient(circle at 30% 30%, rgba(242,120,32,0.12), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(143,206,74,0.12), transparent 50%),
    linear-gradient(135deg, #fafafa 0%, #eeeeee 100%);
}
.slide.no-img img { display: none; }
.slide.no-img::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 24px;
  background: var(--nero);
  opacity: 0.06;
  z-index: 0;
}
.slide.no-img::after {
  content: 'Foto prodotto';
  position: absolute;
  top: calc(50% + 60px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio-4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

/* Gallery nav */
.gnav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--nero);
  color: var(--bianco);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--e-out), transform .2s var(--e-out);
  z-index: 3;
  box-shadow: var(--sh-2);
}
.gnav:hover { background: var(--arancione); transform: translateY(-50%) scale(1.08); }
.gnav svg { width: 20px; height: 20px; }
.gnav--prev { left: 14px; }
.gnav--next { right: 14px; }

.badge-offer {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--arancione);
  color: var(--bianco);
  padding: 10px 14px;
  border-radius: var(--r-2);
  text-align: center;
  box-shadow: var(--sh-2);
  z-index: 3;
  transform: rotate(-6deg);
}
.badge-offer b { font-family: var(--f-head); font-size: 22px; font-weight: 900; display: block; line-height: 1; letter-spacing: -0.02em; }
.badge-offer span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; }

.gdots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.gdots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--grigio-3);
  cursor: pointer;
  padding: 0;
  transition: all .3s var(--e-out);
}
.gdots button.is-active {
  background: var(--nero);
  width: 26px;
  border-radius: 4px;
}

/* Live stock */
.live-stock {
  margin-top: 20px;
  background: var(--nero);
  color: var(--bianco);
  padding: 14px 18px;
  border-radius: var(--r-3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.live-dot {
  width: 10px; height: 10px;
  background: var(--verde);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(143,206,74,0.25);
  flex-shrink: 0;
}
.live-stock b {
  color: var(--arancione);
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 900;
  transition: color .3s;
  padding: 0 2px;
}
.live-stock b.flash { color: var(--verde); }

/* -----------------------------------------------------------------
   9. TRUST STRIP
----------------------------------------------------------------- */
.strip {
  background: var(--nero);
  color: var(--bianco);
  padding: 40px 0;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--arancione), var(--verde));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
}
.stat span { font-size: 12px; color: var(--grigio-4); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }

/* -----------------------------------------------------------------
   10. SECTIONS
----------------------------------------------------------------- */
.section {
  padding: 64px 0;
}
.section--dark { background: var(--nero); color: var(--bianco); }
.section--gray { background: var(--grigio-1); }
.section--form { background: linear-gradient(180deg, var(--grigio-1) 0%, var(--grigio-2) 100%); }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.split__left .kicker { margin-bottom: 20px; }

/* -----------------------------------------------------------------
   11. USES GRID
----------------------------------------------------------------- */
.uses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.use {
  background: var(--nero-80);
  border: 1px solid var(--nero-90);
  border-radius: var(--r-3);
  padding: 30px 24px;
  position: relative;
  transition: transform .3s var(--e-out), border-color .3s var(--e-out);
}
.use:hover {
  transform: translateY(-6px);
  border-color: var(--arancione);
}
.use__num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
}
.use__ico {
  width: 52px; height: 52px;
  background: rgba(242,120,32,0.15);
  color: var(--arancione);
  border-radius: var(--r-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s var(--e-spring);
}
.use:hover .use__ico { transform: scale(1.08) rotate(-6deg); }
.use__ico svg { width: 26px; height: 26px; }
.use h3 {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--bianco);
  letter-spacing: -0.01em;
}
.use p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.5;
}

/* -----------------------------------------------------------------
   12. BENTO
----------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0 40px;
}
.bento__big, .bento__wide, .bento__small {
  background: var(--bianco);
  border: 1px solid var(--grigio-3);
  border-radius: var(--r-3);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--e-out), border-color .3s var(--e-out), box-shadow .3s var(--e-out);
}
.bento__big:hover, .bento__wide:hover, .bento__small:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--sh-3);
}
.bento__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.bento__num {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 900;
  color: var(--arancione);
  letter-spacing: 0.15em;
}
.bento__tag {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--grigio-2);
  color: var(--grigio-5);
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.bento__big h3, .bento__wide h3, .bento__small h3 {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--nero);
  letter-spacing: -0.01em;
}
.bento__big p, .bento__wide p, .bento__small p {
  margin: 0 0 20px;
  color: var(--grigio-5);
  font-size: 15.5px;
  line-height: 1.55;
}
.bento__img {
  border-radius: var(--r-2);
  overflow: hidden;
  background: var(--grigio-2);
  aspect-ratio: 16 / 9;
  position: relative;
}
.bento__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--e-out); }
.bento:hover .bento__img img { transform: scale(1.05); }

/* Placeholder bento senza immagine */
.bento__img.no-img {
  background:
    radial-gradient(circle at 30% 30%, rgba(242,120,32,0.15), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(143,206,74,0.15), transparent 50%),
    linear-gradient(135deg, #fafafa 0%, #eaeaea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento__img.no-img img { display: none; }
.bento__img.no-img::before {
  content: 'Foto prodotto';
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--grigio-4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bento__small--orange {
  background: linear-gradient(135deg, var(--arancione) 0%, var(--arancione-dark) 100%);
  color: var(--bianco);
  border-color: transparent;
}
.bento__small--orange h3 { color: var(--bianco); }
.bento__small--orange p { color: rgba(255,255,255,0.85); }
.bento__small--orange .bento__num { color: rgba(255,255,255,0.4); }

.bento__small--green {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-dark) 100%);
  color: var(--nero);
  border-color: transparent;
}
.bento__small--green h3 { color: var(--nero); }
.bento__small--green p { color: var(--grigio-6); }
.bento__small--green .bento__num { color: rgba(0,0,0,0.4); }

.bento__stat {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--f-head);
  margin-top: 20px;
}
.bento__stat b { font-size: 46px; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.bento__stat span { font-size: 14px; font-weight: 700; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; }

.bento__small { min-height: 200px; display: flex; flex-direction: column; }
.bento__small p { flex: 1; }

/* -----------------------------------------------------------------
   13. COMPARISON
----------------------------------------------------------------- */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.compare__col {
  background: var(--bianco);
  border-radius: var(--r-3);
  padding: 26px 24px;
  border: 2px solid var(--grigio-3);
}
.compare__col--bad { background: var(--rosso-light); border-color: #fecaca; }
.compare__col--good { background: #f0fbe1; border-color: var(--verde); box-shadow: 0 12px 30px rgba(143,206,74,0.2); }

.compare__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 20px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.compare__col--bad .compare__head { color: var(--rosso); }
.compare__col--bad svg { color: var(--rosso); width: 28px; height: 28px; flex-shrink: 0; }
.compare__col--good .compare__head { color: var(--verde-dark); }
.compare__col--good svg {
  color: var(--bianco);
  background: var(--verde-dark);
  border-radius: 50%;
  padding: 5px;
  width: 28px; height: 28px;
  flex-shrink: 0;
}

.compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare__col li {
  font-size: 15px;
  color: var(--nero);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.compare__col--bad li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 2px;
  background: var(--rosso);
  border-radius: 2px;
}
.compare__col--good li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--verde-dark);
  border-bottom: 2.5px solid var(--verde-dark);
  transform: rotate(-45deg);
}
.compare__col--good li b { font-weight: 800; }

/* -----------------------------------------------------------------
   14. REVIEWS
----------------------------------------------------------------- */
.reviews-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 40px;
}
.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bianco);
  padding: 18px 24px;
  border-radius: var(--r-3);
  border: 1px solid var(--grigio-3);
  box-shadow: var(--sh-2);
}
.rating-card__score { display: flex; flex-direction: column; align-items: center; }
.rating-card__score b {
  font-family: var(--f-head);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--nero);
  letter-spacing: -0.03em;
}
.stars { display: inline-flex; gap: 2px; color: #f5a623; }
.stars svg { width: 16px; height: 16px; }
.stars--big svg { width: 22px; height: 22px; }
.rating-card__meta { display: flex; flex-direction: column; text-align: left; }
.rating-card__meta span { font-size: 14px; color: var(--grigio-5); }
.rating-card__meta b { color: var(--nero); }
.rating-card__meta small { font-size: 12px; color: var(--grigio-4); margin-top: 2px; }

.reviews-slider { overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform .55s var(--e-out);
  gap: 16px;
  padding: 6px 4px;
  touch-action: pan-y;
}
.review {
  flex: 0 0 100%;
  background: var(--bianco);
  border-radius: var(--r-3);
  padding: 26px 24px;
  border: 1px solid var(--grigio-3);
  box-shadow: var(--sh-1);
  transition: transform .3s var(--e-out), box-shadow .3s var(--e-out);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.review > .stars { margin-bottom: 16px; }
.review p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--nero);
  margin: 0 0 20px;
  font-style: italic;
}
.review__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grigio-3);
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--arancione), var(--verde));
  color: var(--bianco);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.review__foot > div:not(.check) {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.review__foot b { color: var(--nero); font-weight: 800; }
.review__foot small { color: var(--grigio-5); font-size: 12px; margin-top: 2px; }
.check {
  width: 24px; height: 24px;
  background: var(--verde);
  color: var(--bianco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check svg { width: 14px; height: 14px; }

.rnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.rnav__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--nero);
  color: var(--bianco);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--e-out), transform .2s var(--e-out);
  box-shadow: var(--sh-2);
}
.rnav__btn:hover { background: var(--arancione); transform: scale(1.08); }
.rnav__btn svg { width: 20px; height: 20px; }

.rdots { display: flex; gap: 8px; }
.rdots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--grigio-3);
  cursor: pointer;
  padding: 0;
  transition: all .3s var(--e-out);
}
.rdots button.is-active {
  background: var(--nero);
  width: 26px;
  border-radius: 4px;
}

/* -----------------------------------------------------------------
   15. KIT
----------------------------------------------------------------- */
.kit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.kit__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  border-radius: var(--r-2);
  color: var(--bianco);
  font-weight: 600;
  font-size: 15px;
  transition: background .3s var(--e-out), transform .3s var(--e-out), border-color .3s var(--e-out);
}
.kit__item:hover {
  background: rgba(242,120,32,0.1);
  border-color: var(--arancione);
  transform: translateX(6px);
}
.kit__ico {
  width: 28px; height: 28px;
  background: var(--verde);
  color: var(--nero);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kit__ico svg { width: 16px; height: 16px; }

/* -----------------------------------------------------------------
   16. FAQ
----------------------------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.faq__item {
  background: var(--bianco);
  border: 1px solid var(--grigio-3);
  border-radius: var(--r-2);
  overflow: hidden;
  transition: border-color .3s var(--e-out), box-shadow .3s var(--e-out);
}
.faq__item[open] {
  border-color: var(--arancione);
  box-shadow: var(--sh-2);
}
.faq__item summary {
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--nero);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__ico {
  width: 32px; height: 32px;
  background: var(--grigio-2);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background .3s var(--e-out), transform .3s var(--e-out);
}
.faq__ico::before,
.faq__ico::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--nero);
  border-radius: 2px;
  transition: transform .3s var(--e-out), background .3s var(--e-out);
}
.faq__ico::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__ico::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__ico { background: var(--arancione); transform: rotate(180deg); }
.faq__item[open] .faq__ico::before,
.faq__item[open] .faq__ico::after { background: var(--bianco); }
.faq__item[open] .faq__ico::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__body {
  padding: 0 22px 22px;
  color: var(--grigio-5);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq__body p { margin: 0; }

/* -----------------------------------------------------------------
   17. ASSURANCES
----------------------------------------------------------------- */
.assurances {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.assurance {
  background: var(--bianco);
  border: 1px solid var(--grigio-3);
  padding: 26px;
  border-radius: var(--r-3);
  text-align: center;
  transition: transform .3s var(--e-out), box-shadow .3s var(--e-out);
}
.assurance:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.ass-ico {
  width: 56px; height: 56px;
  border-radius: var(--r-2);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--e-spring);
}
.assurance:hover .ass-ico { transform: scale(1.1) rotate(-6deg); }
.ass-ico svg { width: 28px; height: 28px; }
.ass-ico--orange { background: rgba(242,120,32,0.12); color: var(--arancione); }
.ass-ico--green { background: rgba(143,206,74,0.15); color: var(--verde-dark); }
.assurance h3 {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--nero);
  letter-spacing: -0.01em;
}
.assurance p { margin: 0; color: var(--grigio-5); font-size: 14.5px; line-height: 1.5; }

/* -----------------------------------------------------------------
   18. FORM
----------------------------------------------------------------- */
.form-card {
  background: var(--bianco);
  border-radius: var(--r-4);
  padding: 32px 24px;
  box-shadow: var(--sh-3);
  border-top: 5px solid var(--arancione);
}
.form-card__head { text-align: center; margin-bottom: 28px; }
.form-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nero);
  color: var(--verde);
  font-weight: 800;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 10px;
  flex-wrap: wrap;
}
.price-inline { display: inline-flex; align-items: baseline; gap: 10px; }
.price-inline s { color: var(--grigio-4); font-size: 22px; font-family: var(--f-head); }
.price-inline b { color: var(--nero); font-family: var(--f-head); font-size: 42px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.save-inline {
  background: var(--verde);
  color: var(--nero);
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-note { color: var(--grigio-5); font-size: 15px; margin: 8px 0 0; }

.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--nero);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--f-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--grigio-3);
  border-radius: var(--r-2);
  background: var(--bianco);
  color: var(--nero);
  transition: border-color .15s var(--e-out), box-shadow .15s var(--e-out);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--arancione);
  box-shadow: 0 0 0 4px rgba(242,120,32,0.15);
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: var(--rosso);
  background: var(--rosso-light);
}
.field__error {
  color: var(--rosso);
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
  display: none;
}
.field.is-invalid .field__error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

.form-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--verde-dark);
  font-weight: 700;
}
.form-guarantees span { display: inline-flex; align-items: center; gap: 6px; }
.form-guarantees svg { width: 16px; height: 16px; }
.form-privacy { font-size: 12.5px; color: var(--grigio-4); text-align: center; margin: 8px 0 0; line-height: 1.5; }

/* -----------------------------------------------------------------
   19. URGENCY
----------------------------------------------------------------- */
.urgency {
  background: var(--nero);
  color: var(--bianco);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.urgency::before, .urgency::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.urgency::before { width: 350px; height: 350px; background: rgba(242,120,32,0.25); top: -120px; right: -100px; animation: floatSlow 15s ease-in-out infinite; }
.urgency::after { width: 300px; height: 300px; background: rgba(143,206,74,0.2); bottom: -100px; left: -100px; animation: floatSlow 18s ease-in-out infinite reverse; }
.urgency > .wrap { position: relative; z-index: 1; }
.urgency .kicker { margin-bottom: 20px; }
.urgency__note { color: rgba(255,255,255,0.5); font-size: 14px; margin: 20px 0 0; }

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 30px auto;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.countdown > div:not(.cd-sep) {
  min-width: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown b {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--bianco);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.countdown span {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 6px;
  font-weight: 700;
}
.cd-sep {
  font-family: var(--f-head);
  font-size: 32px;
  color: var(--arancione);
  font-weight: 900;
  align-self: flex-start;
  margin-top: 4px;
}

/* -----------------------------------------------------------------
   20. FOOTER
----------------------------------------------------------------- */
.footer {
  background: var(--nero);
  color: rgba(255,255,255,0.5);
  padding: 30px 0;
  border-top: 1px solid var(--nero-80);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer__brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer__brand b { font-family: var(--f-head); font-weight: 800; color: var(--bianco); font-size: 17px; display: block; }
.footer__brand span { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer__meta small { font-size: 12px; color: rgba(255,255,255,0.35); }

/* -----------------------------------------------------------------
   21. STICKY MOBILE CTA
----------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 60;
  background: var(--nero);
  color: var(--bianco);
  text-decoration: none;
  padding: 14px 18px;
  border-radius: var(--r-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--sh-3);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.sticky-cta > div:first-child { display: flex; flex-direction: column; }
.sticky-cta span { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.sticky-cta b { font-family: var(--f-head); font-size: 20px; font-weight: 900; letter-spacing: -0.02em; color: var(--bianco); }
.sticky-cta__go {
  background: var(--arancione);
  color: var(--bianco);
  padding: 12px 18px;
  border-radius: var(--r-full);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}

/* -----------------------------------------------------------------
   22. TOAST
----------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 90px;
  left: 12px;
  z-index: 70;
  background: var(--bianco);
  border-radius: var(--r-2);
  padding: 12px 16px;
  box-shadow: var(--sh-3);
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  border: 1px solid var(--grigio-3);
}
.toast.is-in { display: flex; animation: toastIn .5s var(--e-spring); }
.toast.is-out { animation: toastIn .3s var(--e-in) reverse forwards; }
.toast__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--arancione), var(--verde));
  color: var(--bianco);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.toast__body { display: flex; flex-direction: column; font-size: 13px; line-height: 1.35; color: var(--nero); }
.toast__body b { font-weight: 800; }
.toast__body small { color: var(--grigio-5); font-size: 11px; margin-top: 2px; }

/* -----------------------------------------------------------------
   23. MODAL
----------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__box {
  background: var(--bianco);
  border-radius: var(--r-4);
  padding: 34px 26px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--sh-3);
  animation: fadeUp .4s var(--e-spring);
}
.modal__ico {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--verde), var(--verde-dark));
  color: var(--bianco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal__ico svg { width: 40px; height: 40px; }
.modal__box h2 { font-family: var(--f-head); font-size: 26px; font-weight: 900; margin: 0 0 12px; letter-spacing: -0.02em; color: var(--nero); }
.modal__box > p { color: var(--grigio-5); margin: 0 0 18px; font-size: 16px; }
.modal__box > p b { color: var(--nero); }
.modal__note {
  background: rgba(242,120,32,0.1);
  color: var(--arancione-dark);
  padding: 14px;
  border-radius: var(--r-2);
  font-size: 14.5px;
  margin-bottom: 20px;
}
.modal__note b { font-weight: 800; }
.modal__box .cta { width: auto; padding: 14px 28px; font-size: 16px; }

/* -----------------------------------------------------------------
   24. RESPONSIVE
----------------------------------------------------------------- */
@media (min-width: 720px) {
  body { font-size: 18px; padding-bottom: 0; }

  .hero { padding: 60px 0 80px; }
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 60px; }
  .trust { grid-template-columns: 1fr 1fr; }

  .strip { padding: 50px 0; }
  .strip__grid { grid-template-columns: repeat(4, 1fr); }

  .section { padding: 90px 0; }

  .split { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  .uses { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .bento__big { grid-column: span 2; grid-row: span 2; }
  .bento__wide { grid-column: span 2; }
  .bento__small { grid-column: span 1; }

  .compare { grid-template-columns: 1fr 1fr; gap: 24px; }

  .review { flex: 0 0 calc(33.333% - 11px); }

  .kit { grid-template-columns: 1fr 1fr; gap: 12px; max-width: 780px; }

  .assurances { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .form-card { padding: 40px 36px; }
  .field-row { grid-template-columns: 1fr 1fr; }

  .urgency { padding: 100px 0; }
  .countdown b { font-size: 52px; }
  .countdown > div:not(.cd-sep) { min-width: 88px; }
  .cd-sep { font-size: 42px; }

  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__brand span { display: block; }

  .sticky-cta { display: none; }
  .toast { left: 24px; bottom: 24px; max-width: 340px; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 76px; }
  .h2 { font-size: 48px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* Note legali footer */
.footer__legal{display:flex;flex-wrap:wrap;gap:6px 16px;justify-content:center;margin-bottom:12px}
.footer__legal a{color:var(--grigio-4);text-decoration:none;font-size:13px;font-weight:600}
.footer__legal a:hover{color:var(--verde)}
@media(min-width:720px){.footer__legal{justify-content:flex-end}}

/* Logo Struttura 360 */
.brand .brand__logo { width: auto; height: 30px; border-radius: 0; object-fit: contain; }
.footer__brand .footer__logo { width: auto; height: 34px; border-radius: 10px; background: #fff; padding: 8px 12px; box-sizing: content-box; }
.brand-tag { white-space: nowrap; }
@media (max-width: 380px) { .brand-tag svg { display: none; } }

/* Mobile: foto prodotto subito in alto */
.slide { background: var(--bianco); }
.slide img { padding: 6px; }
.gallery__stage { box-shadow: var(--sh-2); }
@media (max-width: 719px) {
  .hero { padding-top: 12px; }
  .hero__grid { gap: 6px; grid-template-columns: minmax(0, 1fr); }
  .hero__media { display: contents; }
  .gallery { order: -1; }
  .gdots { margin-top: 10px; }
  .live-stock { order: 1; margin-top: 0; }
  .reveal--right { transform: translateY(24px); }  /* su telefono le animazioni non escono di lato */
}

/* Nessuno scorrimento orizzontale: la pagina resta sempre larga quanto lo schermo */
body { overflow-x: clip; }

/* Foto a prova di iPhone/Safari: riquadro con proporzione fissa (padding) + foto centrata dentro */
.gallery__stage { aspect-ratio: auto; height: 0; padding-bottom: 100%; }
.gallery__track { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.slide { position: relative; height: 100%; }
.slide img { position: absolute; top: 6px; left: 6px; width: calc(100% - 12px); height: calc(100% - 12px); padding: 0; object-fit: contain; object-position: center; }
.bento__img { aspect-ratio: auto; height: 0; padding-bottom: 56.25%; }
.bento__img img { position: absolute; top: 0; left: 0; }
