@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Source+Sans+3:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@600;700;800&display=swap");
:root {
  --bg: #f4f6f8;
  --panel: #ffffff;
  --text: #1b2430;
  --muted: #5f6b7a;
  --primary: #0d6e6e;
  --primary-strong: #095252;
  --secondary: #1f3b57;
  --danger: #a13030;
  --border: #d8dde5;
  --success-bg: #e9f8f0;
  --success-text: #205c3b;
  --error-bg: #feecec;
  --error-text: #8b2d2d;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #e8eff5 0, var(--bg) 45%);
}
.container {
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding-top: 2em;
}
.topbar {
  background: linear-gradient(120deg, #0c3f4f, #1f3b57);
  color: #fff;
  padding: 1.2rem 0;
  margin-bottom: 1.3rem;
}
h1,
h2,
h3 {
  margin: 0 0 0.6rem;
}
h1 {
  font-family: "Manrope", "Source Sans 3", sans-serif;
  font-size: 1.6rem;
}
.tagline {
  margin: 0;
  opacity: 0.9;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.site-logo {
  width: 62px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.row,
.row-between {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.row-between {
  justify-content: space-between;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(16, 38, 59, 0.05);
}
.small-panel {
  max-width: 480px;
}
.filters,
.stack {
  display: grid;
  gap: 0.6rem;
}
.quote-form {
  gap: 0.95rem;
}
.quote-form-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
  background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%);
  display: grid;
  gap: 0.7rem;
}
.quote-form-block-final {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}
.quote-section-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.quote-step {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #1f3b57;
  color: #fff;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.quote-section-subtitle {
  margin: -0.1rem 0 0.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.quote-subsection-title {
  margin: 0.35rem 0 0.15rem;
  font-size: 1rem;
  color: #234765;
  border-left: 3px solid #6f8ba6;
  padding-left: 0.5rem;
}
.filters {
  grid-template-columns: 2fr 1fr 1fr auto auto;
}
.columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
input,
select,
textarea,
button {
  font: inherit;
}
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}
/* ── Custom checkbox ─── */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #c6d2e0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  vertical-align: middle;
  transition: border-color 140ms, background 140ms, box-shadow 140ms;
}
input[type="checkbox"]:hover {
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}
input[type="checkbox"]:checked {
  background: #0f766e;
  border-color: #0f766e;
}
input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: 2.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
input[type="checkbox"]:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
}
input[type="checkbox"]:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
label {
  font-weight: 600;
  font-size: 0.95rem;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  cursor: pointer;
}
.inline-form {
  margin: 0;
  display: inline-block;
}
.btn {
  display: inline-block;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease;
}
.btn:hover {
  background: var(--primary-strong);
}
.btn-secondary {
  background: var(--secondary);
}
.btn-secondary:hover {
  background: #152a3f;
}
.btn-light {
  background: #eef2f7;
  color: #1f3b57;
}
.btn-light:hover {
  background: #dde6f1;
}
.btn-danger {
  background: var(--danger);
}
.btn-danger:hover {
  background: #842323;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem;
  background: #fff;
}
.product-card-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 0.6rem;
}
.product-detail-image {
  width: min(100%, 560px);
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 0.9rem;
}
.quote-doc-thumb {
  width: min(260px, 100%);
  height: auto;
  display: block;
  margin-top: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.badge {
  display: inline-block;
  background: #f7e8a1;
  color: #564500;
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  margin-bottom: 0.45rem;
}
.meta {
  margin: 0.25rem 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.price {
  margin: 0.55rem 0;
  font-weight: 700;
  color: #15504f;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
th,
td {
  border-bottom: 1px solid var(--border);
  padding: 0.55rem;
  text-align: left;
  vertical-align: top;
}
.alert {
  margin-bottom: 1rem;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}
.alert-success {
  background: var(--success-bg);
  color: var(--success-text);
}
.alert-error {
  background: var(--error-bg);
  color: var(--error-text);
}
.hint {
  color: var(--muted);
}
.contact-box {
  margin-top: 1rem;
  padding: 0.7rem;
  border-radius: 8px;
  background: #f1f4f9;
}
.payment-box {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid #d0d8e3;
  background: linear-gradient(160deg, #f8fbff 0%, #f0f6fb 100%);
}
.payment-box h3 {
  margin-bottom: 0.45rem;
}
.feedback-panel {
  position: relative;
  border: 1px dashed #59748d;
  background: linear-gradient(180deg, #f7fbff 0%, #f0f6fb 100%), repeating-linear-gradient(0deg, rgba(74, 118, 160, 0.06) 0, rgba(74, 118, 160, 0.06) 1px, transparent 1px, transparent 22px);
  padding-top: 2.1rem;
}
.feedback-panel::before {
  content: "DEBUG FEEDBACK";
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #244766;
  background: #dfeefe;
  border: 1px solid #a8c4e3;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}
.feedback-panel h2 {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}
.feedback-panel label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.86rem;
  color: #294a68;
}
.feedback-panel input,
.feedback-panel textarea {
  border: 1px solid #9eb3c8;
  background: #fcfeff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.feedback-panel input:focus,
.feedback-panel textarea:focus {
  outline: 2px solid rgba(13, 110, 110, 0.2);
  border-color: #4f789d;
}
.feedback-panel .btn {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.01em;
}
.feedback-panel .hint {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.84rem;
}
.feedback-panel .hint code {
  background: #e3edf8;
  border: 1px solid #bfd2e6;
  border-radius: 6px;
  padding: 0.08rem 0.35rem;
}
.feedback-panel textarea {
  min-height: 130px;
  resize: vertical;
}
.profile-status {
  margin-bottom: 0.9rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.profile-status-ready {
  background: #e9f8f0;
  color: #205c3b;
  border-color: #b8dfc9;
}
.profile-status-pending {
  background: #fff5e8;
  color: #7a4a15;
  border-color: #efd0a8;
}
.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.profile-form-grid label {
  display: grid;
  gap: 0.35rem;
}
.profile-form-grid .field-full {
  grid-column: 1 / -1;
}
.form-errors {
  margin: 0;
  padding-left: 1.1rem;
}
.form-errors li {
  margin-bottom: 0.3rem;
}
.json-box {
  margin: 0;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #cfd7e2;
  background: #f8fbff;
  overflow: auto;
  max-height: 360px;
  font-size: 0.82rem;
  line-height: 1.35;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.admin-product-thumb {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.image-preview-box {
  display: grid;
  gap: 0.6rem;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fbff;
}
.admin-product-image-preview {
  width: min(320px, 100%);
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.footer {
  padding: 0.8rem 0 1.2rem;
  color: var(--muted);
}
/* ── Responsive (condiviso) ─── */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filters {
    grid-template-columns: 1fr 1fr;
  }
  .columns-3,
  .columns-2 {
    grid-template-columns: 1fr;
  }
  .profile-form-grid {
    grid-template-columns: 1fr;
  }
  .quote-form-block {
    padding: 0.8rem;
  }
}
@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  td .row {
    flex-direction: column;
    align-items: stretch;
  }
  .site-logo {
    width: 52px;
  }
}
/* ════════════════════════════════════════════════════════════════════
   LANDING — "Scheda Tecnica" (blueprint motorsport)
   Dominante carbonio, accento teal luminoso + ambra, display Saira
   Condensed, etichette tecniche monospace, cornici con tick angolari.
   ════════════════════════════════════════════════════════════════════ */
.landing-body {
  --lp-carbon: #0a1219;
  --lp-carbon-2: #0e1c27;
  --lp-steel: #14242f;
  --lp-line: rgba(141, 178, 199, 0.13);
  --lp-teal: #14b8a6;
  --lp-teal-bright: #2dd4bf;
  --lp-amber: #fbbf24;
  --lp-paper: #eef2f4;
  --lp-ink: #122029;
  --lp-muted: #5b6e7c;
  margin: 0;
  background: var(--lp-paper);
  color: var(--lp-ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}
/* — primitive tecniche — */
.lp-grid-bg {
  background-image: linear-gradient(var(--lp-line) 1px, transparent 1px), linear-gradient(90deg, var(--lp-line) 1px, transparent 1px);
  background-size: 44px 44px;
}
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-teal);
}
.lp-tag::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.lp-ticks {
  position: relative;
}
.lp-ticks::before,
.lp-ticks::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.85;
}
.lp-ticks::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--lp-teal);
  border-left: 2px solid var(--lp-teal);
}
.lp-ticks::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--lp-teal);
  border-right: 2px solid var(--lp-teal);
}
.lp-display {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
}
.lp-container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}
/* — topbar — */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 1.4rem;
  background: rgba(10, 18, 25, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(141, 178, 199, 0.12);
  transition: background 0.3s ease;
}
.lp-nav.scrolled {
  background: rgba(10, 18, 25, 0.94);
}
.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}
.lp-nav-brand img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.lp-nav-brand em {
  color: var(--lp-teal-bright);
  font-style: normal;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lp-nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.lp-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  background: var(--lp-teal);
  color: #062420;
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background 0.18s, transform 0.15s;
}
.lp-btn:hover {
  background: var(--lp-teal-bright);
  transform: translateY(-2px);
}
.lp-btn-nav {
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
}
.lp-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px rgba(141, 178, 199, 0.35);
}
.lp-btn-ghost:hover {
  background: rgba(45, 212, 191, 0.08);
  color: #fff;
}
/* — hero — */
.lp-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--lp-carbon);
  color: #eef6f5;
  padding: calc(60px + 4.5rem) 0 5.5rem;
}
.lp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  opacity: 0.5;
}
.lp-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse 70% 60% at 75% 20%, rgba(20, 184, 166, 0.16), transparent 60%), linear-gradient(160deg, rgba(10, 18, 25, 0.94) 0%, rgba(12, 25, 34, 0.88) 55%, rgba(10, 18, 25, 0.96) 100%);
}
.lp-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
}
/* mirino decorativo */
.lp-crosshair {
  position: absolute;
  top: 50%;
  right: -130px;
  width: 460px;
  height: 460px;
  margin-top: -230px;
  z-index: -1;
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 50%;
  animation: lp-spin 80s linear infinite;
  pointer-events: none;
}
.lp-crosshair::before {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px dashed rgba(45, 212, 191, 0.3);
  border-radius: 50%;
}
.lp-crosshair::after {
  content: "";
  position: absolute;
  inset: 160px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 50%;
}
.lp-crosshair-lines {
  position: absolute;
  inset: 0;
}
.lp-crosshair-lines::before,
.lp-crosshair-lines::after {
  content: "";
  position: absolute;
  background: rgba(45, 212, 191, 0.22);
}
.lp-crosshair-lines::before {
  left: 50%;
  top: -6%;
  bottom: -6%;
  width: 1px;
}
.lp-crosshair-lines::after {
  top: 50%;
  left: -6%;
  right: -6%;
  height: 1px;
}
@keyframes lp-spin {
  to {
    transform: rotate(360deg);
  }
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 3.5rem;
  align-items: center;
}
.lp-hero-copy {
  max-width: 60ch;
}
.lp-live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 246, 245, 0.75);
  border: 1px solid rgba(141, 178, 199, 0.25);
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.6rem;
}
.lp-live .lp-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-teal-bright);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.5);
  animation: lp-pulse 2.2s ease-out infinite;
}
@keyframes lp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(45, 212, 191, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  }
}
.lp-hero-title {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: clamp(3rem, 8.2vw, 6rem);
  margin: 0 0 1.2rem;
  color: #f4fbfa;
}
.lp-hero-title .lp-target-word {
  position: relative;
  color: var(--lp-teal-bright);
  white-space: nowrap;
}
.lp-hero-title .lp-target-word::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.62em;
  width: 0.42em;
  height: 0.42em;
  margin-top: -0.21em;
  border: 2px solid var(--lp-amber);
  border-radius: 50%;
  background: radial-gradient(circle, var(--lp-amber) 18%, transparent 22%);
  opacity: 0.9;
}
.lp-hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(238, 246, 245, 0.78);
  max-width: 52ch;
  margin: 0 0 2.1rem;
}
.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
.lp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 246, 245, 0.55);
}
.lp-hero-meta span b {
  color: var(--lp-teal-bright);
  font-weight: 700;
}
/* scheda tecnica */
.lp-sheet {
  background: rgba(14, 28, 39, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(141, 178, 199, 0.22);
  padding: 1.5rem 1.5rem 1.4rem;
}
.lp-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 246, 245, 0.85);
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed rgba(141, 178, 199, 0.3);
}
.lp-sheet-head i {
  font-style: normal;
  color: var(--lp-amber);
}
.lp-sheet-rows {
  margin: 1rem 0 1.3rem;
  display: grid;
  gap: 0.65rem;
}
.lp-sheet-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}
.lp-sheet-row .k {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 246, 245, 0.5);
  padding-top: 0.15rem;
}
.lp-sheet-row .v {
  color: #eef6f5;
  font-weight: 600;
  text-align: right;
}
.lp-sheet .lp-btn {
  width: 100%;
}
.lp-sheet-note {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(238, 246, 245, 0.55);
}
.lp-sheet-qr {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(141, 178, 199, 0.3);
}
.lp-sheet-qr img {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 10px;
  border: 1px solid rgba(141, 178, 199, 0.3);
}
.lp-sheet-qr span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
  color: rgba(238, 246, 245, 0.6);
}
/* — marquee — */
.lp-marquee {
  overflow: hidden;
  background: var(--lp-carbon-2);
  border-top: 1px solid rgba(141, 178, 199, 0.14);
  border-bottom: 1px solid rgba(141, 178, 199, 0.14);
  padding: 0.85rem 0;
}
.lp-marquee:hover .lp-marquee-track {
  animation-play-state: paused;
}
.lp-marquee-track {
  display: flex;
  width: max-content;
  gap: 2.6rem;
  animation: lp-marquee 38s linear infinite;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 246, 245, 0.55);
  white-space: nowrap;
}
.lp-marquee-track i {
  font-style: normal;
  color: var(--lp-teal);
}
@keyframes lp-marquee {
  to {
    transform: translateX(-50%);
  }
}
/* — sezioni chiare — */
.lp-main {
  padding: 4.5rem 0 0;
}
.lp-section {
  margin-bottom: 4.5rem;
}
.lp-section-head {
  margin-bottom: 2.2rem;
}
.lp-section-head h2 {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--lp-ink);
  margin: 0.5rem 0 0;
}
/* split auto/moto */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.lp-split-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--lp-steel) 0%, var(--lp-carbon) 100%);
  color: #eef6f5;
  padding: 2.6rem 2.2rem 2.2rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(141, 178, 199, 0.16);
  transition: box-shadow 0.25s, transform 0.25s;
}
.lp-split-card:hover {
  box-shadow: inset 0 0 0 1px var(--lp-teal), 0 18px 40px rgba(10, 25, 34, 0.25);
  transform: translateY(-4px);
}
.lp-split-card:hover .lp-split-go {
  background: var(--lp-teal);
  color: #062420;
  transform: translateX(4px);
}
.lp-split-card:hover .lp-split-num {
  opacity: 0.4;
}
.lp-split-num {
  position: absolute;
  top: 0.6rem;
  right: 1.1rem;
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: clamp(6rem, 12vw, 9.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(141, 178, 199, 0.3);
  opacity: 0.55;
  transition: opacity 0.25s;
  pointer-events: none;
}
.lp-split-card .lp-tag {
  color: var(--lp-amber);
}
.lp-split-title {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin: 0.5rem 0 0.6rem;
  color: #fff;
}
.lp-split-desc {
  color: rgba(238, 246, 245, 0.72);
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.lp-split-go {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-teal-bright);
  border: 1px solid rgba(45, 212, 191, 0.45);
  padding: 0.55rem 1.1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
/* stats */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--lp-ink);
  border-bottom: 1px solid rgba(18, 32, 41, 0.18);
}
.lp-stat {
  padding: 1.9rem 1.4rem 1.7rem;
  border-right: 1px solid rgba(18, 32, 41, 0.14);
}
.lp-stat:last-child {
  border-right: none;
}
.lp-stat-num {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--lp-ink);
}
.lp-stat-num i {
  font-style: normal;
  color: var(--lp-teal);
}
.lp-stat-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-top: 0.3rem;
}
/* processo */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp-step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(18, 32, 41, 0.12);
  padding: 1.8rem 1.6rem 1.6rem;
}
.lp-step h3 {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: 1.45rem;
  margin: 0.9rem 0 0.5rem;
  color: var(--lp-ink);
}
.lp-step p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.6;
  font-size: 0.93rem;
}
.lp-step-num {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: 3.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lp-teal);
}
.lp-step-arrow {
  position: absolute;
  top: 2rem;
  right: 1.4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: rgba(18, 32, 41, 0.25);
  font-size: 1.1rem;
}
/* servizi */
.lp-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.lp-service {
  background: #fff;
  border: 1px solid rgba(18, 32, 41, 0.12);
  padding: 1.6rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-service:hover {
  border-color: var(--lp-teal);
  box-shadow: 0 14px 30px rgba(10, 25, 34, 0.1);
}
.lp-service h3 {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: 1.3rem;
  color: var(--lp-ink);
  margin: 0;
  align-self: center;
}
.lp-service p {
  grid-column: 2;
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}
.lp-service-idx {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lp-teal);
  border: 1px solid rgba(20, 184, 166, 0.4);
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  margin-top: 0.2rem;
}
/* perché noi / visione */
.lp-duo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: start;
}
.lp-points {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.6rem;
}
.lp-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed rgba(18, 32, 41, 0.18);
}
.lp-point:last-child {
  border-bottom: none;
}
.lp-point h3 {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  color: var(--lp-ink);
}
.lp-point p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}
.lp-point-mark {
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0.15rem;
  border: 1.5px solid var(--lp-teal);
  border-radius: 50%;
  position: relative;
}
.lp-point-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--lp-teal);
  border-radius: 50%;
}
.lp-photo-frame {
  padding: 0.6rem;
  border: 1px solid rgba(18, 32, 41, 0.18);
}
.lp-photo-frame img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}
.lp-photo-frame figcaption {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
  padding: 0.6rem 0.2rem 0.1rem;
  display: flex;
  justify-content: space-between;
}
.lp-vision-text {
  margin: 1.4rem 0 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #2c4150;
}
/* — CTA finale — */
.lp-cta {
  position: relative;
  overflow: hidden;
  background: var(--lp-carbon);
  color: #eef6f5;
  text-align: center;
  padding: 5rem 1.5rem 5.2rem;
}
.lp-cta .lp-crosshair {
  top: auto;
  right: auto;
  left: 50%;
  bottom: -260px;
  margin: 0 0 0 -230px;
  opacity: 0.6;
}
.lp-cta h2 {
  font-family: "Saira Condensed", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0.7rem 0 1rem;
  color: #fff;
}
.lp-cta h2 em {
  font-style: normal;
  color: var(--lp-teal-bright);
}
.lp-cta p {
  max-width: 56ch;
  margin: 0 auto 2.3rem;
  color: rgba(238, 246, 245, 0.72);
  line-height: 1.65;
  font-size: 1.05rem;
}
.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.lp-cta-phone {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(238, 246, 245, 0.6);
  margin-top: 1.6rem !important;
}
/* — footer — */
.lp-footer {
  background: var(--lp-carbon-2);
  color: rgba(238, 246, 245, 0.75);
  padding: 3.2rem 0 0;
  border-top: 1px solid rgba(141, 178, 199, 0.14);
}
.lp-footer a {
  color: inherit;
  text-decoration: none;
}
.lp-footer a:hover {
  color: var(--lp-teal-bright);
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 2.5rem;
  padding-bottom: 2.6rem;
}
.lp-footer-brand img {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 0.9rem;
}
.lp-footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 34ch;
  color: rgba(238, 246, 245, 0.6);
}
.lp-footer-col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  font-size: 0.9rem;
}
.lp-footer-col strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-teal);
  margin-bottom: 0.4rem;
}
.lp-footer-bar {
  border-top: 1px solid rgba(141, 178, 199, 0.12);
  padding: 1.1rem 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 246, 245, 0.45);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
