/* ═══════════════════════════════════════════════
   DESIGN TOKENS — Colori ufficiali LG Sicurezza
   #10498A  Blu scuro primario (logo)
   #0078BF  Blu chiaro secondario (logo)
   ═══════════════════════════════════════════════ */
:root {
  --primary:    #10498A;
  --primary-dk: #0C3A6E;
  --secondary:  #0078BF;
  --amber:      #F59E0B;
  --amber-d:    #D97706;
  --red:        #DC2626;
  --red-bg:     #FFF5F5;
  --green:      #059669;
  --white:      #FFFFFF;
  --off:        #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #64748B;
  --gray-800:   #1E293B;
  --font-d: 'Barlow Condensed', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --r:     8px;
  --r-lg:  16px;
  --sh:    0 4px 24px rgba(16,73,138,.10);
  --sh-lg: 0 16px 56px rgba(16,73,138,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }

/* ── layout ── */
.wrap    { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.wrap-sm { max-width: 800px;  margin: 0 auto; padding: 0 28px; }

/* ── tag badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-d); font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.badge--amber  { background: rgba(245,158,11,.12); color: var(--amber-d); border: 1px solid rgba(245,158,11,.3); }
.badge--green  { background: rgba(5,150,105,.10);  color: var(--green);   border: 1px solid rgba(5,150,105,.25); }
.badge--blue   { background: rgba(0,120,191,.10);  color: var(--secondary); border: 1px solid rgba(0,120,191,.25); }
.badge--danger { background: rgba(220,38,38,.10);  color: var(--red);      border: 1px solid rgba(220,38,38,.25); }
.badge--white  { background: rgba(255,255,255,.14); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px); border-radius: 99px; }

/* ════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════ */
.topbar {
  background: var(--primary-dk);
  color: var(--white);
  padding: 9px 0;
  font-size: .9rem;
  font-family: var(--font-b);
  display: flex; justify-content: center; align-items: center;
  gap: 28px; flex-wrap: wrap;
  display:none;
}
.topbar span { opacity: .8; }
.topbar a    { color: var(--amber); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.topbar a:hover { opacity: .85; }
.topbar-sep  { opacity: .3; }

/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */
.lp-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 6px rgba(16,73,138,.07);
}
.lp-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.lp-logo img { height: 58px; width: auto; }

.header-contacts { display: flex; align-items: center; gap: 14px; }
.header-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: .95rem; font-weight: 600; color: var(--gray-600);
  text-decoration: none; transition: color .15s;
}
.header-tel:hover { color: var(--primary); }
.header-tel svg { width: 15px; height: 15px; }
.header-wa {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: var(--white);
  font-family: var(--font-d); font-size: .95rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--r);
  text-decoration: none; transition: background .15s;
}
.header-wa:hover { background: #20bc5b; }
.header-wa svg { width: 15px; height: 15px; }

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  background: var(--primary);
  position: relative; overflow: hidden;
  padding-top: 64px;
  padding-bottom: 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 75% at 100% 55%, rgba(0,120,191,.4) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 5%  85%, rgba(245,158,11,.06) 0%, transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0 48px;
  align-items: end;
  position: relative; z-index: 1;
  min-height: 560px;
}

.hero-copy { padding-bottom: 64px; display: flex; flex-direction: column; gap: 0; }

.hero-live { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.hero-live .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,.25)} 50%{box-shadow:0 0 0 7px rgba(34,197,94,.08)} }
.hero-live-text { font-size: 1rem; color: rgba(255,255,255,.75); font-weight: 500; }

.hero h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: 90px;
  line-height: .95;
  color: var(--white); text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 20px;
}
@media(max-width:768px){
  .hero h1 { font-size: 60px; }
}
.hero h1 em { font-style: normal; color: #7DD3FC; }

.hero-sub {
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,.76); margin-bottom: 28px; max-width: 640px;
}
.hero-sub strong { color: var(--amber); font-weight: 700; }

.hero-bullets { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 11px; }
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; color: rgba(255,255,255,.87);
}
.hero-bullets li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--amber); color: var(--primary);
  font-size: .68rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hero-norm {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.13); border: 1px solid rgba(245,158,11,.32);
  border-radius: var(--r); padding: 8px 14px;
  font-size: .78rem; font-weight: 600; color: var(--amber);
  width: fit-content;
}

