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

    :root {
      --lm: #8150B9;
      --lm-light: #F0E9F9;
      --lm-mid: #C4A3E3;
      --lm-dark: #5A3585;
      --lm-xdark: #3D2260;
      --text: #111118;
      --text-muted: #5f6368;
      --text-faint: #9999AA;
      --bg: #FFFFFF;
      --bg-soft: #F8F7FC;
      --bg-card: #FFFFFF;
      --border: rgba(0,0,0,0.08);
      --border-strong: rgba(0,0,0,0.14);
      --radius: 12px;
      --radius-lg: 18px;
      --radius-xl: 24px;

      /* TYPO */
      --fs-body: 16px;
      --fs-small: 14px;
      --fs-title: 22px;
      --fs-h2: clamp(34px, 4vw, 52px);
      --lh-body: 1.7;
      --lh-tight: 1.15;

      /* SPACING */
      --section-space: 5rem;
      --card-padding: 28px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      font-size: var(--fs-body);
      color: var(--text);
      background: var(--bg);
      line-height: var(--lh-body);
      -webkit-font-smoothing: antialiased;
    }

    /* ── 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;
    }

    .logo {
      height: 50px;
      width: auto;
      display: block;
    }
    .logo-text {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--lm);
      letter-spacing: -0.3px;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-cta { display: flex; align-items: center; gap: 10px; }

    .btn-ghost {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px 14px;
      border-radius: var(--radius);
      transition: color 0.2s, background 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .btn-ghost:hover { color: var(--text); background: var(--bg-soft); }

    .btn-primary {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      background: var(--lm);
      border: none;
      cursor: pointer;
      padding: 10px 20px;
      border-radius: 100px;
      transition: background 0.2s, transform 0.15s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-primary:hover { background: var(--lm-dark); transform: translateY(-1px); }
    .btn-primary:active { transform: translateY(0); }

    .btn-secondary {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: var(--text);
      background: transparent;
      border: 1px solid var(--border-strong);
      cursor: pointer;
      padding: 10px 20px;
      border-radius: 100px;
      transition: background 0.2s, border-color 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .btn-secondary:hover { background: var(--bg-soft); border-color: var(--lm-mid); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; display: block; }

    /* ── HERO ── */
    .hero {
      padding: 6rem 2rem 5rem;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--lm-light);
      color: var(--lm-dark);
      font-size: 12px;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 1.5rem;
      border: 1px solid var(--lm-mid);
    }
    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--lm);
      animation: pulse-dot 1.6s ease-in-out infinite;
    }

    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 1.25rem;
      color: var(--text);
    }
    .hero h1 em {
      font-style: normal;
      color: var(--lm);
    }

    .hero-sub {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.25rem; }
    .hero-btns .btn-primary { font-size: 15px; padding: 13px 26px; }
    .hero-btns .btn-secondary { font-size: 15px; padding: 13px 26px; }

    .hero-trust {
      font-size: 12px;
      color: var(--text-faint);
      font-weight: 300;
    }

    /* 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; }

    /* ── DIVIDER ── */
    .divider { border: none; border-top: 0.5px solid var(--border); }

    /* ── SECTIONS ── */
    .section {
      position: relative;
      padding: 5rem 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-pill {
      display: inline-flex;
      align-items: center;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(129,80,185,0.08);
      border: 1px solid rgba(129,80,185,0.2);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--lm);
      margin-bottom: 1.4rem;
    }

    h1,
    h2,
    .section h2 {
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -1.6px;
      margin: 0 0 1rem;
    }
    h2 em {
      font-style: italic;
      font-weight: 600;
    }

    .section-sub,
    .section p,
    .prob-header p,
    .feats-section-inner > p,
    .benefits-section-inner > p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--text-muted);
      font-weight: 300;
      max-width: 760px;
      margin-bottom: 2.5rem;
    }

    /* ── PROBLEMA ── */
    .prob-section-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: var(--section-space) 2rem;
    }
    .prob-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .prob-header h2 { max-width: 700px; margin: 0 auto 0.75rem; }

    .problems {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 12px;
    }
    .problems-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      max-width: 680px;
      margin: 0 auto;
    }

    .prob-card {
      border-radius: 22px;
      padding: var(--card-padding);
      background: #fff;
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .prob-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

    .prob-icon-wrap {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: #FFF0F0;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      font-size: 18px;
    }
    .prob-title { font-size: 18px; line-height: 1.25; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; color: var(--text); }
    .prob-text { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

    /* ── COME FUNZIONA ── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 2rem;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 30px;
      left: calc(33.33% - 10px);
      right: calc(33.33% - 10px);
      height: 1px;
      background: linear-gradient(to right, transparent, var(--lm-mid), transparent);
      opacity: 0.4;
    }

    .step-card { text-align: left; border-radius: 22px; padding: var(--card-padding); }
    .step-num {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-size: 16px; font-weight: 600;
      margin-bottom: 20px;
    }
    .step-num.s1 { background: var(--lm-light); color: var(--lm); border: 1px solid var(--lm-mid); }
    .step-num.s2 { background: var(--lm-light); color: var(--lm); border: 1px solid var(--lm-mid); }
    .step-num.s3 { background: var(--lm); color: #fff; }

    .step-card h3 { font-size: 18px; line-height: 1.25; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; color: var(--text); }
    .step-card p { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

    .step-bubble {
      margin-top: 16px;
      padding: 12px 16px;
      border-radius: 10px;
      font-size: 13px;
      line-height: 1.5;
    }
    .step-bubble.purple { background: var(--lm-light); color: var(--lm-dark); border: 1px solid var(--lm-mid); font-style: italic; }
    .step-bubble.green { background: #F0FDF4; color: #166534; border: 1px solid #bbf7d0; }

    /* ── FUNZIONALITÀ ── */
    .feats-section-inner {
      max-width: 1180px; margin: 0 auto; padding: var(--section-space) 2rem;
    }

    .feats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-top: 2rem;
    }
    .feat-card-big {
      border-radius: 22px;
      padding: 34px;
    }
    .feat-card-big.violet { background: var(--lm); }
    .feat-card-big.soft { background: var(--bg-soft); border: 1px solid var(--border); }

  .feat-small-row {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  .feat-small-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .feat-small-row {
    grid-template-columns: 1fr;
  }
}

    .feat-card-small {
      border-radius: 22px;
      padding: var(--card-padding);
      background: var(--bg-soft);
      border: 1px solid var(--border);
      transition: transform 0.2s;
    }
    .feat-card-small:hover { transform: translateY(-2px); }
    .feat-card-small.accent { background: var(--lm-light); border-color: var(--lm-mid); }

    .feat-icon {
      width: 34px; height: 34px; border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .feat-icon.onviolet { background: rgba(255,255,255,0.2); }
    .feat-icon.onsoft { background: var(--lm-light); }

    .feat-title { font-size: 18px; line-height: 1.25; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
    .feat-title.white { color: #fff; }
    .feat-title.dark { color: var(--text); }
    .feat-title.accent { color: var(--lm-dark); }

    .feat-desc { font-size: 15px; line-height: 1.75; font-weight: 300; }
    .feat-desc.white { color: rgba(255,255,255,0.7); }
    .feat-desc.muted { color: var(--text-muted); }
    .feat-desc.accent { color: var(--lm-dark); }

    .feat-small-title { font-size: 18px; line-height: 1.25; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
    .feat-small-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }
    .feat-card-small.accent .feat-small-title { color: var(--lm-dark); }
    .feat-card-small.accent .feat-small-desc { color: var(--lm-dark); }

    /* WhatsApp preview inside feat card */
    .whatsapp-preview {
      margin-top: 16px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* ── PER CHI È — FOTO ── */
.professions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 2rem;
      align-items: start;
    }
    .profession-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      display: flex; /* fondamentale */
      text-decoration: none; /* toglie sottolineatura */
      color: inherit; /* mantiene colori testo */
      flex-direction: column;
    }
    .profession-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(129,80,185,0.12); }
 
.profession-photo {
      width: 100%;
      height: 180px;
      object-fit: cover;
      object-position: center center;
      display: block;
      flex-shrink: 0;
    }
    /* Placeholder colored photo areas when no real image */
    .prof-photo-placeholder {
      width: 100%; height: 160px;
      display: flex; align-items: center; justify-content: center;
      font-size: 40px;
    }
    .prof-photo-placeholder.p1 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
    .prof-photo-placeholder.p2 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
    .prof-photo-placeholder.p3 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
    .prof-photo-placeholder.p4 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
    .prof-photo-placeholder.p5 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
    .prof-photo-placeholder.p6 { background: linear-gradient(135deg, #e8eaf6, #c5cae9); }
    .prof-photo-placeholder.p7 { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }
 
    .profession-info { padding: 14px 16px; flex: 1; }
    .profession-name { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
    .profession-desc { font-size: 15px; color: var(--text-muted); line-height: 1.5; font-weight: 300; }

/* ───────────────── BENEFICI ───────────────── */

.benefits-section-inner{
  max-width:1180px;
  margin:0 auto;
  padding:var(--section-space) 2rem;
}

.benefits-heading{
  padding:0;
  margin-bottom:0.7rem;
  max-width:760px;
}

.benefits-sub{
  font-size:18px;
  color:var(--text-muted);
  font-weight:300;
  max-width:620px;
  line-height:1.7;
  margin-bottom:2.5rem;
}

/* LAYOUT */

.benefits-layout{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:18px;
  align-items:stretch;
}

/* HERO */

.benefit-hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#8B5CF6 0%, #7C4DCE 100%);
  border-radius:22px;
  padding:30px;
  color:#fff;
  min-height:100%;
}

.benefit-hero::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  top:-60px;
  right:-60px;
}

.benefit-hero-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  background:rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:26px;
  backdrop-filter:blur(10px);
}

.benefit-hero h3{
  font-size:48px;
  line-height:0.95;
  font-weight:700;
  margin-bottom:24px;
  letter-spacing:-2px;
}

.benefit-hero p{
  font-size:16px;
  line-height:1.9;
  color:rgba(255,255,255,0.82);
  margin-bottom:28px;
}

.benefit-hero-mini{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:18px;
  line-height:1.7;
  color:#fff;
  backdrop-filter:blur(10px);
}

/* GRID */

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.benefit-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:var(--card-padding);
  transition:0.2s;
}

.benefit-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(129,80,185,0.08);
}

