/* ═══════════════════════════════════════════
   RM STUDIO — landing.css
   ═══════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(193,255,114,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(193,255,114,0.05); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ─── LP HEADER ──────────────────────────── */
.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 7vw, 120px);
  height: 72px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13,15,17,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
}
.lp-header-logo {
  height: 36px;
  width: auto;
  opacity: 0.75;
  filter: brightness(1.1);
  transition: opacity 0.2s;
}
.lp-header-logo:hover { opacity: 1; }


/* ─── PILL BADGE (hero eyebrow) ──────────── */
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(193,255,114,0.28);
  border-radius: 100px;
  background: rgba(193,255,114,0.07);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.5s 0.1s var(--ease) forwards;
  position: relative;
  z-index: 1;
}
.lp-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(193,255,114,0.6);
  flex-shrink: 0;
}


/* ─── LP HERO V2 ─────────────────────────── */
.lp-hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.lp-hero-v2-content {
  padding: 88px 72px 88px clamp(40px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.lp-hero-v2-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.lp-hero-v2-content::after {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(193,255,114,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.lp-hero-v2 h1 {
  font-size: clamp(36px, 3.8vw, 62px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.0;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.6s 0.18s var(--ease) forwards;
  position: relative; z-index: 1;
  text-shadow: 0 0 80px rgba(255,255,255,0.06);
}
.lp-hero-v2 h1 em {
  background: linear-gradient(135deg, #C1FF72 0%, #A8FF3E 30%, #72FFD4 62%, #C1FF72 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: gradientShift 5s ease infinite;
  font-style: italic;
  font-weight: 300;
  display: block;
}
.lp-hero-v2-sub {
  font-size: 14px;
  color: rgba(232,234,230,0.72);
  line-height: 1.85;
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.6s 0.28s var(--ease) forwards;
  position: relative; z-index: 1;
}
.lp-hero-v2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s 0.38s var(--ease) forwards;
  position: relative; z-index: 1;
}
.lp-hero-v2-trust span {
  font-size: 10px;
  color: rgba(232,234,230,0.65);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  background: rgba(255,255,255,0.03);
}
.lp-hero-v2-trust span::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(193,255,114,0.5);
  flex-shrink: 0;
}
.lp-hero-v2-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.6s 0.48s var(--ease) forwards;
  position: relative; z-index: 1;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
}
.lp-hero-v2-logos-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(232,234,230,0.4);
  text-transform: uppercase;
}
.lp-hero-logo-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lp-hero-logo-list img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.4;
  transition: opacity 0.2s, filter 0.2s;
}
.lp-hero-logo-list img:hover {
  opacity: 0.8;
  filter: grayscale(0) brightness(1);
}
.lp-hero-v2-form-panel {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px clamp(40px, 7vw, 100px) 64px 56px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.7s 0.22s var(--ease) forwards;
}


/* ─── LP HERO FORM ───────────────────────── */
.lp-hero-form {
  width: 100%;
  max-width: 540px;
  background: #161B22;
  border-radius: 20px;
  border-top: 4px solid var(--accent);
  box-shadow:
    0 0 0 1px rgba(193,255,114,0.22),
    0 0 48px rgba(193,255,114,0.07),
    0 28px 72px rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.4);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.lp-hero-form-label {
  padding: 14px 24px;
  background: rgba(193,255,114,0.06);
  border-bottom: 1px solid rgba(193,255,114,0.12);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-hero-form-label .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(193,255,114,0.18);
}
.lp-hero-form form {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-hero-form .form-group {
  border-bottom: none;
  padding: 0;
  background: #1E2530;
  border: 1.5px solid rgba(193,255,114,0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.lp-hero-form .form-group:focus-within {
  border-color: rgba(193,255,114,0.6);
  box-shadow: 0 0 0 3px rgba(193,255,114,0.09), 0 0 16px rgba(193,255,114,0.1);
}
.lp-hero-form .form-group label {
  display: block;
  padding: 11px 16px 3px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(193,255,114,0.55);
  text-transform: uppercase;
  margin-bottom: 0;
}
.lp-hero-form .form-group input,
.lp-hero-form .form-group textarea {
  display: block;
  width: 100%;
  padding: 2px 16px 13px;
  background: transparent;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  box-sizing: border-box;
  resize: none;
}
.lp-hero-form .form-group input::placeholder,
.lp-hero-form .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.lp-hero-form .form-group select {
  display: block;
  width: 100%;
  padding: 2px 36px 13px 16px;
  background: transparent;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C1FF72' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.lp-hero-form .form-group select option {
  background: #1E2530;
  color: var(--text);
}
.lp-hero-form .form-submit { padding: 14px 20px 0; }
.lp-hero-form .lp-form-microcopy { padding: 10px 20px 22px; color: var(--muted); }
.lp-hero-form .form-submit .btn-accent {
  width: 100%;
  justify-content: center;
  padding: 18px 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: 12px;
}


/* ─── SELECT generico ────────────────────── */
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B7280' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.form-group select option { background: var(--surface2); color: var(--text); }


/* ─── MICROCOPY ──────────────────────────── */
.lp-form-microcopy {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 12px;
  line-height: 1.6;
}


/* ─── SCARCITY BADGE ─────────────────────── */
.lp-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border2);
  padding: 10px 16px;
  font-size: 11px;
  color: var(--muted2);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.6s 0.45s var(--ease) forwards;
}
.lp-scarcity-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.lp-scarcity strong { color: var(--text); font-weight: 700; }


/* ─── MARQUEE ────────────────────────────── */
.lp-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.lp-marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.lp-marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 36px;
  border-right: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-marquee-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ─── SEZIONI GENERALI LP ────────────────── */
.lp-section {
  padding: 88px clamp(56px, 7vw, 120px);
  border-bottom: 1px solid var(--border);
}
.lp-section-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-section-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.lp-section h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.lp-section h2 em {
  background: linear-gradient(135deg, #C1FF72 0%, #A8FF3E 30%, #72FFD4 62%, #C1FF72 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}
.lp-section-desc {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 56px;
}


/* ─── LP CS GRID (Process Cards) ────────── */
.lp-cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lp-cs-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 28px 36px;
  border-radius: 20px;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(193,255,114,0.05) 0%, var(--bg) 50%);
  box-shadow:
    inset 0 0 0 1px rgba(193,255,114,0.28),
    inset 0 1px 0 rgba(193,255,114,0.35),
    0 4px 28px rgba(0,0,0,0.45),
    0 0 56px rgba(193,255,114,0.06);
  transition:
    background 0.38s var(--ease),
    box-shadow  0.38s var(--ease);
}
.lp-cs-box:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, var(--surface) 50%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 8px 36px rgba(0,0,0,0.5);
}
.lp-cs-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 1;
  margin-bottom: 4px;
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.lp-cs-box:hover .lp-cs-box-icon { opacity: 0.6; transform: none; }
.lp-cs-box-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(193,255,114,0.38);
  transition: color 0.35s, text-shadow 0.35s;
}
.lp-cs-box:hover .lp-cs-box-label {
  color: var(--accent);
  text-shadow:
    0 0 10px rgba(193,255,114,0.85),
    0 0 28px rgba(193,255,114,0.42);
}
.lp-cs-box-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.lp-cs-box-desc {
  font-size: 11px;
  color: var(--muted2);
  line-height: 1.85;
}


