/*
Theme Name: ViralClub Landing
Theme URI: https://viralclub.example
Author: ViralClub
Author URI: https://viralclub.example
Description: Tema WordPress minimal/luxury per landing one-page di ViralClub.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: viralclub
Tags: one-column, custom-logo, custom-menu, featured-images
*/

:root{
  --bg:#070A0D;
  --bg2:#0B0F14;
  --card:#0F141B;
  --text:#EAF0F6;
  --muted:#A6B2BF;
  --line:rgba(255,255,255,.10);
  --accent:#F5C542;
  --accent2:#D8A532;
  --shadow: 0 30px 80px rgba(0,0,0,.55);
  --radius: 22px;
  --radius2: 28px;
  --max: 1120px;
  --gap: 22px;
  /* Ritardo prima delle animazioni d’ingresso (+ --vc-reveal-delay per elemento da JS) */
  --vc-reveal-base-delay: 360ms;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}
section[id]{scroll-margin-top:72px}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  overflow-x:hidden;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Inter", Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Cursor safety (targeted, avoids global *) */
a,
button,
[role="button"],
input[type="submit"],
input[type="button"]{
  cursor:pointer;
}

/* Common graphic children inside clickable elements */
a img,
a svg,
a span,
button img,
button svg,
button span,
[role="button"] img,
[role="button"] svg,
[role="button"] span{
  cursor:pointer;
}

/* SVG paths sometimes ignore parent cursor */
svg,
svg *{
  cursor:inherit;
}

/* Text inputs */
input:not([type="submit"]):not([type="button"]),
textarea,
select{
  cursor:text;
}

/* Punti luce (cerchi sfumati) */
.vc-lights{
  position:fixed;
  inset:0;
  height:100vh;
  pointer-events:none;
  z-index:0;
  overflow:hidden;
}
.vc-light{
  position:absolute;
  width:520px;
  height:520px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(245,197,66,.28), rgba(245,197,66,.10) 38%, rgba(245,197,66,0) 70%);
  filter: blur(64px);
  opacity:.95;
  mix-blend-mode: screen;
  transform: translate3d(0,0,0);
  animation: vcLightFloat 18s ease-in-out infinite, vcLightSpin 42s linear infinite;
}
.vc-light--a{top:-18vh; left:-22vw; width:720px; height:720px; opacity:.55; animation-duration: 26s, 70s;}
.vc-light--b{top:18vh; right:-26vw; width:820px; height:820px; opacity:.48; animation-duration: 28s, 78s;}
.vc-light--c{top:62vh; left:-28vw; width:860px; height:860px; opacity:.42; animation-duration: 30s, 84s;}
.vc-light--d{top:110vh; right:-24vw; width:760px; height:760px; opacity:.38; animation-duration: 32s, 88s;}
.vc-light--e{top:158vh; left:34vw; width:680px; height:680px; opacity:.32; animation-duration: 34s, 92s;}
.vc-light--f{top:206vh; right:18vw; width:920px; height:920px; opacity:.36; animation-duration: 36s, 96s;}
.vc-light--g{top:252vh; left:-24vw; width:740px; height:740px; opacity:.28; animation-duration: 38s, 100s;}
.vc-light--h{top:298vh; right:-22vw; width:860px; height:860px; opacity:.30; animation-duration: 40s, 110s;}
.vc-light--i{top:344vh; left:18vw; width:780px; height:780px; opacity:.26; animation-duration: 42s, 120s;}
.vc-light--j{top:380vh; right:38vw; width:640px; height:640px; opacity:.22; animation-duration: 44s, 128s;}
.vc-light--k{top:24vh; left:26vw; width:620px; height:620px; opacity:.20; animation-duration: 46s, 136s;}

@keyframes vcLightFloat{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-18px,0) scale(1.03); }
}
@keyframes vcLightSpin{
  from{ transform: translate3d(0,0,0) rotate(0deg); }
  to{ transform: translate3d(0,0,0) rotate(360deg); }
}

/* Mantieni contenuto sopra ai punti luce */
header, main, footer{position:relative; z-index:1;}
@media (prefers-reduced-motion: reduce){
  .vc-light{animation:none !important;}
}