/* — WhatsApp — */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #1faa53;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background 0.2s, transform 0.15s;
}
.wa-btn:hover {
  background: #25d366;
  transform: translateY(-2px);
}
.wa-btn svg {
  flex-shrink: 0;
}
.wa-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #1faa53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(31, 170, 83, 0.45);
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  background: #25d366;
}
/* — toggle accessibilità — */
#a11y-toggle {
  position: fixed;
  left: 0.7rem;
  bottom: 4rem;
  z-index: 9999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(18, 32, 41, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: var(--lp-ink);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.15s;
}
#a11y-toggle:hover {
  background: #fff;
  transform: scale(1.05);
}
#a11y-toggle.is-active {
  background: var(--lp-teal) !important;
  color: #fff !important;
  border-color: var(--lp-teal) !important;
}
/* — reveal progressivo (attivo solo con JS) — */
html.lp-armed .lp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease var(--lp-delay, 0s), transform 0.7s ease var(--lp-delay, 0s);
}
html.lp-armed .lp-reveal.lp-in {
  opacity: 1;
  transform: none;
}
/* animazione di ingresso hero (CSS-only) */
.lp-hero-copy > *,
.lp-sheet {
  animation: lp-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-hero-copy > :nth-child(1) {
  animation-delay: 0.05s;
}
.lp-hero-copy > :nth-child(2) {
  animation-delay: 0.15s;
}
.lp-hero-copy > :nth-child(3) {
  animation-delay: 0.3s;
}
.lp-hero-copy > :nth-child(4) {
  animation-delay: 0.45s;
}
.lp-hero-copy > :nth-child(5) {
  animation-delay: 0.6s;
}
.lp-sheet {
  animation-delay: 0.55s;
}
@keyframes lp-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* — responsive landing — */
@media (max-width: 980px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .lp-sheet {
    max-width: 520px;
  }
  .lp-crosshair {
    width: 320px;
    height: 320px;
    margin-top: -160px;
    right: -160px;
  }
  .lp-duo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lp-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-stat:nth-child(2) {
    border-right: none;
  }
  .lp-steps {
    grid-template-columns: 1fr;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}
@media (max-width: 700px) {
  .lp-split {
    grid-template-columns: 1fr;
  }
  .lp-services {
    grid-template-columns: 1fr;
  }
  .lp-nav-link {
    display: none;
  }
  .lp-hero {
    padding-top: calc(60px + 3rem);
    padding-bottom: 4rem;
  }
  .lp-hero-meta {
    gap: 1rem;
  }
  .lp-stats {
    grid-template-columns: 1fr 1fr;
  }
  .lp-sheet-qr {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero-video {
    display: none;
  }
  .lp-marquee-track {
    animation: none;
  }
  .lp-crosshair {
    animation: none;
  }
  .lp-hero-copy > *,
  .lp-sheet {
    animation: none;
  }
  html.lp-armed .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