.hero-photo {
  position: relative; align-self: end;
  display: flex; align-items: flex-end;
}
.hero-photo img {
  width: 100%; max-width: 550px;
  mix-blend-mode: lighten;
  filter: brightness(1.05) contrast(1.02);
  display: block; vertical-align: bottom;
}
.photo-badge {
  position: absolute; bottom: 36px; left: -10px;
  background: var(--white); border-radius: var(--r-lg);
  padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px;
  border-left: 4px solid var(--secondary);
  min-width: 210px; z-index: 3;
}
.photo-badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.photo-badge-txt strong { display: block; font-family: var(--font-d); font-size: .95rem; font-weight: 800; color: var(--primary); text-transform: uppercase; }
.photo-badge-txt span   { font-size: .75rem; color: var(--gray-600); }

/* ════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .95rem; font-weight: 500; color: var(--gray-600);
}
.trust-ico {
  width: 34px; height: 34px; background: var(--primary);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-ico svg { width: 16px; height: 16px; stroke: white; }

/* ════════════════════════════════════════════════
   FORM SECTION
   ════════════════════════════════════════════════ */
.section-form {
  background: var(--off);
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-200);
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: center;
}

.form-pitch h2 {
  font-family: var(--font-d); font-weight: 900;
  font-size: 60px; line-height: 1;
  color: var(--primary); text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 16px;
}
.form-pitch h2 em { font-style: normal; color: var(--secondary); font-size: 68px; }

@media(max-width:768px){
    .form-pitch h2 {
          font-size: 44px;
    }
    
        .form-pitch h2 em {
          font-size: 48px;
    }
}
.form-pitch p {
  font-size: .97rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px;
}
.form-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.form-perks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--gray-800); font-weight: 400;
}
.form-perks li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--secondary); color: var(--white);
  font-size: .68rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.form-urgency {
  background: var(--red-bg); border: 1px solid rgba(220,38,38,.2);
  border-left: 4px solid var(--red); border-radius: var(--r);
  padding: 14px 18px;
  font-size: 1rem; color: var(--red); font-weight: 500; line-height: 1.6;
}
.form-urgency strong { font-weight: 700; }

.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  position: relative;
}
.form-card-body { padding: 32px 30px 28px; }
.form-card-title {
  font-family: var(--font-d); font-weight: 900; font-size: 2.15rem;
  color: var(--primary); text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 4px;
}
.form-card-sub {
  font-size: .9rem; color: var(--gray-400);
  display: flex; align-items: center; gap: 5px; margin-bottom: 22px;
}
.form-card-sub .ok { color: var(--green); font-weight: 700; }

/* campi form */
.fg { margin-bottom: 14px; position: relative; }
.fg label {
  display: block; font-size: .73rem; font-weight: 700;
  color: var(--gray-600); text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 5px;
}
.fg label .req { color: var(--red); margin-left: 2px; }
.fg input, .fg select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--r);
  font-family: var(--font-b); font-size: 1rem; color: var(--gray-800);
  background: var(--off); outline: none; appearance: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.fg input::placeholder { color: var(--gray-400); }
.fg input:focus, .fg select:focus {
  border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(16,73,138,.09);
}
.fg.ok   input, .fg.ok   select { border-color: var(--green);  background: var(--white); }
.fg.err  input, .fg.err  select { border-color: var(--red);    box-shadow: 0 0 0 3px rgba(220,38,38,.08); }
.fg.ok   input:focus, .fg.ok   select:focus { box-shadow: 0 0 0 3px rgba(5,150,105,.1); }
.fg-icon {
  position: absolute; right: 12px; top: 13px;
  font-size: 12px; pointer-events: none; opacity: 0;
  transition: opacity .15s;
}


.fg.ok  .fg-icon, .fg.err .fg-icon { opacity: 1; }
.fg-msg {
  font-size: .73rem; color: var(--red);
  margin-top: 4px; display: flex; align-items: center; gap: 3px;
  height: 0; overflow: hidden; transition: height .2s;
}
.fg.err .fg-msg { height: 16px; }