/* Scrollbar personalizzata (Firefox + Chromium / Safari / Edge) */
html{
  scrollbar-width:thin;
  scrollbar-color: rgba(245,197,66,.55) var(--bg2);
}
*::-webkit-scrollbar{
  width:10px;
  height:10px;
}
*::-webkit-scrollbar-track{
  background: var(--bg2);
  border-radius: 100px;
}
*::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(245,197,66,.65), rgba(216,165,50,.42));
  border-radius: 100px;
  border:2px solid var(--bg2);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
}
*::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(245,197,66,.9), rgba(216,165,50,.65));
}
*::-webkit-scrollbar-corner{
  background: var(--bg2);
}

/* Ingresso (scroll reveal): keyframes così l’animazione parte quando arriva .vc-reveal--in */
@keyframes vcRevealIn{
  from{
    opacity:0;
    transform: translate3d(0, 1.15rem, 0);
  }
  to{
    opacity:1;
    transform: translate3d(0, 0, 0);
  }
}
.vc-reveal{
  opacity:0;
  transform: translate3d(0, 1.15rem, 0);
  will-change: opacity, transform;
}
.vc-reveal.vc-reveal--in{
  animation: vcRevealIn 0.78s cubic-bezier(.22,1,.36,1) both;
  animation-delay: calc(var(--vc-reveal-base-delay, 0ms) + var(--vc-reveal-delay, 0ms));
  will-change: opacity, transform;
}
@media (prefers-reduced-motion: reduce){
  .vc-reveal,
  .vc-reveal.vc-reveal--in{
    opacity:1 !important;
    transform:none !important;
    animation:none !important;
    will-change:auto !important;
  }
}

a{color:inherit; text-decoration:none}
.vc-wrap{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.vc-hero__cta .vc-ctaGate{display:none !important}
body.vc-vsl-unlocked .vc-hero__cta .vc-ctaGate,
body.vc-is-admin .vc-hero__cta .vc-ctaGate{
  display:inline-flex !important;
}
.vc-only-mobile{display:none}
.vc-mobile-only{display:none !important;}
.vc-desktop-only{display:block !important;}

.vc-topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(7,10,13,.55);
  border-bottom:1px solid var(--line);
}
.vc-topbar--landing{
  position:static;
  top:auto;
  z-index:auto;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  background: transparent;
  border-bottom: none;
}
.vc-topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.vc-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:650;
  letter-spacing:.02em;
}
.vc-logo{
  width:auto;
  height:26px;
  max-width:140px;
  border-radius:0;
  background:none;
  display:block;
  object-fit:contain;
  box-shadow:none;
}
.vc-brand__name{font-size:14px}
.vc-nav{display:flex; align-items:center; gap:14px}
.vc-nav a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  transition:all .18s ease;
}
.vc-nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.vc-topbar--landing .vc-topbar__inner{
  justify-content:center;
  padding-top:28px;
  padding-bottom:14px;
}
.vc-brand--center{justify-content:center}
.vc-topbar--landing .vc-brand--center{gap:0}

button.vc-btn{
  cursor:pointer;
  font-family:inherit;
  margin:0;
  appearance:none;
  -webkit-appearance:none;
}
.vc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(245,197,66,.30);
  background: linear-gradient(135deg, rgba(245,197,66,.18), rgba(216,165,50,.06));
  color:var(--text);
  font-weight:650;
  font-size:14px;
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  transition:transform .15s ease, filter .15s ease, background .15s ease;
}
.vc-btn:hover{transform:translateY(-1px); filter:brightness(1.05)}
.vc-btn--solid{
  border:1px solid rgba(245,197,66,.65);
  background: linear-gradient(135deg, rgba(245,197,66,.95), rgba(216,165,50,.70));
  color:#07110C;
}
.vc-btn--ghost{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  box-shadow:none;
}
.vc-btn--pill{
  border-radius:999px;
  padding:14px 28px;
}

.vc-hero{padding:36px 0 48px}
.vc-hero--skeleton{
  padding:44px 0 56px;
}
.vc-hero--skeleton .vc-wrap{
  max-width:min(760px, calc(100% - 40px));
  margin:0 auto;
  text-align:center;
}
.vc-title{
  font-size:60px;
  line-height:1.02;
  letter-spacing:-.02em;
  margin:8px 0 16px;
}
.vc-title.vc-title--center{
  margin:0 0 35px;
}
.vc-hero--skeleton .vc-title{
  font-size:60px;
}
.vc-title--center{text-align:center}
.vc-hero__kicker{
  margin:0 0 10px;
  font: inherit;
  font-weight:800;
  font-size:14px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(245,197,66,.92);
  text-align:center;
}

