/* ============================================================
   DESIGN SYSTEM — VIP GROUP / aivipmodel
   Tema DARK · palette monocromatica viola → fucsia
   Foglio condiviso da index.html (landing) e grazie.html (thank-you).
   ============================================================ */
:root {
  /* Base e superfici */
  --bg-base: #0A0814;
  --surface-1: #14121F;
  --surface-2: #1C1830;
  --panel-violet: linear-gradient(160deg, #1A1030 0%, #0E0A1A 100%);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(168, 85, 247, 0.35);

  /* Famiglia accento (unica gamma cromatica) */
  --violet-light: #C4A8FF;
  --violet: #A855F7;
  --fuchsia: #EA6AF3;
  --pink: #F162A7;
  --violet-deep: #7E22CE;

  /* Testo */
  --text-title: #FFFFFF;
  --text-body: #B4B0C2;
  --text-muted: #6F6A82;
  --text-on-accent: #FFFFFF;

  /* Gradiente accento del brand */
  --grad-accent: linear-gradient(90deg, #A07CF4 0%, #E869F2 55%, #F162A7 100%);

  /* Raggi */
  --r-card: 18px;
  --r-panel: 24px;
  --r-input: 12px;
  --r-pill: 9999px;
  --r-frame: 16px;

  /* Layout */
  --container: 1120px;
  --pad-x: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 10vw, 120px);

  /* Glow / ombre */
  --glow-cta: 0 0 0 1px rgba(168, 85, 247, 0.40), 0 10px 32px rgba(168, 85, 247, 0.35);
  --glow-card-hover: 0 0 24px rgba(168, 85, 247, 0.12);

  /* Sticky bar (altezza aggiornata via JS per il padding del body) */
  --sticky-h: 76px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: var(--bg-base);
  color: var(--text-body);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* spazio per la sticky bar: solo sulla landing (aggiornato anche via JS) */
body.landing { padding-bottom: calc(var(--sticky-h) + 16px); }

/* Layer di bagliore viola/fucsia, sempre dietro al contenuto */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 50% -8%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(700px 500px at 85% 8%, rgba(234, 106, 243, 0.10), transparent 60%),
    radial-gradient(750px 650px at 8% 92%, rgba(168, 85, 247, 0.06), transparent 60%);
}

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

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

/* Tutti i contenuti sopra al layer di glow */
.page { position: relative; z-index: 1; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.6875rem, 1.4vw, 0.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-body);
  margin: 0;
}

h1, h2, h3 {
  font-family: "Archivo", system-ui, sans-serif;
  color: var(--text-title);
  text-wrap: balance;        /* titoli sempre bilanciati */
  margin: 0;
}

.h-hero {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.h-section {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.h-subsection {
  font-size: clamp(1.875rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Parola/riga evidenziata col gradiente esatto del brand */
.grad {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ============================================================
   BOTTONI
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-wrap: balance;        /* CTA bilanciate anche su mobile */
  border-radius: var(--r-pill);
  cursor: pointer;
  border: none;
  transition: filter 200ms ease-out, transform 200ms ease-out, border-color 200ms ease-out, background-color 200ms ease-out;
}

.btn--primary {
  /* gradiente del brand in versione "scorrevole" per l'hover */
  background: linear-gradient(90deg, #A07CF4 0%, #E869F2 55%, #F162A7 100%);
  background-size: 200% 200%;
  background-position: 10% 50%;
  color: var(--text-on-accent);
  padding: 16px 28px;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 800;
  box-shadow: var(--glow-cta);
  line-height: 1.25;
  transition: background-position 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--primary:hover {
  background-position: 99% 50%;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.45), 0 14px 36px rgba(168, 85, 247, 0.40);
}
.btn--primary:active { transform: scale(0.99); }

/* CTA della sticky bar: più piccola della CTA hero */
.btn--sticky {
  background: var(--grad-accent);
  color: var(--text-on-accent);
  padding: 9px 16px;
  font-size: 0.8125rem;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.40), 0 6px 18px rgba(168, 85, 247, 0.30);
  white-space: nowrap;
  flex: 0 0 auto;
}
.btn--sticky:hover { filter: brightness(1.05); transform: scale(1.02); }

/* ============================================================
   VSL — player con overlay "clicca per audio" + barra finta
   (struttura del custom element, palette adattata a viola/fucsia)
   ============================================================ */
.vsl-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  border-radius: var(--r-frame);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 40px rgba(168, 85, 247, 0.12);
  background-color: #000;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  -webkit-tap-highlight-color: transparent;
}
.vsl-container video { width: 100%; height: 100%; display: block; object-fit: cover; }
.play-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(10, 8, 20, 0.30) 0%, rgba(10, 8, 20, 0.70) 90%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 10;
}
.play-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(1);
  transition: transform 0.2s ease;
}
.vsl-container:active .play-content-wrapper { transform: scale(0.95); }
.play-button-circle {
  width: 90px;
  height: 90px;
  background: var(--grad-accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.55);
  animation: pulse-ring 2s infinite;
}
.play-icon-svg-container { width: 38px; height: 38px; margin-left: 6px; display: flex; }
.play-icon-svg-container svg { width: 100%; height: 100%; }
.tap-text {
  margin-top: 18px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  animation: fade-bounce 2s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.55); }
  70% { box-shadow: 0 0 0 20px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}
