/* Preventivo LP — layout specifico */

.lp-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.lp-nav-back a {
  color: #9CA3AF;
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}
.lp-nav-back a:hover { color: #fff; }

.lp-hero {
  background: var(--navy);
  padding: clamp(48px,7vw,80px) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.lp-hero p {
  color: #9CA3AF;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  max-width: 56ch;
}

.lp-body { display: block; padding: clamp(48px,7vw,80px) 0 clamp(64px,9vw,96px); }
.lp-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
}
@media (max-width: 860px) { .lp-grid { grid-template-columns: 1fr; } }

.lp-info h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--navy);
  margin-bottom: 28px;
}
.lp-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lp-info li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--rame);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  margin-top: 2px;
}
.lp-info li strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.lp-info li p { margin: 0; color: var(--steel); font-size: .9375rem; line-height: 1.6; }

.lp-contact-alt {
  border-top: 1px solid var(--stone);
  padding-top: 24px;
}
.lp-contact-alt p { color: var(--steel); font-size: .875rem; margin-bottom: 12px; }
.lp-contact-alt a {
  display: block;
  color: var(--rame);
  font-weight: 600;
  text-decoration: none;
  font-size: .9375rem;
  margin-bottom: 6px;
}
.lp-contact-alt a:hover { color: var(--navy); }

.lp-form-wrap {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: clamp(24px,4vw,40px);
}
.lp-form { display: flex; flex-direction: column; gap: 20px; }
.lp-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .lp-form .form-row { grid-template-columns: 1fr; } }

.input-file {
  display: block;
  width: 100%;
  font-size: .875rem;
  color: var(--steel);
  cursor: pointer;
  padding: 8px 0;
}
.label-file { color: var(--navy); font-weight: 500; font-size: .875rem; margin-bottom: 6px; display: block; }

.lp-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
}
.lp-footer p { color: #9CA3AF; font-size: .875rem; margin: 0; }
.lp-footer a { color: #9CA3AF; text-decoration: none; }
.lp-footer a:hover { color: #fff; }