/* Step label (STEP white, number yellow) */
.vc-stepLabel{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
  font-size:30px;
  line-height:1;
  display:flex;
  gap:10px;
  align-items:baseline;
  justify-content:center;
}
.vc-stepLabel__word{ color: rgba(255,255,255,.92); }
.vc-stepLabel__num{
  color: rgba(245,197,66,.98);
  letter-spacing:0;
  font-size:30px;
}
.vc-stepLabel--timer{ margin-bottom:12px; }
.vc-vsl-tag{
  margin:0 0 12px;
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-weight:800;
  color:rgba(166,178,191,.85);
  text-align:center;
}
.vc-hero__subline{
  margin:24px auto 0;
  max-width:40ch;
  font-size: clamp(18px, 2.0vw, 28px);
  color:var(--muted);
  line-height:1.4;
  text-align:center;
}
.vc-hero__cta{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  justify-content:center;
}

/* Gate timer (design) */
.vc-gateSection{
  margin-bottom:56px;
}
.vc-gateTimer{
  width:100%;
  max-width:610px;
  margin:0 auto;
  padding:22px 18px 20px;
  border-radius:22px;
  border:2px dashed rgba(245,197,66,.55);
  background: rgba(0,0,0,.22);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}
.vc-gateTimer__hint{
  margin:0 0 16px;
  font-size:18px;
  color:rgba(234,240,246,.88);
  letter-spacing:-.01em;
  text-align:center;
}
.vc-gateTimer__row{
  display:flex;
  justify-content:center;
  gap:18px;
}
.vc-gateTimer__box{
  width:92px;
  padding:14px 10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  text-align:center;
}
.vc-gateTimer__num{
  font-size:34px;
  line-height:1;
  font-weight:800;
  letter-spacing:.02em;
  color:rgba(255,255,255,.98);
}
.vc-gateTimer__lab{
  margin-top:8px;
  font-size:13px;
  color:rgba(234,240,246,.72);
}
/* Timer is always visible (no gating). */

/* Gate sections: hide everything after timer until unlocked */
body:not(.vc-vsl-unlocked):not(.vc-is-admin) main #timer ~ section{
  display:none !important;
}
body.vc-vsl-unlocked main #timer{
  display:none !important;
}

/* Admin: always show timer + all sections */
body.vc-is-admin main #timer,
body.vc-is-admin main #timer ~ section{
  display:block !important;
}
.vc-title .accent,
.vc-section-title .accent{
  background: linear-gradient(135deg, var(--accent), rgba(255,255,255,.85));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.vc-step-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 12px;
  margin:0 auto 22px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}
.vc-step-pill__label{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:750;
  color:rgba(245,197,66,.95);
}

.vc-hero__video-block{
  max-width:100%;
  margin:0 auto 28px;
}
.vc-hero__dashed{
  margin:0 auto;
  max-width:100%;
  padding:22px 20px 24px;
  border-radius: var(--radius2);
  border:2px dashed rgba(245,197,66,.38);
  background: rgba(255,255,255,.02);
  text-align:center;
}
.vc-hero__dashed-head{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:750;
  color:rgba(245,197,66,.9);
  margin-bottom:8px;
}
.vc-hero__dashed-text{
  margin:0 0 18px;
  color:var(--muted);
  font-size:14px;
  max-width:42ch;
  margin-left:auto;
  margin-right:auto;
}