/* ─── SOCIAL PROOF ───────────────────────── */
.lp-proof-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.lp-proof-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, var(--bg) 45%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 4px 28px rgba(0,0,0,0.45);
  transition:
    background 0.38s var(--ease),
    box-shadow  0.38s var(--ease);
}
.lp-proof-logo-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C1FF72, #72FFD4);
  opacity: 0;
  transition: opacity 0.35s;
}
.lp-proof-logo-cell:hover {
  background: linear-gradient(145deg, rgba(193,255,114,0.06) 0%, var(--surface) 55%);
  box-shadow:
    inset 0 0 0 1px rgba(193,255,114,0.30),
    inset 0 1px 0 rgba(193,255,114,0.38),
    0 8px 48px rgba(0,0,0,0.55),
    0 0 72px rgba(193,255,114,0.07);
}
.lp-proof-logo-cell:hover::before { opacity: 1; }
.lp-proof-logo-cell img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.5) brightness(1.4);
  opacity: 0.58;
  transition: opacity 0.3s, filter 0.3s;
}
.lp-proof-logo-cell:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.lp-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.lp-stat-cell {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, var(--bg) 45%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 4px 28px rgba(0,0,0,0.45);
  transition:
    background 0.38s var(--ease),
    box-shadow  0.38s var(--ease);
}
.lp-stat-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C1FF72, #72FFD4);
  opacity: 0;
  transition: opacity 0.35s;
}
.lp-stat-cell:hover {
  background: linear-gradient(145deg, rgba(193,255,114,0.06) 0%, var(--surface) 55%);
  box-shadow:
    inset 0 0 0 1px rgba(193,255,114,0.30),
    inset 0 1px 0 rgba(193,255,114,0.38),
    0 8px 48px rgba(0,0,0,0.55),
    0 0 72px rgba(193,255,114,0.07);
}
.lp-stat-cell:hover::before { opacity: 1; }
.lp-stat-num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.lp-stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}