@keyframes fade-bounce {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-3px); }
}
.play-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.fake-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.18);
  z-index: 20;
  pointer-events: none;
}
.fake-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--grad-accent);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.7);
  transition: width 0.2s linear;
  border-radius: 0 3px 3px 0;
}
@media (max-width: 720px) {
  .play-button-circle { width: 70px; height: 70px; }
  .play-icon-svg-container { width: 30px; height: 30px; margin-left: 4px; }
  .tap-text { font-size: 13px; margin-top: 12px; }
  .fake-progress-container { height: 8px; }
}

/* ============================================================
   SEZIONE 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(56px, 9vw, 96px);
  padding-bottom: var(--section-y);
  text-align: center;
}
/* griglia a puntini appena percettibile, solo area hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1.6px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(700px 480px at 50% 18%, #000 0%, transparent 75%);
  mask-image: radial-gradient(700px 480px at 50% 18%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 28px);
}
.hero__headline { max-width: 18ch; }
.hero__text { max-width: 60ch; font-size: clamp(1rem, 2.2vw, 1.1875rem); }
.hero .vsl-container { margin-top: clamp(8px, 1.5vw, 16px); margin-bottom: 10px; }

/* ============================================================
   SEZIONE 2 — INFLUENCER & RISULTATI
   ============================================================ */
.influencers {
  padding-block: var(--section-y);
  text-align: center;
}
.influencers__head { margin-bottom: clamp(32px, 5vw, 56px); }

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;          /* mobile-first: 1 colonna */
  gap: 20px;
}

/* Card modella: foto + overlay scuro dal basso + dati Instagram */
.model-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-1);
  transition: transform 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
}
.model-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--glow-card-hover);
}
.model-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
/* overlay a gradiente scuro: trasparente in alto, scuro in basso */
.model-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(8, 6, 16, 0.92) 0%, rgba(8, 6, 16, 0.55) 30%, rgba(8, 6, 16, 0) 62%);
  pointer-events: none;
}
/* mini box followers, in alto a destra */
.model-card__followers {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  background: rgba(10, 8, 20, 0.55);
  border: 1px solid var(--border-strong);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  color: var(--text-body);
  white-space: nowrap;
}
.model-card__followers strong { color: #fff; font-weight: 700; font-size: 0.8125rem; }
/* riga in fondo: nome IG a sinistra, pulsante profilo a destra */
.model-card__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 16px;
}
.model-card__handle {
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* pulsante Instagram — colore brand IG (eccezione richiesta alla palette) */
.model-card__ig {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* gradiente Instagram in versione lineare per far "scorrere" il colore all'hover */
  background: linear-gradient(90deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%);
  background-size: 200% 200%;
  background-position: 10% 50%;
  box-shadow: 0 6px 16px rgba(214, 41, 118, 0.40);
  transition: background-position 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card__ig:hover {
  background-position: 99% 50%;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(214, 41, 118, 0.45);
}
.model-card__ig svg { width: 21px; height: 21px; fill: none; stroke: #fff; stroke-width: 2; }

/* Sottotitolo "E i loro risultati" */
.results__head {
  margin-top: clamp(56px, 7vw, 80px);
  margin-bottom: clamp(36px, 4vw, 40px);
}

/* Screenshot risultati (foto reali) */
.grid-results {
  display: grid;
  grid-template-columns: 1fr;   /* mobile: 1 colonna */
  gap: 16px;
}
.result-shot {
  margin: 0;
  border-radius: var(--r-frame);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #07050E;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.result-shot img { display: block; width: 100%; height: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-block: clamp(40px, 6vw, 64px);
  text-align: center;
}
.footer__links {
  display: flex;
  flex-direction: column;          /* mobile-first: 1 colonna centrata */
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 200ms ease-out;
}
.footer__links a:hover { color: var(--violet-light); }

.footer__divider {
  height: 1px;
  width: 100%;
  max-width: 720px;
  margin: clamp(24px, 4vw, 32px) auto;
  background: var(--border);
  border: 0;
}
.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ============================================================
   STICKY CTA BAR (fissa in fondo, sempre visibile)
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(20, 18, 31, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
/* sottile barra accento sul bordo superiore */
.sticky-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-accent);
  opacity: 0.6;
}
.sticky-cta__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;            /* gruppo testo+CTA vicini e centrati */
  gap: 10px;                          /* mobile: gap 10px */
  padding-block: 10px;
}
.sticky-cta__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-title);
  text-wrap: balance;                 /* label bilanciata */
  margin: 0;
  flex: 0 1 auto;                     /* si stringe ma non si allarga: resta accanto alla CTA */
  min-width: 0;
}