.vc-video{
  position:relative;
  border-radius: 20px;
  overflow:hidden;
  border:1px solid rgba(245,197,66,.28);
  background: linear-gradient(135deg, rgba(245,197,66,.20), rgba(255,255,255,.03));
}
.vc-video::before{
  content:"";
  display:block;
  padding-top:56.25%;
}
.vc-video__inner{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  z-index:1;
}
.vc-video__poster{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.vc-vslVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}
.vc-vimeo{
  position:absolute;
  inset:0;
  z-index:1;
  background: #000;
  background-size: cover;
  background-position: center;
}
.vc-vimeo iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  pointer-events:auto;
}
.vc-vimeoPlay{
  position:absolute;
  left:50%;
  top:50%;
  width:54px;
  height:54px;
  transform: translate(-50%, -50%);
  z-index:3;
  border:0;
  background: transparent;
  cursor: pointer !important;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  -webkit-tap-highlight-color: transparent;
}
.vc-vimeoPlay__btn{
  width:54px;
  height:54px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.72);
  color: rgba(245,197,66,.95);
  box-shadow:
    0 18px 50px rgba(0,0,0,.42),
    inset 0 0 0 1px rgba(0,0,0,.35);
  cursor: pointer !important;
  transform: translateZ(0);
  transition: transform .18s cubic-bezier(.22,1,.36,1), filter .18s ease, background .18s ease, box-shadow .18s ease;
}
.vc-vimeoPlay__btn *{
  cursor: pointer !important;
}
.vc-vimeoPlay__btn svg{
  width:22px;
  height:22px;
  display:block;
  fill: currentColor;
  margin-left:2px;
}
.vc-vimeoPlay__btn:hover{
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.12);
  background: rgba(0,0,0,.86);
  box-shadow:
    0 24px 70px rgba(0,0,0,.50),
    0 0 0 1px rgba(245,197,66,.25),
    0 0 32px rgba(245,197,66,.22);
}
.vc-vimeoPlay__btn:active{
  transform: translateY(0) scale(0.98);
  filter: brightness(1.02);
}
.vc-vimeoPlay.is-hidden{display:none;}
.vc-video.vc-is-switching .vc-vslVideo{
  opacity:0;
  transition: opacity .12s ease;
}
.vc-video .vc-vslVideo{
  opacity:1;
  transition: opacity .12s ease;
}
.vc-muteOverlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  border:0;
  background: transparent;
  cursor:pointer;
}
.vc-muteOverlay__pill{
  display:inline-flex;
  align-items:center;
  gap:0;
  padding:5px;
  border-radius:999px;
  border:1px solid rgba(7,10,13,.18);
  background: rgba(7,10,13,.82);
  color: rgba(234,240,246,.98);
  font-weight:750;
  font-size:12px;
  letter-spacing:-.01em;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  animation: vcPulse 1.4s ease-in-out infinite;
}
.vc-muteOverlay__play{
  width:28px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(245,197,66,.18);
  color: rgba(245,197,66,.95);
}
.vc-muteOverlay__play svg{
  width:14px;
  height:14px;
  display:block;
  fill: currentColor;
}
@keyframes vcPulse{
  0%, 100% { transform: translateY(0); filter: brightness(1); }
  50% { transform: translateY(-2px); filter: brightness(1.08); }
}
.vc-muteOverlay.is-hidden{
  display:none;
}
.vc-video__hint{
  text-align:center;
  max-width: 34ch;
}
.vc-video__hint .p{
  width:52px;height:52px;border-radius:18px;
  margin:0 auto 10px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(7,10,13,.45);
  display:flex; align-items:center; justify-content:center;
}
.vc-video__hint .p svg{width:18px;height:18px; fill:var(--text); opacity:.9}
.vc-video__hint .h{font-weight:720; letter-spacing:-.01em}
.vc-video__hint .s{margin-top:6px; font-size:12px; color:var(--muted)}

.vc-section{padding:46px 0}
.vc-section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.vc-h2{
  margin:0;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing:-.02em;
}
.vc-lead{margin:8px 0 0; color:var(--muted); max-width:68ch; font-size:14px}
.vc-section__head--stack{
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
}
.vc-section-title{
  text-align:center;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:800;
  max-width:18ch;
  margin-left:auto;
  margin-right:auto;
  padding-bottom:32px;
}
.vc-section-sub{
  text-align:center;
  color:var(--muted);
  font-size:14px;
  margin:-6px auto 28px;
  max-width:52ch;
}

