    :root {
      --lm:        #8150B9;
      --lm-dark:   #5A3585;
      --lm-mid:    #C4A3E3;
      --lm-light:  #F0E9F9;
      --lm-xlight: #FAF7FE;
      --bg:        #FFFFFF;
      --bg-soft:   #FAFAFA;
      --text:      #1A1A2E;
      --text-muted:#6B6B80;
      --text-faint:#ABABBC;
      --border:    rgba(0,0,0,0.07);
      --radius:    14px;
      --radius-sm: 8px;
      --shadow-s:  0 2px 12px rgba(129,80,185,0.08);
      --shadow-m:  0 8px 32px rgba(129,80,185,0.13);
      --shadow-l:  0 20px 60px rgba(129,80,185,0.18);
	   --radius: 12px;
      --radius-lg: 18px;
      --radius-xl: 24px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
	
	 .logo {
      height: 50px;
      width: auto;
      display: block;
    }

     /* ── NAVBAR ── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 0.5px solid var(--border);
      padding: 0 2rem;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
	
	.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--lm); }
 
    .btn-ghost:hover { border-color: var(--lm); color: var(--lm); }
    .btn-primary {
      font-family: inherit; font-size: 14px; font-weight: 600;
      color: #fff; background: var(--lm);
      padding: 9px 22px; border-radius: 100px; text-decoration: none; border: none;
      cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-primary:hover { background: var(--lm-dark); box-shadow: var(--shadow-m); transform: translateY(-1px); }
    .btn-secondary {
      font-family: inherit; font-size: 14px; font-weight: 500;
      color: var(--lm); background: var(--lm-light);
      padding: 9px 22px; border-radius: 100px; text-decoration: none; border: none;
      cursor: pointer; transition: background .2s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-secondary:hover { background: #e6d6f5; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

    /* ─── UTILS ───────────────────────────────────────── */
    .divider { border: none; border-top: 1px solid var(--border); margin: 0; }
    .section-pill {
      display: inline-block;
      font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
      color: var(--lm); background: var(--lm-light);
      padding: 5px 14px; border-radius: 100px; border: 1px solid var(--lm-mid);
      margin-bottom: 1rem;
    }
    em { font-style: italic; color: var(--lm); }
	
	
	    /* Chat mockup — HERO */
    .chat-float-wrapper {
      position: relative;
    }
    .chat-float-wrapper .chat-mockup {
      animation: floatUpDown 4s ease-in-out infinite;
    }

    @keyframes floatUpDown {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-10px); }
    }

    .chat-mockup {
      background: var(--bg-soft);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(129,80,185,0.13), 0 4px 16px rgba(0,0,0,0.04);
    }

    .chat-topbar {
      background: #fff;
      padding: 12px 16px;
      border-bottom: 0.5px solid var(--border);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .chat-av {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: var(--lm);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .chat-info .chat-name { font-size: 14px; font-weight: 500; }
    .chat-info .chat-status { font-size: 11px; color: #22c55e; font-weight: 500; }

    .chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); }

    .msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.55; }
    .msg-user {
      background: #fff; border: 1px solid var(--border);
      align-self: flex-start; border-radius: 4px 14px 14px 14px;
    }
    .msg-ai {
      background: var(--lm); color: #fff;
      align-self: flex-end; border-radius: 14px 4px 14px 14px;
    }
    .msg-label { font-size: 10px; color: var(--text-faint); margin-bottom: 3px; }
    .msg-label.right { text-align: right; }

    .chat-input-bar {
      background: #fff;
      padding: 10px 14px;
      display: flex; gap: 8px; align-items: center;
      border-top: 0.5px solid var(--border);
    }
    .chat-input-bar input {
      flex: 1; border: 1px solid var(--border); border-radius: 8px;
      padding: 8px 12px; font-size: 13px; font-family: inherit;
      outline: none; background: var(--bg-soft); color: var(--text);
      transition: border-color 0.2s;
    }
    .chat-input-bar input:focus { border-color: var(--lm); }
    .chat-send-btn {
      background: var(--lm); color: #fff; border: none;
      border-radius: 8px; padding: 8px 14px; font-size: 13px;
      font-weight: 500; cursor: pointer; font-family: inherit;
      transition: background 0.2s; flex-shrink: 0;
    }
    .chat-send-btn:hover { background: var(--lm-dark); }

    .hints-row {
      background: #fff; padding: 8px 12px 6px;
      border-top: 0.5px solid var(--border);
      display: flex; flex-wrap: wrap; gap: 5px;
    }
    .hints-label { width: 100%; font-size: 10px; color: var(--text-faint); margin-bottom: 3px; letter-spacing: 0.3px; }
	

    /* ─── HERO ────────────────────────────────────────── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      padding: 5rem 5vw 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--lm-light); color: var(--lm-dark);
      font-size: 12px; font-weight: 500;
      padding: 5px 14px; border-radius: 100px; border: 1px solid var(--lm-mid);
      margin-bottom: 1.25rem;
    }
    .hero-eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--lm);
      animation: pulse-dot 1.6s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.5; transform:scale(.7); }
    }
    .hero h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; line-height: 1.15;
      letter-spacing: -.02em;
      margin-bottom: 1.1rem;
    }
    .hero-sub {
      font-size: 17px; font-weight: 300; color: var(--text-muted);
      line-height: 1.7; margin-bottom: 2rem; max-width: 480px;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.25rem; }
    .hero-trust { font-size: 12px; color: var(--text-faint); }
    .hero-trust span { color: var(--text-muted); }

    /* Stats stripe nella hero */
    .hero-stats {
      display: flex; gap: 0;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-s);
      margin-top: 2rem;
    }
    .hero-stat {
      flex: 1; padding: 18px 20px; text-align: center;
      border-right: 1px solid var(--border);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num { font-size: 24px; font-weight: 700; color: var(--lm); line-height: 1; }
    .hero-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; font-weight: 400; }

    /* Visual hero destra */
    .hero-visual {
      position: relative;
    }
    .mockup-phone {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow-l);
      overflow: hidden;
      padding: 0;
    }
    .mockup-topbar {
      background: var(--lm);
      padding: 14px 18px;
      display: flex; align-items: center; gap: 10px;
      color: #fff;
    }
    .mockup-avatar {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .mockup-name { font-size: 13px; font-weight: 600; }
    .mockup-status { font-size: 11px; opacity: .75; }
    .mockup-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; background: #f5f5f5; }
    .msg {
      max-width: 78%; padding: 9px 13px; border-radius: 12px;
      font-size: 13px; line-height: 1.45;
    }
    .msg-in  { background: #fff; color: var(--text); border-bottom-left-radius: 3px; align-self: flex-start; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
    .msg-out { background: var(--lm); color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; }
    .msg-time { font-size: 10px; opacity: .55; margin-top: 3px; text-align: right; }
    .mockup-confirmed {
      background: #f0fdf4; border-top: 1px solid #bbf7d0;
      padding: 12px 18px; font-size: 12px; color: #166534;
      display: flex; align-items: center; gap: 8px; font-weight: 500;
    }

    /* Floating badge */
    .float-badge {
      position: absolute;
      background: #fff; border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 10px 14px;
      box-shadow: var(--shadow-m);
      font-size: 12px; font-weight: 500; color: var(--text);
      display: flex; align-items: center; gap: 8px;
      white-space: nowrap;
    }
    .float-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink:0; }

    /* ─── PROBLEMA ────────────────────────────────────── */
    .prob-wrap { background: var(--bg-soft); }
    .prob-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 5rem 5vw;
      text-align: center;
    }
    .prob-inner h2 {
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700; letter-spacing: -.02em;
      margin-bottom: .75rem; line-height: 1.2;
    }
    .prob-inner .lead {
      font-size: 16px; color: var(--text-muted); font-weight: 300;
      max-width: 520px; margin: 0 auto 3rem;
    }
    .prob-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      text-align: left;
    }
    .prob-card {
      background: var(--bg); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 24px;
      position: relative; overflow: hidden;
      transition: box-shadow .2s, transform .2s;
    }
    .prob-card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); }
    .prob-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--lm), var(--lm-mid));
      opacity: 0; transition: opacity .2s;
    }
    .prob-card:hover::before { opacity: 1; }
    .prob-icon { font-size: 26px; margin-bottom: 12px; }
    .prob-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
    .prob-text  { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

    /* ─── SOLUZIONE ───────────────────────────────────── */
    .sol-wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 5vw; }
    .sol-wrap h2 {
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700; letter-spacing: -.02em;
      margin-bottom: .75rem; text-align: center;
    }
    .sol-lead { font-size: 16px; color: var(--text-muted); font-weight: 300; max-width: 520px; margin: 0 auto 3rem; text-align: center; }

    .sol-items { display: flex; flex-direction: column; gap: 2.5rem; }
    .sol-item {
      display: grid; grid-template-columns: 48px 1fr;
      gap: 1.25rem; align-items: start;
    }
    .sol-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--lm-light); color: var(--lm);
      font-size: 15px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; border: 1.5px solid var(--lm-mid);
    }
    .sol-content h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
    .sol-content p  { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

    .sol-grid-2 {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .sol-visual {
      background: var(--lm-xlight);
      border: 1.5px solid var(--lm-mid);
      border-radius: var(--radius);
      padding: 28px;
    }
    .sol-visual-title { font-size: 12px; font-weight: 600; color: var(--lm); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .07em; }
    .timeline { display: flex; flex-direction: column; gap: 0; }
    .tl-row { display: flex; gap: 14px; align-items: flex-start; position: relative; }
    .tl-row:not(:last-child)::after {
      content: ''; position: absolute;
      left: 15px; top: 32px; bottom: -14px;
      width: 1px; background: var(--lm-mid);
    }
    .tl-dot {
      width: 30px; height: 30px; border-radius: 50%;
      background: var(--lm); color: #fff;
      font-size: 11px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }
    .tl-body { padding-bottom: 20px; }
    .tl-label { font-size: 13px; font-weight: 600; }
    .tl-desc  { font-size: 12px; color: var(--text-muted); font-weight: 300; }

    /* ─── FEATURES ────────────────────────────────────── */
    .feat-wrap { background: var(--bg-soft); }
    .feat-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 5vw; }
    .feat-inner h2 {
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700; letter-spacing: -.02em;
      margin-bottom: .75rem; text-align: center;
    }
    .feat-lead { font-size: 16px; color: var(--text-muted); font-weight: 300; max-width: 520px; margin: 0 auto 3rem; text-align: center; }

    .feat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .feat-card {
      background: var(--bg); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px;
      transition: box-shadow .2s, transform .2s;
    }
    .feat-card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); }
    .feat-card.highlight {
      background: var(--lm); color: #fff;
      border-color: var(--lm);
    }
    .feat-card-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--lm-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; margin-bottom: 14px;
    }
    .feat-card.highlight .feat-card-icon { background: rgba(255,255,255,.15); }
    .feat-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
    .feat-card p  { font-size: 13px; color: var(--text-muted); font-weight: 300; line-height: 1.6; }
    .feat-card.highlight p { color: rgba(255,255,255,.8); }
    .feat-tag {
      display: inline-block;
      font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
      background: var(--lm-light); color: var(--lm);
      padding: 3px 10px; border-radius: 100px; margin-top: 12px;
    }
    .feat-card.highlight .feat-tag { background: rgba(255,255,255,.2); color: #fff; }

    /* ─── SOCIAL PROOF ────────────────────────────────── */
    .proof-wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 5vw; }
    .proof-wrap h2 {
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700; letter-spacing: -.02em;
      margin-bottom: .75rem; text-align: center;
    }
    .proof-lead { font-size: 16px; color: var(--text-muted); font-weight: 300; max-width: 520px; margin: 0 auto 3rem; text-align: center; }

    .reviews-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .review-card {
      background: var(--bg-soft); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 24px;
      position: relative;
    }
    .review-card.featured {
      background: var(--lm-xlight); border-color: var(--lm-mid);
    }
    .review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
    .review-text { font-size: 14px; color: var(--text); line-height: 1.7; font-weight: 300; font-style: italic; margin-bottom: 16px; }
    .review-author { display: flex; align-items: center; gap: 10px; }
    .review-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--lm-light); color: var(--lm);
      font-size: 13px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .review-name  { font-size: 13px; font-weight: 600; }
    .review-role  { font-size: 11px; color: var(--text-muted); }

    /* Risultati stripe */
    .results-stripe {
      background: var(--lm);
      border-radius: var(--radius);
      padding: 2.5rem 3rem;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2rem; margin-top: 3rem; text-align: center;
    }
    .result-item { color: #fff; }
    .result-num { font-size: 2.2rem; font-weight: 700; line-height: 1; }
    .result-label { font-size: 12px; opacity: .8; margin-top: 4px; font-weight: 300; }

    /* ─── FAQ ─────────────────────────────────────────── */
    .faq-wrap { background: var(--bg-soft); }
    .faq-inner { max-width: 760px; margin: 0 auto; padding: 5rem 5vw; }
    .faq-inner h2 {
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700; letter-spacing: -.02em;
      margin-bottom: .75rem; text-align: center;
    }
    .faq-lead { font-size: 16px; color: var(--text-muted); font-weight: 300; max-width: 480px; margin: 0 auto 3rem; text-align: center; }
    .faq-list { display: flex; flex-direction: column; gap: .75rem; }
    .faq-item {
      background: var(--bg); border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item.open { border-color: var(--lm-mid); }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 18px 22px; cursor: pointer; gap: 12px;
      font-size: 14px; font-weight: 500;
    }
    .faq-q:hover { color: var(--lm); }
    .faq-icon {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--lm-light); color: var(--lm);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0; transition: transform .25s;
      font-weight: 300;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--lm); color: #fff; }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .3s ease;
      font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.7;
      padding: 0 22px;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

    /* ─── CONFRONTO ───────────────────────────────────── */
    .compare-wrap { max-width: 1000px; margin: 0 auto; padding: 5rem 5vw; }
    .compare-wrap h2 {
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700; letter-spacing: -.02em;
      margin-bottom: .75rem; text-align: center;
    }
    .compare-lead { font-size: 16px; color: var(--text-muted); font-weight: 300; max-width: 520px; margin: 0 auto 3rem; text-align: center; }

    .compare-table {
      width: 100%; border-collapse: collapse;
      border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow-s);
      border: 1px solid var(--border);
    }
    .compare-table thead tr { background: var(--lm); color: #fff; }
    .compare-table th {
      padding: 16px 20px; font-size: 14px; font-weight: 600;
      text-align: left;
    }
    .compare-table th:not(:first-child) { text-align: center; }
    .compare-table th.luami-col { background: rgba(255,255,255,.15); }
    .compare-table td {
      padding: 14px 20px; font-size: 13px;
      border-top: 1px solid var(--border);
    }
    .compare-table td:not(:first-child) { text-align: center; }
    .compare-table tr:nth-child(even) td { background: var(--bg-soft); }
    .compare-table tr:nth-child(odd)  td { background: var(--bg); }
    .compare-table td.luami-col { background: var(--lm-xlight) !important; font-weight: 500; }
    .compare-table td:first-child { font-weight: 500; color: var(--text); }
    .chk  { color: #22c55e; font-size: 18px; }
    .crs  { color: #ef4444; font-size: 18px; }
    .part { color: #f59e0b; font-size: 14px; }

    /* ─── PREZZI ──────────────────────────────────────── */
    .pricing-wrap { background: var(--bg-soft); }
    .pricing-inner { max-width: 960px; margin: 0 auto; padding: 5rem 5vw; text-align: center; }
    .pricing-inner h2 {
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700; letter-spacing: -.02em;
      margin-bottom: .75rem;
    }
    .pricing-lead { font-size: 16px; color: var(--text-muted); font-weight: 300; max-width: 480px; margin: 0 auto 2.5rem; }

    /* Toggle */
    .billing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 2.5rem; }
    .billing-label { font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; }
    .billing-label.muted { font-weight: 400; color: var(--text-muted); }
    #billing-toggle {
      width: 48px; height: 26px; border-radius: 100px;
      background: var(--lm); cursor: pointer; position: relative;
      transition: background .2s; flex-shrink: 0; border: none;
    }
    #toggle-knob {
      position: absolute; top: 3px; left: 3px;
      width: 20px; height: 20px; border-radius: 50%;
      background: #fff; transition: transform .2s;
      box-shadow: 0 1px 4px rgba(0,0,0,.15);
    }
    .save-badge {
      background: #F0FDF4; color: #166534;
      font-size: 11px; font-weight: 500;
      padding: 3px 10px; border-radius: 100px;
      border: 1px solid #bbf7d0;
    }

    .pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .p-card {
      background: var(--bg); border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 32px 28px;
      text-align: left; position: relative;
    }
    .p-card.pro {
      background: var(--lm); color: #fff;
      border-color: var(--lm);
      box-shadow: var(--shadow-l);
    }
    .p-popular {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: #f59e0b; color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: .05em;
      padding: 4px 16px; border-radius: 100px; white-space: nowrap;
    }
    .p-plan-name { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .07em; }
    .p-card.pro .p-plan-name { color: rgba(255,255,255,.7); }
    .p-price { font-size: 3rem; font-weight: 700; line-height: 1; letter-spacing: -.03em; }
    .p-price sup { font-size: 1.2rem; font-weight: 500; vertical-align: top; margin-top: .5rem; }
    .p-price sub { font-size: 1.3rem; font-weight: 400; }
    .p-period { font-size: 12px; color: var(--text-muted); margin-top: 4px; margin-bottom: 20px; }
    .p-card.pro .p-period { color: rgba(255,255,255,.6); }
    .p-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
    .p-card.pro .p-divider { border-color: rgba(255,255,255,.2); }
    .p-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .p-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 400; }
    .p-item.disabled { opacity: .4; }
    .p-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--lm-light); flex-shrink: 0; margin-top: 1px;
      display: flex; align-items: center; justify-content: center;
    }
    .p-card.pro .p-check { background: rgba(255,255,255,.2); }
    .btn-outline-white {
      font-family: inherit; font-size: 15px; font-weight: 600;
      color: var(--lm); background: #fff;
      padding: 14px; border-radius: 100px;
      text-decoration: none; border: none; cursor: pointer;
      display: block; text-align: center; width: 100%;
      transition: background .2s, transform .15s;
    }
    .btn-outline-white:hover { background: #f0e9f9; transform: translateY(-1px); }
    .btn-outline-ghost {
      font-family: inherit; font-size: 14px; font-weight: 500;
      color: var(--lm); background: none;
      padding: 12px; border-radius: 100px;
      text-decoration: none; border: 1.5px solid var(--lm-mid); cursor: pointer;
      display: block; text-align: center; width: 100%;
      transition: border-color .2s;
    }
    .btn-outline-ghost:hover { border-color: var(--lm); }
    .p-note { font-size: 11px; color: var(--text-faint); text-align: center; margin-top: 12px; }
    .p-card.pro .p-note { color: rgba(255,255,255,.5); }

    /* ─── CTA FINALE ──────────────────────────────────── */
    .cta-wrap {
      background: linear-gradient(135deg, var(--lm-dark) 0%, var(--lm) 60%, #a876d9 100%);
      padding: 6rem 5vw;
      text-align: center; color: #fff; position: relative; overflow: hidden;
    }
    .cta-wrap::before {
      content: '';
      position: absolute; top: -50%; left: -20%;
      width: 600px; height: 600px; border-radius: 50%;
      background: rgba(255,255,255,.04);
      pointer-events: none;
    }
    .cta-wrap h2 {
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 700; letter-spacing: -.02em;
      margin-bottom: 1rem; line-height: 1.2;
    }
    .cta-wrap p { font-size: 17px; opacity: .85; font-weight: 300; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .btn-white {
      font-family: inherit; font-size: 15px; font-weight: 600;
      color: var(--lm); background: #fff;
      padding: 14px 28px; border-radius: 100px;
      text-decoration: none; border: none; cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-white:hover { background: #f0e9f9; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
    .cta-trust { font-size: 12px; opacity: .6; }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 5vw;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
    .footer-links a:hover { color: var(--lm); }
    .footer-copy { font-size: 12px; color: var(--text-faint); }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 900px) {
      .hero, .sol-grid-2 { grid-template-columns: 1fr; }
      .prob-grid, .reviews-grid { grid-template-columns: 1fr; }
      .feat-grid { grid-template-columns: 1fr; }
      .results-stripe { grid-template-columns: 1fr 1fr; }
      .pricing-cards { grid-template-columns: 1fr; }
      .hero-stats { flex-wrap: wrap; }
      .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
      .hero-stat:last-child { border-bottom: none; }
      .compare-table th, .compare-table td { padding: 10px 12px; font-size: 12px; }

@media (max-width: 560px) {
  .compare-table thead th:nth-child(3),
  .compare-table thead th:nth-child(4),
  .compare-table tbody td:nth-child(3),
  .compare-table tbody td:nth-child(4) { display: none; }
  .compare-table th:first-child,
  .compare-table td:first-child { width: 60%; }
  .compare-table th, .compare-table td { padding: 10px 10px; font-size: 12px; }
}
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .float-badge { display: none; }
    }
    @media (max-width: 560px) {
      .results-stripe { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem; }
    }


 /* Chat hint buttons */
    .luami-hint {
      background: var(--bg-soft);
      color: var(--lm-dark);
      border: 1px solid var(--lm-mid);
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 11.5px;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.15s;
      white-space: nowrap;
    }
    .luami-hint:hover { background: var(--lm-light); }
    #luami-messages::-webkit-scrollbar { width: 4px; }
    #luami-messages::-webkit-scrollbar-thumb { background: var(--lm-mid); border-radius: 2px; }
	
	.hints-drawer-btn { display: none !important; }
	
	.hints-drawer-btn { display: none; }

    @media (max-width: 768px) {
      /* Navbar */
      .nav { padding: 0 1rem; height: 56px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      
	  .professions-grid { grid-auto-rows: auto; }
	  .professions-grid { grid-template-columns: 1fr 1fr; }
	  .profession-photo { height: 120px; }
      #luami-suggerimenti { display: none; }
	  .hints-drawer-btn { display: flex !important; }
       
      /* Hero — colonna singola, tutto contenuto */
      .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.25rem 2.5rem;
        overflow: hidden;
      }
      .hero h1 { font-size: 30px; letter-spacing: -0.8px; }
      .hero-sub { font-size: 15px; }
      .hero-btns { flex-direction: column; }
      .hero-btns .btn-primary,
      .hero-btns .btn-secondary { width:100%; justify-content:center; padding: 12px; }

      /* Chatbot — larghezza piena, niente overflow */
      .hero-right { width: 100%; min-width: 0; }
      .chat-float-wrapper { width: 100%; }
      .chat-float-wrapper .chat-mockup { animation: none; width: 100%; }
      #luami-chat-demo { width: 100% !important; }
      #luami-messages { max-height: 200px !important; }

      /* Hints scrollabili orizzontalmente su mobile */
      .hints-row {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transition: max-height 0.3s ease;
}
      .hints-row::-webkit-scrollbar { display: none; }
      .luami-hint { flex-shrink: 0; }
.chat-input-bar input { min-width: 0; width: 100%; }
.chat-input-bar { padding: 8px; }
.chat-send-btn { padding: 8px 10px; font-size: 12px; }
      .section { padding: 3rem 1.25rem; }
      .section h2 { font-size: 26px; }

      .prob-section-inner { padding: 3rem 1.25rem; }
      .problems { grid-template-columns: 1fr 1fr; }
      .problems-bottom { grid-template-columns: 1fr 1fr; max-width: 100%; }

      .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
      .steps-grid::before { display: none; }

      .feats-section-inner { padding: 3rem 1.25rem; }
      .feats-grid { grid-template-columns: 1fr; }
      .feat-small-row { grid-column: 1; grid-template-columns: 1fr 1fr; }

      .professions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-rows: auto;
}

      .benefits-section-inner { padding: 3rem 1.25rem; }
      .benefits-grid { grid-template-columns: 1fr 1fr; }

      .pricing-section-inner { padding: 3rem 1.25rem; }
      .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }

      .cta-section { margin: 0 1.25rem 3rem; padding: 3rem 1.5rem; margin-top:10px; }
      .cta-section h2 { font-size: 26px; }
      .cta-btns { flex-direction: column; align-items: center; }

      footer { flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1.25rem; }
      .footer-links { justify-content: center; gap: 1rem; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 26px; }
      .problems { grid-template-columns: 1fr; }
      .problems-bottom { grid-template-columns: 1fr; }
      .feat-small-row { grid-template-columns: 1fr; }
      .professions-grid { grid-template-columns: 1fr 1fr; }
      .benefits-grid { grid-template-columns: 1fr 1fr; }
      .pricing-cards { padding: 0; }
    }
	
	.fast-booking-banner {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid #e6d9ff;
  background: linear-gradient(135deg, #f9f6ff 0%, #f3edff 100%);
  
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
}

.fast-booking-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.08);
}

.fast-booking-icon {
  font-size: 22px;
  background: #ede7ff;
  color: #6d4aff;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fast-booking-content {
  flex: 1;
}

.fast-booking-title {
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.fast-booking-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.fast-booking-arrow {
  font-size: 20px;
  color: #a084ff;
}

@media (max-width: 768px) {
  .fast-booking-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fast-booking-arrow {
    display: none;
  }
}

.p-item.disabled {
  opacity: 0.5;
  color: #999;
}

.p-item.disabled .p-check svg path {
  stroke: #ccc;
}