/* ============================================================
   POPUP CANDIDATURA (modal + form lead → GoHighLevel)
   ============================================================ */
body.modal-open { overflow: hidden; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 10, 0.74);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--panel-violet);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-panel);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  color: var(--text-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 200ms ease-out, color 200ms ease-out;
}
.modal__close:hover { border-color: var(--border-accent); color: #fff; }
.modal__close svg { width: 18px; height: 18px; }
.modal__title {
  font-family: "Archivo", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-title);
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
  padding-right: 36px;
}
.modal__sub { color: var(--text-body); font-size: 0.9375rem; margin: 8px 0 0; }

.lead-form { display: grid; gap: 14px; margin-top: 22px; }
.lead-form .field { display: grid; gap: 6px; }
.lead-form label { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); }
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-input);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text-title);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
}
.lead-form input::placeholder { color: var(--text-muted); }
.lead-form input:focus {
  outline: none;
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
}
.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
  cursor: pointer;
}
.lead-form .consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--violet);
  flex: 0 0 auto;
}
.lead-form .consent a { color: var(--violet-light); text-decoration: underline; }
.lead-form__submit { width: 100%; margin-top: 6px; }

/* intl-tel-input adattato al tema scuro */
.lead-form .iti { width: 100%; display: block; }
.lead-form .iti input[type="tel"] { width: 100% !important; padding-left: 96px !important; }
.lead-form .iti__selected-flag {
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: var(--r-input) 0 0 var(--r-input);
  border-right: 1px solid var(--border);
}
.lead-form .iti--separate-dial-code .iti__selected-dial-code { color: var(--text-title); font-family: inherit; font-size: 15px; }
.lead-form .iti__country-list { font-family: inherit; max-height: 240px; background: #1C1830; border: 1px solid var(--border); color: var(--text-body); }
.lead-form .iti__country.iti__highlight,
.lead-form .iti__country:hover { background: rgba(168, 85, 247, 0.18); }
.lead-form .iti__dial-code { color: var(--text-muted); }

/* ============================================================
   THANK-YOU PAGE (grazie.html)
   ============================================================ */
body.thankyou {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.thankyou .ty-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  text-align: center;
  background: var(--panel-violet);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-panel);
  padding: clamp(32px, 6vw, 56px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.thankyou .ty-check {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: var(--r-pill);
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-cta);
}
.thankyou .ty-check svg { width: 38px; height: 38px; stroke: #fff; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.thankyou .ty-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.thankyou .ty-message {
  font-size: clamp(1rem, 2.4vw, 1.1875rem);
  color: var(--text-body);
  text-wrap: balance;
  margin: 0 auto;
  max-width: 42ch;
}
.thankyou .ty-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color 200ms ease-out, background-color 200ms ease-out;
}
.thankyou .ty-home:hover { background: rgba(168, 85, 247, 0.12); }

/* ============================================================
   MOTION — reveal allo scroll (sobrio)
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 450ms ease-out, transform 450ms ease-out;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   DESKTOP — breakpoint principale 720px (sopra = desktop)
   ============================================================ */
@media (min-width: 721px) {
  /* griglie a 3 colonne */
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  /* griglia risultati a 4 colonne su desktop */
  .grid-results { grid-template-columns: repeat(4, 1fr); gap: 20px; }

  /* margine sotto il video più ampio su desktop */
  .hero .vsl-container { margin-bottom: 40px; }

  /* footer: una riga con 4 colonne, centrata */
  .footer__links {
    flex-direction: row;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
  }

  /* sticky bar: testo a sinistra, bottone a destra */
  .sticky-cta__inner { gap: 20px; padding-block: 14px; }
  .sticky-cta__title { font-size: 1rem; }
  .btn--sticky { padding: 11px 22px; font-size: 0.9375rem; }
}