.fg-check { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 16px; }
.fg-check input[type=checkbox] { width: 16px; height: 16px; min-width: 16px; margin-top: 2px; accent-color: var(--primary); cursor: pointer; }
.fg-check label { font-size: .74rem; color: var(--gray-600); font-weight: 400; line-height: 1.5; cursor: pointer; }
.fg-check label a { color: var(--primary); text-decoration: underline; }
.fg-check.err label { color: var(--red); }
.err-privacy { font-size:.73rem;color:var(--red);height:0;overflow:hidden;transition:height .2s;margin-top:-10px;margin-bottom:12px;display:flex;align-items:center;gap:3px; }
.err-privacy.show { height:16px; }

/* bottone CTA */
.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: var(--primary); font-family: var(--font-d); font-weight: 800;
  font-size: 1.12rem; letter-spacing: .04em; text-transform: uppercase;
  border: none; border-radius: var(--r); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 20px rgba(245,158,11,.32);
  transition: transform .15s, box-shadow .15s;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.btn-submit::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s;
}
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,.42); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-submit .spin {
  display: none; width: 17px; height: 17px;
  border: 2px solid rgba(16,73,138,.3); border-top-color: var(--primary);
  border-radius: 50%; animation: spin .7s linear infinite;
}
.btn-submit.loading .spin { display: block; }
.btn-submit.loading .btn-lbl { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-copy .btn-submit {
  width: fit-content;
  padding: 15px 50px !important;
  margin-bottom: 30px !important;
}

.form-micro {
  text-align: center; font-size: .73rem; color: var(--gray-400); margin-top: 9px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.btn-wa-sm {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: var(--white); padding: 11px;
  border-radius: var(--r); text-decoration: none;
  font-family: var(--font-d); font-size: .95rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; margin-top: 10px;
  transition: background .15s, transform .15s;
}
.btn-wa-sm:hover { background: #20bc5b; transform: translateY(-1px); }
.btn-wa-sm svg { width: 17px; height: 17px; }

.form-trust-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.ftr-item {
  display: flex; align-items: center; gap: 4px;
  font-size: .72rem; color: var(--gray-400); font-weight: 500;
}
.ftr-item svg { width: 12px; height: 12px; color: var(--green); }

/* success state */
.form-success { display: none; text-align: center; padding: 32px 24px 24px; animation: fadeUp .4s ease both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
.success-ico { width: 68px; height: 68px; background: rgba(5,150,105,.1); border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 16px; font-size:2rem; }
.form-success h3 { font-family:var(--font-d); font-weight:900; font-size:1.4rem; color:var(--primary); margin-bottom:8px; text-transform:uppercase; }
.form-success p  { font-size:.9rem; color:var(--gray-600); line-height:1.65; margin-bottom:16px; }
.success-tag { display:inline-flex; align-items:center; gap:6px; background:rgba(5,150,105,.1); color:var(--green); border-radius:0px; padding:6px 14px; font-size:.75rem; font-weight:700; }

/* ════════════════════════════════════════════════
   SEZIONE PROBLEMA
   ════════════════════════════════════════════════ */
.section-problem { padding: 80px 0; }
.sec-head { text-align: center; }
.sec-label {
  display: inline-block; width:fit-content; font-family: var(--font-d); font-size: 1rem; font-weight: 700;
  padding: 12px 20px; background: #f1f5ff;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px;
}
.sec-label--danger  { background: var(--red); color: white; }
.sec-label--primary { color: var(--primary); }
.sec-label--green   { background: #00c439; color: white; }
.sec-label--sec     { color: var(--secondary); }
.sec-title {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem); line-height: 1.02;
  color: var(--gray-800); margin-bottom: 14px;
  text-transform:uppercase;
}
.sec-title--red   { color: var(--red); }
.sec-title--white { color: var(--white); }
.sec-sub { font-size: 1rem; color: var(--gray-600); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.sec-sub--white { color: rgba(255,255,255,.72); }

.risk-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 16px; margin-top: 40px; text-align: left;
}
.risk-card {
  background: var(--white); border-radius: var(--r-lg); padding: 22px 20px;
  border: 1px solid rgba(220,38,38,.15); border-left: 4px solid var(--red);
  box-shadow: 0 2px 10px rgba(220,38,38,.05);
  transition: transform .18s, box-shadow .18s;
}
.risk-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(220,38,38,.1); }
.risk-card .ico { font-size: 1.6rem; margin-bottom: 10px; }
.risk-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 1.35rem; color: var(--red); margin-bottom: 7px; }
.risk-card p  { font-size: .9rem; color: var(--gray-600); line-height: 1.58; }

.alert-box {
  text-decoration: none;
  background: var(--red); color: var(--white); border-radius: var(--r-lg);
  padding: 20px 26px; margin-top: 30px;
  display: flex; align-items: center; gap: 16px; text-align: left;
  margin: 30px auto; width: fit-content; text-align: center;
}
.alert-box-ico { font-size: 1.8rem; flex-shrink: 0; }
.alert-box strong {
  text-decoration: none;
  font-family: var(--font-d); font-size: 1.5rem; color: white;
  font-weight: 700; display: block; margin-bottom: 3px;
  letter-spacing: .1px;
}
.alert-box span { text-decoration: none; font-size: 1rem; opacity: .9; color: white; }
a.alert-box { text-decoration: none; }

/* ════════════════════════════════════════════════
   SEZIONE SOLUZIONE
   ════════════════════════════════════════════════ */
.section-solution { padding: 88px 0; background: var(--white); }
.sol-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 44px;
}
.sol-visual {
  background: var(--primary); border-radius: var(--r-lg);
  padding: 36px 30px; color: var(--white); position: relative; overflow: hidden;
}
.sol-visual::after {
  content: ''; position: absolute; bottom: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.sol-steps { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.step { display: flex; gap: 15px; align-items: flex-start; }
.step-num {
  width: 34px; height: 34px; background: var(--amber); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-d); font-weight: 900; font-size: .95rem; color: var(--primary);
}
.step-txt strong { font-family: var(--font-d); font-weight: 700; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .04em; display: block; margin-bottom: 3px; }
.step-txt span   { font-size: .9rem; opacity: .75; line-height: 1.55; }

.services { display: flex; flex-direction: column; gap: 12px; }
.service-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r); border: 1px solid var(--gray-200);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.service-row:hover { border-color: rgba(0,120,191,.3); box-shadow: var(--sh); transform: translateX(4px); }
.service-ico { width: 42px; height: 42px; background: var(--gray-100); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.service-row strong { display: block; font-family: var(--font-d); font-weight: 700; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .03em; color: var(--gray-800); margin-bottom: 3px; }
.service-row span   { font-size: .9rem; color: var(--gray-400); line-height: 1.5; }

/* ════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════ */
.section-stats { background: var(--primary-dk); padding: 58px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: var(--font-d); font-weight: 900; font-size: clamp(3.2rem, 4vw, 4.2rem); color: var(--amber); line-height: 1; display: block; margin-bottom: 6px; }
.stat-label { font-size: .9rem; color: rgba(255,255,255,.6); }


/* ════════════════════════════════════════════════
   BENEFICI
   ════════════════════════════════════════════════ */
.section-benefits { padding: 88px 0; background: var(--off); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 44px;
}
@media(max-width:768px){
    .benefits-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
.benefit-card {
  background: var(--white); border-radius: var(--r-lg); padding: 26px 22px;
  border: 1px solid var(--gray-100); box-shadow: 0 2px 8px rgba(16,73,138,.05);
  transition: transform .18s, box-shadow .18s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.ben-ico { width: 50px; height: 50px; background: rgba(16,73,138,.08); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.3rem; }
.benefit-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 1.35rem; color: var(--primary); margin-bottom: 7px; }
.benefit-card p  { font-size: .95rem; color: var(--gray-400); line-height: 1.6; }

/* ════════════════════════════════════════════════
   TESTIMONIANZE
   ════════════════════════════════════════════════ */
.section-testi { padding: 88px 0; background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 44px;
}
.testi-card {
  background: var(--off); border-radius: var(--r-lg); padding: 26px 22px;
  border: 1px solid var(--gray-200); position: relative;
}
.testi-card::before { content:'"'; font-family:Georgia,serif; font-size:4rem; color:var(--secondary); opacity:.18; position:absolute; top:10px; left:18px; line-height:1; }
.stars { color: var(--amber); font-size: 1rem; margin-bottom: 12px; }
.testi-card blockquote { font-size: 1rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 16px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 40px; height: 40px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0; }
.testi-author strong { display: block; font-weight: 600; font-size: .95rem; color: var(--gray-800); }
.testi-author span   { font-size: .76rem; color: var(--gray-400); }

/* ════════════════════════════════════════════════
   GARANZIA
   ════════════════════════════════════════════════ */
.section-guarantee { background: var(--primary); padding: 68px 0; text-align: center; }
.guarantee-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr));
  gap: 30px; margin-top: 44px;
}
.gua-item { text-align: center; }
.gua-ico  { font-size: 2.2rem; display: block; margin-bottom: 11px; }
.gua-item strong { display: block; font-family: var(--font-d); font-weight: 700; font-size: 1.35rem; color: var(--white); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 5px; }
.gua-item span   { font-size: 1rem; color: rgba(255,255,255,.58); }