/* ─── LP TESTIMONIALS ────────────────────── */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.lp-testimonial-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, var(--bg) 45%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 4px 28px rgba(0,0,0,0.45);
  transition:
    background 0.38s var(--ease),
    box-shadow  0.38s var(--ease);
}
.lp-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #C1FF72, #72FFD4);
  opacity: 0;
  transition: opacity 0.35s;
}
.lp-testimonial-card:hover {
  background: linear-gradient(145deg, rgba(193,255,114,0.06) 0%, var(--surface) 55%);
  box-shadow:
    inset 0 0 0 1px rgba(193,255,114,0.30),
    inset 0 1px 0 rgba(193,255,114,0.38),
    0 8px 48px rgba(0,0,0,0.55),
    0 0 72px rgba(193,255,114,0.07);
}
.lp-testimonial-card:hover::before { opacity: 1; }
.lp-testimonial-stars {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1;
}
.lp-testimonial-quote {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}
.lp-testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.lp-testimonial-author-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}
.lp-testimonial-author-role {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.lp-testimonial-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(193,255,114,0.07);
  border: 1px solid rgba(193,255,114,0.18);
  padding: 4px 9px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}


/* ─── LP ABOUT ───────────────────────────── */
.lp-about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 48px;
  overflow: hidden;
}
.lp-about-photo {
  border-right: 1px solid var(--border);
  overflow: hidden;
  min-height: 400px;
}
.lp-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.25) brightness(0.92);
  transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
  display: block;
}
.lp-about-layout:hover .lp-about-photo img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.02);
}
.lp-about-content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-about-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.lp-about-role {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.lp-about-pitch {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 520px;
}
.lp-about-pitch strong { color: var(--text); font-weight: 700; }
.lp-about-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}
.lp-about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
  transition: background 0.2s, color 0.2s;
}
.lp-about-point:last-child { border-bottom: none; }
.lp-about-point:hover { background: var(--surface2); color: var(--text); }
.lp-about-point::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}


/* ─── LP FAQ ─────────────────────────────── */
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.lp-faq-item { border-bottom: 1px solid var(--border); }
.lp-faq-item:last-child { border-bottom: none; }
.lp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.2s;
  gap: 24px;
}
.lp-faq-question:hover { background: var(--surface); }
.lp-faq-question-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.lp-faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--muted2);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.3s var(--ease);
  line-height: 1;
}
.lp-faq-item.open .lp-faq-toggle {
  background: rgba(193,255,114,0.08);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
}
.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.lp-faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.9;
}