.benefit-icon{
  font-size:28px;
  margin-bottom:16px;
}

.benefit-title{
  font-size:18px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:-0.5px;
  margin-bottom:14px;
  color:var(--text);
}

.benefit-desc{
  font-size:15px;
  line-height:1.75;
  color:var(--text-muted);
  font-weight:300;
}

/* BOTTOM */

.benefit-bottom-row{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.benefit-mini-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  font-size:14px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:10px;
}

.benefit-mini-card span{
  font-size:18px;
}

/* RESPONSIVE */

@media(max-width:1024px){

  .benefits-layout{
    grid-template-columns:1fr;
  }

  .benefits-grid{
    grid-template-columns:1fr 1fr;
  }

  .benefit-bottom-row{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:700px){

  .benefits-grid{
    grid-template-columns:1fr;
  }

  .benefit-bottom-row{
    grid-template-columns:1fr;
  }

  .benefit-hero h3{
    font-size:42px;
  }

}

/* ───────────────── BENEFICI MOBILE ───────────────── */

@media (max-width: 768px) {

  .benefits-section-inner {
    padding: 4rem 1.2rem;
  }

  .benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 1.5rem;
  }

  /* CARD GENERICHE */
  .benefit-card {
    width: 100%;
    min-height: auto;
    padding: 24px 22px;
    border-radius: 22px;
  }

  .benefit-icon {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .benefit-title {
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
  }

  .benefit-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  /* HERO VIOLA */
  .benefit-card.hero {
    padding: 28px 22px;
    min-height: auto;
  }

  .benefit-card.hero .benefit-title {
    font-size: 52px;
    line-height: 0.92;
    letter-spacing: -2px;
    margin-bottom: 20px;
  }

  .benefit-card.hero .benefit-desc {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.88);
  }

  .benefit-mini {
    padding: 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  /* RESET EFFETTI */
  .benefit-card::before,
  .benefit-card::after {
    display: none;
  }

}

    /* ── PRICING ── */
    .pricing-section-inner {
      max-width: 1100px; margin: 0 auto; padding: 5rem 2rem;
      text-align: center;
    }
    .pricing-toggle {
      display: flex;
      justify-content: center;
      margin-bottom: 3rem;
    }
    .pricing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      max-width: 820px;
      margin: 0 auto;
      text-align: left;
    }

    .p-card {
      border-radius: 22px;
      padding: 2rem 2rem 2.25rem;
      position: relative;
      border: 1.5px solid var(--border);
      background: #fff;
    }
    .p-card.pro {
      border-color: var(--lm);
      box-shadow: 0 16px 48px rgba(129,80,185,0.14);
    }

    .p-popular {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--lm);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 16px;
      border-radius: 100px;
      white-space: nowrap;
      letter-spacing: 0.3px;
    }

    .p-plan-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 6px;
    }
    .p-card.pro .p-plan-name { color: var(--lm); }

    .p-price {
      font-family: 'Poppins', sans-serif;
      font-size: 46px;
      font-weight: 600;
      color: var(--text);
      line-height: 1;
      margin-bottom: 4px;
      letter-spacing: -2px;
    }
    .p-price sup { font-size: 22px; vertical-align: super; font-weight: 400; letter-spacing: 0; }
    .p-price sub { font-size: 16px; vertical-align: baseline; font-weight: 300; letter-spacing: 0; }

    .p-period { font-size: 13px; color: var(--text-faint); margin-bottom: 1.5rem; font-weight: 300; }

    .p-divider { border: none; border-top: 0.5px solid var(--border); margin-bottom: 1.5rem; }

    .p-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
    .p-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 15px; color: var(--text-muted); font-weight: 300; line-height: 1.4;
    }
    .p-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--lm-light); border: 1px solid var(--lm-mid);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .p-card.pro .p-check { background: var(--lm); border-color: var(--lm); }

    .p-card .btn-primary, .p-card .btn-secondary {
      width: 100%; justify-content: center;
      font-size: 14px; padding: 13px;
    }
    .p-card.pro .btn-primary { font-size: 15px; }

    .p-note { font-size: 11.5px; color: var(--text-faint); text-align: center; margin-top: 10px; font-weight: 300; }

    /* ── CTA FINALE ── */
    .cta-section {
      position: relative;
      background: linear-gradient(135deg, var(--lm-xdark) 0%, var(--lm) 60%, var(--lm-mid) 100%);
      border-radius: 22px;
      padding: 5rem 3rem;
      text-align: center;
      margin: 0 2rem 5rem;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
    }
    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }

    .cta-section h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(34px, 4vw, 48px);
      font-weight: 700;
      letter-spacing: -1.6px;
      color: #fff;
      margin-bottom: 1rem;
      line-height: 1.08;
      position: relative; z-index: 1;
    }
    .cta-section p {
      font-size: 17px;
      color: rgba(255,255,255,0.75);
      font-weight: 300;
      line-height: 1.65;
      max-width: 650px;
      margin: 0 auto 2.5rem;
      position: relative; z-index: 1;
    }
    .cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-white {
      font-family: 'Poppins', sans-serif;
      font-size: 15px; font-weight: 500;
      color: var(--lm); background: #fff;
      border: none; cursor: pointer;
      padding: 14px 32px; border-radius: 100px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-white:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }
    .btn-white-ghost {
      font-family: 'Poppins', sans-serif;
      font-size: 15px; font-weight: 400;
      color: rgba(255,255,255,0.85); background: transparent;
      border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
      padding: 14px 28px; border-radius: 100px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-white-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }
    .cta-trust { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 14px; position: relative; z-index: 1; }

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

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse-dot {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:0.4; transform:scale(0.7); }
    }
    @keyframes luami-dot {
      0%,80%,100% { opacity:0.2; transform:scale(0.8); }
      40%         { opacity:1; transform:scale(1); }
    }

    .hero-left > * { opacity:0; animation: fadeUp 0.6s ease forwards; }
    .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
    .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
    .hero-left > *:nth-child(4) { animation-delay: 0.4s; }
    .hero-left > *:nth-child(5) { animation-delay: 0.5s; }
    .hero-right { opacity:0; animation: fadeUp 0.7s ease 0.35s forwards; }

    /* 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; }

    /* ── MOBILE ── */

    /* Previeni overflow orizzontale globale */
    html, body { overflow-x: hidden; max-width: 100%; }

.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;
}