/* ════════════════════════════════════════════════
   CTA FINALE
   ════════════════════════════════════════════════ */
.section-cta { background: var(--secondary); padding: 88px 0; text-align: center; }
.cta-h { font-family: var(--font-d); font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; color: var(--white); line-height: .97; margin-bottom: 14px; letter-spacing: -.01em; }
.cta-p { font-size: 1rem; color: rgba(255,255,255,.78); margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  padding: 15px 30px; background: var(--white); color: var(--primary);
  font-family: var(--font-d); font-size: .95rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; border: none;
  border-radius: var(--r); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
  transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-ol {
  padding: 15px 26px; background: transparent; color: var(--white);
  font-family: var(--font-d); font-size: .95rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.5); border-radius: var(--r);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .15s, background .15s;
}
.btn-ol.whatsapp {
    background:#25D366;
}
.btn-ol:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.section-faq { padding: 88px 0; background: var(--off); }
.faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 9px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r); overflow: hidden; transition: box-shadow .18s; }
.faq-item.open { box-shadow: var(--sh); border-color: rgba(16,73,138,.2); }
.faq-q {
  width: 100%; padding: 17px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-d); font-weight: 600; font-size: 1.15rem;
  color: var(--gray-800); background: none; border: none; cursor: pointer; text-align: left;
  transition: background .12s;
}
.faq-q:hover { background: var(--off); }
.faq-ico {
  width: 24px; height: 24px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-size: 1rem; font-weight: 900; flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--amber-d); }