/* ─── CTA FINALE ─────────────────────────── */
.lp-cta-section {
  padding: 96px clamp(56px, 7vw, 120px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-section > .lp-hero-form { margin: 0 auto; }
.lp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.lp-cta-left {
  padding-right: 64px;
  position: relative;
}
.lp-cta-left h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.lp-cta-left h2 em {
  background: linear-gradient(135deg, #C1FF72 0%, #A8FF3E 30%, #72FFD4 62%, #C1FF72 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
  font-style: italic;
  font-weight: 300;
  display: block;
}
.lp-cta-left p {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 36px;
}
.lp-cta-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-cta-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted2);
}
.lp-cta-guarantee::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}


/* ─── MINI FOOTER ────────────────────────── */
.lp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 7vw, 120px);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.lp-footer-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.lp-footer-logo .dot { color: var(--accent); }
.lp-footer-copy { font-size: 10px; color: var(--muted); letter-spacing: 0.04em; }
.lp-footer-links { display: flex; gap: 24px; }
.lp-footer-links a {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: var(--text); }


/* ─── STICKY BAR MOBILE ──────────────────── */
.lp-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,15,17,0.97);
  border-top: 1px solid var(--border2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 24px;
  z-index: 300;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp-sticky-bar-text { font-size: 11px; color: var(--muted2); line-height: 1.4; }
.lp-sticky-bar-text strong { color: var(--text); display: block; font-size: 12px; }


/* ─── FORM SUCCESS STATE ─────────────────── */
.form-success {
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  min-height: 300px;
}
.form-success-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 0 6px rgba(193,255,114,0.08), 0 0 32px rgba(193,255,114,0.18);
  margin-bottom: 8px;
  animation: fadeUp 0.5s var(--ease) both;
}
.form-success-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  animation: fadeUp 0.5s 0.1s var(--ease) both;
}
.form-success-text {
  font-size: 12px;
  color: rgba(232,234,230,0.65);
  line-height: 1.85;
  animation: fadeUp 0.5s 0.18s var(--ease) both;
}


/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .lp-hero-v2 { grid-template-columns: 1fr; min-height: auto; }
  .lp-hero-v2-content { padding: 72px 40px; }
  .lp-hero-v2-form-panel { padding: 56px 40px; }
  .lp-cs-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .lp-about-layout { grid-template-columns: 1fr; }
  .lp-about-photo { min-height: 280px; border-right: none; border-bottom: 1px solid var(--border); }
  .lp-about-content { padding: 40px 36px; }
  .lp-cta-section { grid-template-columns: 1fr; padding: 72px 40px; }
  .lp-cta-left { padding-right: 0; margin-bottom: 48px; }
  .lp-section--about-split { grid-template-columns: 1fr; gap: 48px; }
  .lp-about-split-left { position: static; }
}

@media (max-width: 768px) {
  .lp-header { padding: 0 24px; }
  .lp-section { padding: 56px 24px; }
  .lp-proof-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-stats-strip { grid-template-columns: 1fr 1fr; }
  .lp-cta-section { padding: 56px 24px; }
  .lp-footer { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .lp-faq-question { padding: 20px; }
  .lp-faq-answer-inner { padding: 0 20px 20px; }
  .lp-sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
  .lp-hero-v2-content { padding: 56px 24px; }
  .lp-hero-v2-form-panel { padding: 40px 24px; }
  .lp-cs-grid { grid-template-columns: 1fr; }
  .lp-testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lp-stats-strip { grid-template-columns: 1fr; }
  .lp-proof-logos-grid { grid-template-columns: 1fr 1fr; }
}


/* ─── ABOUT SPLIT LAYOUT [TITOLO | RICCARDO] ─── */
.lp-section--about-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.lp-about-split-left { position: sticky; top: 96px; }
.lp-about-split-right .lp-about-layout { margin-top: 0; }


/* ─── CENTERED SECTION HEADERS ──────────── */
.lp-section > .lp-section-eyebrow { justify-content: center; }
.lp-section > .lp-section-eyebrow::after {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.lp-section > h2 { text-align: center; }
.lp-section > .lp-section-desc { text-align: center; margin-left: auto; margin-right: auto; }