.vc-proof{padding:20px 0 52px}
.vc-proof__row{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:clamp(12px, 3vw, 28px);
  flex-wrap:wrap;
  margin-top:8px;
}
.vc-phone{
  position:relative;
  flex:0 0 auto;
  width:min(200px, 28vw);
  min-width:140px;
}
.vc-phone__frame{
  border-radius:28px;
  padding:10px 10px 12px;
  border:1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(7,10,13,.9));
  box-shadow: var(--shadow);
}
.vc-phone__notch{
  height:18px;
  margin:0 auto 8px;
  width:38%;
  border-radius:0 0 12px 12px;
  background: rgba(0,0,0,.35);
}
.vc-phone__screen{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(245,197,66,.12), rgba(255,255,255,.04));
  aspect-ratio: 9 / 16;
  max-height:320px;
}
.vc-phone__feed{
  padding:14px 12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.vc-phone__line{
  display:block;
  height:8px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  width:100%;
}
.vc-phone__line--short{width:62%}
.vc-callout{
  position:absolute;
  width:36px;
  height:36px;
  border-radius:50%;
  border:2px solid rgba(245,197,66,.75);
  background: rgba(7,10,13,.75);
  box-shadow: 0 0 0 4px rgba(245,197,66,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.vc-callout__glass{
  width:14px;
  height:14px;
  border:2px solid rgba(245,197,66,.85);
  border-radius:50%;
  position:relative;
}
.vc-callout__glass::after{
  content:"";
  position:absolute;
  width:8px;
  height:2px;
  background: rgba(245,197,66,.85);
  border-radius:2px;
  right:-6px;
  bottom:-4px;
  transform:rotate(35deg);
}
.vc-callout--a{top:18%; left:-4%}
.vc-callout--b{bottom:22%; right:-6%}
@media (max-width:600px){
  .vc-callout--a{left:0}
  .vc-callout--b{right:0}
}

.vc-strap{
  padding:48px 0;
  background: linear-gradient(135deg, rgba(245,197,66,.98), rgba(216,165,50,.88));
  color:#0B120F;
}
.vc-strap__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:32px;
  align-items:center;
}
.vc-strap__quote{
  margin:0;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight:600;
  letter-spacing:-.02em;
  line-height:1.35;
  color:#0B120F;
}
.vc-avatar-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px 12px;
  margin-top:22px;
  max-width:340px;
}
.vc-avatar-cell{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-align:center;
}
.vc-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  border:2px solid rgba(11,18,15,.15);
  background:
    radial-gradient(16px 16px at 35% 35%, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(135deg, rgba(11,18,15,.35), rgba(245,197,66,.45));
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.vc-avatar-cell__name{
  font-size:11px;
  font-weight:650;
  color:rgba(11,18,15,.72);
  line-height:1.2;
}
.vc-strap__media{display:flex; justify-content:center}
.vc-strap__video{
  position:relative;
  width:min(280px, 100%);
  aspect-ratio: 9 / 16;
  border-radius:22px;
  overflow:hidden;
  border:2px solid rgba(11,18,15,.18);
  background:
    radial-gradient(400px 200px at 40% 0%, rgba(255,255,255,.35), transparent 55%),
    linear-gradient(145deg, rgba(11,18,15,.25), rgba(11,18,15,.55));
  box-shadow: 0 28px 60px rgba(0,0,0,.22);
  display:flex;
  align-items:center;
  justify-content:center;
}
.vc-play{
  width:64px;
  height:64px;
  border-radius:50%;
  border:2px solid rgba(11,18,15,.2);
  background: rgba(255,255,255,.92);
  color:#0B120F;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.vc-features{padding:52px 0 40px}
.vc-features .vc-section-title{max-width:40ch}
.vc-keywords{
  text-align:center;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--muted);
  margin:12px 0 32px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px 14px;
}
.vc-keywords__dot{
  width:5px;
  height:5px;
  border-radius:50%;
  background: rgba(245,197,66,.55);
  display:inline-block;
}
.vc-features__layout{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:28px;
  align-items:stretch;
}
.vc-features__visual{
  border-radius: var(--radius2);
  min-height:360px;
  border:1px solid rgba(245,197,66,.22);
  background:
    radial-gradient(520px 240px at 40% 20%, rgba(245,197,66,.22), transparent 60%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(7,10,13,.5));
  box-shadow: var(--shadow);
}
.vc-features__cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.vc-fcard{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px 16px 18px;
  background: rgba(255,255,255,.03);
}
.vc-fcard__icon{
  display:block;
  font-size:18px;
  color:rgba(245,197,66,.85);
  margin-bottom:8px;
  line-height:1;
}
.vc-fcard h3{margin:0 0 8px; font-size:14px; letter-spacing:-.01em}
.vc-fcard p{margin:0; color:var(--muted); font-size:13px; line-height:1.45}
.vc-features__cta{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

#whatsapp.vc-testimonials{padding-top:0}
.vc-testimonials__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:28px;
  align-items:start;
  margin-top:8px;
}

/* Temporarily show testimonials only to admins */
body:not(.vc-is-admin) #videorecensioni,
body:not(.vc-is-admin) #whatsapp{
  display:none !important;
}
.vc-testimonials__label{
  margin:0 0 10px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:750;
  color:rgba(245,197,66,.85);
}
.vc-video--testimonial{border-radius: var(--radius2)}

/* WhatsApp screenshot grid items */
.vc-shot{
  margin:0;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.vc-shot__media{
  width:100%;
  aspect-ratio: 9 / 16;
  background: rgba(0,0,0,.25);
}
.vc-shot__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.vc-shot__cap{
  padding:10px 12px 12px;
  font-size:12px;
  color: rgba(166,178,191,.92);
  text-align:center;
}
.vc-wa{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(15,20,27,.96);
  max-width:340px;
  margin:0 auto;
  box-shadow: var(--shadow);
}
.vc-wa__top{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  background: rgba(18,24,32,.98);
  border-bottom:1px solid var(--line);
}
.vc-wa__back{font-size:22px; color:var(--muted); line-height:1}
.vc-wa__avatar{
  width:36px;height:36px;border-radius:50%;
  background: linear-gradient(135deg, rgba(245,197,66,.35), rgba(255,255,255,.12));
}
.vc-wa__peer{display:flex; flex-direction:column; gap:2px; min-width:0}
.vc-wa__name{font-size:14px; font-weight:650; letter-spacing:-.01em}
.vc-wa__status{font-size:11px; color:rgba(37,211,102,.9)}
.vc-wa__body{
  padding:14px 12px 18px;
  min-height:180px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.vc-wa__bubble{
  max-width:88%;
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  line-height:1.35;
  color:rgba(234,240,246,.92);
}
.vc-wa__bubble--in{
  align-self:flex-start;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.06);
}
.vc-wa__bubble--out{
  align-self:flex-end;
  background: rgba(37,211,102,.12);
  border:1px solid rgba(37,211,102,.22);
}
.vc-wa__hint{
  margin:0;
  padding:10px 12px 14px;
  font-size:11px;
  color:var(--muted);
  text-align:center;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.2);
}

.vc-method__chart{
  margin-top:8px;
  max-width:min(920px, 100%);
  margin-left:auto;
  margin-right:auto;
  border-radius: var(--radius2);
  border:0;
  background:transparent;
  padding:0;
  overflow:hidden;
  line-height:0;
}
.vc-funnel-svg{
  width:100%;
  height:auto;
  display:block;
}

.vc-service__grid{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: var(--gap);
  margin-top:8px;
}
.vc-service__grid > .vc-scard{grid-column: span 2;}
.vc-service__grid > .vc-scard:nth-child(-n+2){grid-column: span 3;}
.vc-scard{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  background: rgba(255,255,255,.03);
  text-align:center;
}
.vc-scard h3{
  margin:0 0 8px;
  font-size:15px;
  letter-spacing:-.01em;
  background: linear-gradient(135deg, var(--accent), rgba(255,255,255,.88));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.vc-scard p{margin:0; color:var(--muted); font-size:13px; line-height:1.45}
.vc-scard__role{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:4px auto 0;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(245,197,66,.22);
  background: rgba(0,0,0,.32);
  color: rgba(234,240,246,.92);
  font-size:12px;
  font-weight:700;
  letter-spacing:-.01em;
}
.vc-scard__list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  text-align:center;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.vc-scard__list li{
  margin:8px 0 0;
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:flex-start;
}
.vc-scard__list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  margin-top:6px;
  flex:0 0 8px;
  background: radial-gradient(circle at 30% 30%, rgba(245,197,66,.95), rgba(245,197,66,.35));
  box-shadow: 0 0 0 1px rgba(245,197,66,.18);
}
.vc-scard__list li{margin:6px 0 0}

@media (max-width: 900px){
  .vc-scard__list{
    text-align:left;
    font-size:13px;
    max-width:42ch;
    margin-left:auto;
    margin-right:auto;
  }
  .vc-scard__list li{
    justify-content:flex-start;
  }
  .vc-scard__list li::before{
    width:7px;
    height:7px;
    flex-basis:7px;
    margin-top:7px;
  }
}
.vc-service__cta{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.vc-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: var(--gap);
}
.vc-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
  min-height: 120px;
}
.vc-card--glow{
  background:
    radial-gradient(520px 220px at 35% 0%, rgba(245,197,66,.12), transparent 60%),
    rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.12);
}
.vc-card h3{margin:0 0 8px; font-size:14px; letter-spacing:-.01em}
.vc-card p{margin:0; color:var(--muted); font-size:13px}