.faq-ans {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  font-size: .95rem; color: var(--gray-600); line-height: 1.7;
}
.faq-item.open .faq-ans { max-height: 280px; padding: 0 20px 18px; }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: #10498A;
  padding: 50px 0 28px;
  color: rgba(255,255,255,.72);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 44px; margin-bottom: 34px;
}
.footer-logo { height: 46px; width: auto; filter: brightness(0) invert(1); display: block; margin-bottom: 14px; }
.footer-about { font-size: .95rem; line-height: 1.7; max-width: 290px; }
.footer-col h4 {
  font-family: var(--font-d); font-size: .95rem; font-weight: 700;
  color: var(--amber); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 13px;
}
.footer-col a, .footer-col p, .footer-col span {
  display: block; font-size: .84rem; color: rgba(255,255,255,.6);
  text-decoration: none; margin-bottom: 7px; transition: color .14s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.42); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ════════════════════════════════════════════════
   STICKY MOBILE
   ════════════════════════════════════════════════ */
.sticky-m {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 300; background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 11px 14px; gap: 9px; box-shadow: 0 -4px 18px rgba(0,0,0,.11);
}
.btn-sticky {
  flex: 1; padding: 13px 0;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: var(--primary); font-family: var(--font-d); font-size: 1.1rem;
  font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  border: none; border-radius: var(--r); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sticky-wa {
  width: 54px; height: 54px; background: #25D366; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0;
}
.sticky-wa svg { width: 22px; height: 22px; }

/* ════════════════════════════════════════════════
   ANIMAZIONI SCROLL
   ════════════════════════════════════════════════ */
.aos { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.aos.s1 { transition-delay: .1s; }
.aos.s2 { transition-delay: .2s; }
.aos.s3 { transition-delay: .3s; }
.aos.s4 { transition-delay: .4s; }
.aos.in { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   LEAD MAGNET
   ════════════════════════════════════════════════ */
.section-leadmag {
  padding: 88px 0;
  background: var(--primary-dk);
  position: relative;
  overflow: hidden;
}
/* pattern puntini di sfondo */
.section-leadmag::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%,  rgba(0,120,191,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(245,158,11,.07) 0%, transparent 55%);
}

/* ── 2 colonne: visual sx / copy dx ── */
.leadmag-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}

/* ════ VISUAL — libro 3D ════ */
.leadmag-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 30px 0 50px;
}

.

.leadmag-book {
  position: relative;
  width: 200px;
  height: 270px;
  transform: perspective(900px) rotateY(-18deg);
  transition: transform .4s ease;
  filter: drop-shadow(-14px 18px 32px rgba(0,0,0,.45));
}
.leadmag-book:hover {
  transform: perspective(900px) rotateY(-8deg);
}

/* copertina */
.leadmag-book__cover {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 3px 8px 8px 3px;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 20px 18px;
  gap: 6px;
  overflow: hidden;
}
/* riflesso luce sulla copertina */
.leadmag-book__cover::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, transparent 100%);
  pointer-events: none;
}

.leadmag-book__badge {
  position: absolute; top: 16px; right: 14px;
  background: var(--amber);
  color: var(--primary); font-family: var(--font-d);
  font-size: .7rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
}
.leadmag-book__icon {
  font-size: 2.2rem;
  margin-bottom: 4px;
}
.leadmag-book__title {
  font-family: var(--font-d); font-weight: 900;
  font-size: 1.35rem; line-height: 1.15;
  color: var(--white); text-transform: uppercase;
  letter-spacing: .03em;
}
.leadmag-book__brand {
  font-size: .72rem; color: rgba(255,255,255,.55);
  font-family: var(--font-b); font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
}

/* costa del libro */
.leadmag-book__spine {
  position: absolute; top: 0; left: -16px; bottom: 0;
  width: 16px;
  background: linear-gradient(90deg, #072a56 0%, var(--primary) 100%);
  border-radius: 3px 0 0 3px;
  transform: rotateY(-90deg) translateX(-8px);
  transform-origin: right center;
}

/* pagine (lato destro) */
.leadmag-book__pages {
  position: absolute; top: 3px; right: -9px; bottom: 3px;
  width: 9px;
  background: repeating-linear-gradient(
    90deg,
    #e2e8f0 0px, #e2e8f0 1px,
    #f8fafc 1px, #f8fafc 3px
  );
  border-radius: 0 2px 2px 0;
  box-shadow: 2px 0 6px rgba(0,0,0,.15);
}

/* badge fluttuante */
.leadmag-book__floatbadge {
  position: absolute;
  bottom: 10px; right: -10px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px;
  border-left: 4px solid var(--amber);
  min-width: 170px;
}
.leadmag-book__floatbadge-ico { font-size: 1.3rem; flex-shrink: 0; }
.leadmag-book__floatbadge strong {
  display: block; font-family: var(--font-d); font-size: .95rem;
  font-weight: 800; color: var(--primary); text-transform: uppercase;
}
.leadmag-book__floatbadge span {
  font-size: .72rem; color: var(--gray-400);
}

/* ════ COPY ════ */
.leadmag-copy { display: flex; flex-direction: column; gap: 0; }

.leadmag-title {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2.65rem, 4vw, 3.8rem); line-height: .97;
  color: var(--white); text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 14px 0 18px;
}
.leadmag-title em {
  font-style: normal;
  color: var(--amber);
}

.leadmag-desc {
  font-size: 1rem; line-height: 1.72;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px; max-width: 520px;
}

/* feature list */
.leadmag-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 28px;
}
.leadmag-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; color: rgba(255,255,255,.87);
}
.leadmag-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--amber); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}

/* ── form inline ── */
.leadmag-form { display: flex; flex-direction: column; gap: 0; }

.leadmag-input-row {
  display: flex; gap: 10px; align-items: flex-start;
}

/* il wrapper .fg in modalità inline (senza label visibile) */
.fg--inline {
  flex: 1; margin-bottom: 0; width:100%;
}
.fg--inline .fg-msg {
  color: rgba(255,200,100,.95);  /* leggibile su sfondo scuro */
}

.leadmag-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: var(--r);
  font-family: var(--font-b); font-size: 1rem;
  color: var(--white);
  background: rgba(255,255,255,.09);
  outline: none;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.leadmag-input::placeholder { color: rgba(255,255,255,.4); }