.vc-ecosystem{
  margin-top:14px;
}
.vc-eco{
  grid-column: span 6;
}

.vc-quote{
  grid-column: span 6;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
}
.vc-quote blockquote{
  margin:0;
  font-size:15px;
  letter-spacing:-.01em;
  color:rgba(234,240,246,.92);
}
.vc-quote .by{
  display:flex; gap:10px; align-items:center; color:var(--muted); font-size:13px
}
.vc-quote .dot{
  width:10px;height:10px;border-radius:999px;background:var(--accent); box-shadow:0 0 0 6px rgba(245,197,66,.14)
}

.vc-videos .vc-videoCard{grid-column: span 4}
.vc-videoCard{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.vc-videoCard__thumb{
  position:relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(23,209,143,.14), rgba(255,255,255,.04));
}
.vc-videoCard__thumb::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 220px at 30% 0%, rgba(245,197,66,.22), transparent 60%);
  opacity:.8;
}
.vc-videoCard__meta{padding:14px 14px 16px}
.vc-videoCard__meta .t{font-weight:700; letter-spacing:-.01em; font-size:14px}
.vc-videoCard__meta .s{color:var(--muted); font-size:12px; margin-top:6px}

.vc-cta__box{
  border-radius: 34px;
  border:1px solid rgba(245,197,66,.24);
  background:
    radial-gradient(620px 260px at 22% 0%, rgba(245,197,66,.22), transparent 60%),
    radial-gradient(620px 260px at 78% 100%, rgba(216,165,50,.14), transparent 60%),
    rgba(255,255,255,.03);
  padding:28px;
  box-shadow: var(--shadow);
}
.vc-cta__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:center;
}
.vc-cta__box .vc-h2{font-size: 32px}
.vc-cta__box--final{
  text-align:center;
  padding:42px 28px 48px;
  width:min(690px, 100%);
  margin:0 auto;
}
.vc-cta__title{
  margin:0 auto 12px;
  max-width:100%;
  font-size: clamp(22px, 2.6vw, 34px);
}
.vc-cta__lead{
  margin:0 auto 22px;
  color:var(--muted);
  font-size:14px;
  max-width:100%;
}
.vc-note{
  color:var(--muted);
  font-size:13px;
  margin-top:10px;
}