.leadmag-input:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,.13);
  box-shadow: 0 0 0 3px rgba(245,158,11,.18);
}
/* stati valida/errore sul campo scuro */
.fg--inline.ok  .leadmag-input { border-color: var(--green); }
.fg--inline.err .leadmag-input { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,.15); }

/* il bottone dentro il form lead magnet */
.leadmag-btn {
  width: auto;           /* non occupa tutta la larghezza */
  padding: 13px 24px;
  font-size: 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.leadmag-note {
    margin-top: 11px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
    text-align: center;
}
}

/* ── success state ── */
.leadmag-success {
  display: none;
  animation: fadeUp .4s ease both;
  padding: 24px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  text-align: center;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .hero-grid   { grid-template-columns: 1fr 360px; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-pitch  { max-width: 600px; margin: 0 auto; text-align: center; }
  .form-pitch .form-perks { align-items: flex-start; display: inline-flex; flex-direction: column; }
  .form-card   { max-width: 520px; margin: 0 auto; width: 100%; }
  /* lead magnet */
  .leadmag-grid { grid-template-columns: 280px 1fr; gap: 40px; }
}
@media (max-width: 820px) {
  .hero-grid   { grid-template-columns: 1fr; }
  .hero-copy   { padding-bottom: 40px; }
  .hero-photo  { display: none; }
  .sol-grid    { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  /* lead magnet: visual sopra, copy sotto */
  .leadmag-grid { grid-template-columns: 1fr; gap: 44px; }
  .leadmag-visual { order: -1; padding: 20px 0 40px; }
  .leadmag-title { font-size: 2.4rem; }
  .leadmag-input-row { flex-direction: column; }
  .leadmag-btn { width: 100%; }
}
@media (max-width: 600px) {
    .leadmag-visual img {
        max-width:75% !important;
        width:75% !important;
    }
  .topbar { gap: 10px; font-size: .74rem; }
  .header-tel { display: none; }
  .lp-logo img { height: 60px; }
  .sticky-m { display: flex; }
  body { padding-bottom: 74px; }
  .section-problem, .section-solution, .section-benefits,
  .section-testi, .section-guarantee, .section-cta, .section-faq { padding: 56px 0; }
  .section-form { padding: 48px 0; }
  .section-leadmag { padding: 56px 0; }
  .hero { padding-top: 48px; }
  .trust-inner { justify-content: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(even) { border-right: none; }
  .leadmag-book { width: 170px; height: 230px; }
  .leadmag-book__floatbadge { right: 0; min-width: 155px; }
}

.social-proof {
    text-align:center; padding:60px 24px 50px; background:#fff; max-width:900px; margin:0 auto;
}

.social-proof_loghi {
    display:flex; align-items:center; justify-content:center; gap:40px; flex-wrap:wrap;
}

.social-proof_loghi img {
    height: 120px;
    filter: grayscale(1);
    opacity:0.5;
    transition:.25s ease-in-out;
}

.social-proof_loghi img:hover {
    filter: grayscale(0);
    opacity:1 !important;
}


.social-proof h2 {
font-family: var(--font-d); font-weight: 900; color: #111 !important; font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; line-height: .97; margin-bottom: 14px; letter-spacing: -.01em;
    margin: 0 0 32px 0;
}

.social-proof-btn {
    display:inline-block; background:var(--secondary); color:#fff; font-size:14px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:16px 36px; border-radius:50px; text-decoration:none; margin-bottom:52px;
}

.splide__arrow--prev {
    left: -80px !important;
}

.splide__arrow--next {
    right: -80px !important;
}

@media(max-width:768px){

.splide__arrow--prev {
        left: 1em !important;
}

.splide__arrow--next {
        right: 1em !important;
}

.splide__slide {
        text-align: center;
    margin: 0 auto;
    display: flex;
    width: 100%;
    justify-content: center;
}

.social-proof_loghi img {
    height: 120px;
    filter: grayscale(0);
    opacity:1;
    transition:.25s ease-in-out;
}

.lp-header-inner {
        width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-contacts {
    display: none;
}

.form-perks li {
    text-align:left;
}

.testi-grid {
  display: grid; grid-template-columns: repeat(1, 1fr);
  gap: 18px; margin-top: 44px;
}

}


.splide__arrow {
    background: var(--primary) !important;
    height: 3em !important;
    width: 3em !important;
}

.splide__arrow svg  {
    fill:white !important;
}