.vc-footer{
  position:relative;
  border-top:1px solid var(--line);
  background: transparent !important;
  background-image: none !important;
  padding:44px 0 48px;
  color:var(--muted);
  font-size:13px;
  overflow:hidden;
}
.vc-footer__inner{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:22px;
}
.vc-footer__brand{display:flex; flex-direction:column; align-items:center; gap:8px}
.vc-brand--footer{justify-content:center}
.vc-footer__tagline{margin:0; max-width:40ch}
.vc-social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}
.vc-social__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  transition:color .15s ease, border-color .15s ease;
}
.vc-social__link:hover{
  color:var(--text);
  border-color:rgba(245,197,66,.35);
}
.vc-footer__cols{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:24px;
  width:100%;
  max-width:720px;
  text-align:left;
}
.vc-footer__col{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.vc-footer__cols .vc-footer__col:last-child{
  align-items:flex-end;
  text-align:right;
}
.vc-footer__cols .vc-footer__col:first-child .vc-footer__col-title{
  color: rgba(245,197,66,.92);
}
.vc-footer__cols .vc-footer__col:last-child .vc-footer__col-title{
  color: rgba(245,197,66,.92);
}
.vc-footer__col-title{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:750;
  color:rgba(234,240,246,.55);
  margin-bottom:2px;
}
.vc-footer__col a{color:var(--muted)}
.vc-footer__col a:hover{color:var(--text)}
.vc-footer__note{font-size:12px; color:rgba(166,178,191,.85)}
.vc-footer__bottom{
  width:100%;
  max-width:720px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:12px;
  padding-top:8px;
}
.vc-backtotop{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-size:18px;
  line-height:1;
  transition:background .15s ease, border-color .15s ease;
}
.vc-backtotop:hover{
  border-color:rgba(245,197,66,.35);
  background: rgba(245,197,66,.08);
}
.vc-footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
.vc-footlinks{display:flex; gap:12px; flex-wrap:wrap}
.vc-footlinks a{color:var(--muted)}
.vc-footlinks a:hover{color:var(--text)}

.vc-small{font-size:12px; color:rgba(166,178,191,.90)}
.vc-divider{height:1px; background:var(--line); margin:18px 0}

/* Form candidatura inline (hero) */
.vc-candidaturaInline{
  width:100%;
  max-width:560px;
  margin:0 auto;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(245,197,66,.24);
  background:
    radial-gradient(420px 200px at 30% 0%, rgba(245,197,66,.14), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.vc-cta__box--final .vc-candidaturaInline{
  max-width:520px;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}
.vc-candidaturaInline__grid{
  display:grid;
  grid-template-columns:1fr !important;
  grid-auto-flow: row;
  justify-items: stretch;
  gap:12px 14px;
}
.vc-candidaturaInline__field{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  text-align:left;
}
.vc-candidaturaInline__field--full{grid-column:span 1}
.vc-candidaturaInline__label{
  color:rgba(234,240,246,.88);
  font-weight:600;
}
.vc-candidaturaInline__field input{
  width:100%;
  box-sizing:border-box;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-size:14px;
}
.vc-candidaturaInline__field input:focus{
  outline:2px solid rgba(245,197,66,.45);
  outline-offset:1px;
  border-color:rgba(245,197,66,.45);
}
.vc-candidaturaInline__status{
  display:none;
  margin:0;
  font-size:13px;
  text-align:left;
}
.vc-candidaturaInline__status.is-shown{
  display:block;
  margin:14px 0 0;
}
.vc-candidaturaInline__status.is-error{color:rgba(255,120,120,.95)}
.vc-candidaturaInline__status.is-ok{color:rgba(144,220,160,.95)}
.vc-candidaturaInline__actions{
  display:flex;
  justify-content:center;
  margin-top:16px;
}
.vc-candidaturaInline__actions .vc-btn{
  width:100%;
  max-width:560px;
  border-radius:16px;
  padding:14px 16px;
}

@media (max-width: 900px){
  .vc-eco{grid-column: span 12}
  .vc-quote{grid-column: span 12}
  .vc-videos .vc-videoCard{grid-column: span 12}
  .vc-cta__grid{grid-template-columns: 1fr}
  .vc-footer__grid{grid-template-columns: 1fr}
  .vc-nav{display:none}
  .vc-strap__grid{grid-template-columns: 1fr; gap:28px}
  .vc-strap__media{order:-1}
  .vc-features__layout{grid-template-columns: 1fr}
  .vc-features__cards{grid-template-columns: 1fr}
  .vc-footer__cols{grid-template-columns: 1fr; text-align:center}
  .vc-footer__col{align-items:center}
  .vc-footer__cols .vc-footer__col:last-child{align-items:center; text-align:center}
  .vc-footer__bottom{
    justify-content:center;
    text-align:center;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  #step2 .vc-grid > *{grid-column:span 12 !important}
  .vc-testimonials__grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .vc-service__grid{grid-template-columns: 1fr}
  .vc-service__grid > .vc-scard{grid-column: span 1;}
  .vc-service__grid > .vc-scard:nth-child(-n+2){grid-column: span 1;}
}

.vc-service, .vc-method, .vc-testimonials, .vc-cta{
  padding-top:0;
  padding-bottom: 70px;
}

@media (max-width: 600px){
  .vc-only-mobile{display:inline}
  .vc-mobile-only{display:block !important;}
  .vc-desktop-only{display:none !important;}
  .vc-section-title{
    font-size:30px;
    line-height:1;
    padding-bottom:24px;
    max-width:22ch;
  }

  .vc-title.vc-title--center{
    margin-bottom:28px;
  }
  .vc-hero--skeleton .vc-title{
    font-size:28px;
    line-height:1.05;
  }
  .vc-hero__subline{
    font-size:24px;
    color:var(--text);
  }
  #servizio .vc-section-title .accent{
    display:block;
    margin-top:0;
  }
  #servizio .vc-section-title{
    line-height:1;
  }
  .vc-cta__title, .vc-cta__box .vc-h2{
    font-size:28px;
    line-height:1;
  }

  .vc-service, .vc-method, .vc-testimonials, .vc-cta{
    padding-bottom: 40px;
  }
}
