﻿    * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

    :root {
      /* Italian craftsmanship palette */
      --cream: #F5EFE6;
      --cream-dark: #EAE2D3;
      --paper: #FBF7F0;
      --paper-soft: #F9F3E9;
      --ink: #0F0A05;
      --ink-soft: #2A2118;
      --ink-mute: #6B5E50;
      --ink-subtle: #9C8F80;
      --terracotta: #C2410C;
      --terracotta-dark: #9A2F05;
      --terracotta-soft: #F4E4DA;
      --terracotta-pale: #FBEEE4;
      --olive: #4D5D2A;
      --olive-dark: #3d4a20;
      --olive-soft: #DCE4CC;
      --olive-pale: #EFF3E3;
      --gold: #B8914B;
      --gold-dark: #96723A;
      --gold-soft: #F5ECD9;
      --divider: rgba(15, 10, 5, 0.08);
      --divider-strong: rgba(15, 10, 5, 0.14);

      /* Typography scale */
      --display: 'Fraunces', Georgia, serif;
      --body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --mono: 'JetBrains Mono', ui-monospace, monospace;

      --max: 1320px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--body);
      background: var(--cream);
      color: var(--ink);
      font-size: 17px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-feature-settings: "ss01", "ss02", "cv11";
      overflow-x: hidden;
    }

    .display {
      font-family: var(--display);
      font-optical-sizing: auto;
      letter-spacing: -0.025em;
      line-height: 0.95;
      font-weight: 400;
    }

    .mono {
      font-family: var(--mono);
      letter-spacing: -0.01em;
    }

    img { max-width: 100%; height: auto; display: block; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    a { color: inherit; text-decoration: none; }

    /* =============== GRAIN OVERLAY =============== */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: 0.04;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* =============== NAV =============== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 18px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 100;
      background: rgba(245, 239, 230, 0.75);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid var(--divider);
      transition: padding 0.3s;
    }

    nav.scrolled { padding: 12px 40px; }

    .logo {
      font-family: var(--display);
      font-weight: 500;
      font-size: 24px;
      letter-spacing: -0.03em;
      color: var(--ink);
      display: flex;
      align-items: baseline;
    }

    .logo .ai {
      color: var(--terracotta);
      font-style: italic;
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-links a {
      
      font-size: 14px;
      letter-spacing: 0.01em;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--terracotta);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }

    .nav-links a:hover { color: var(--ink-soft); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      padding: 10px 20px;
      background: var(--ink);
      color: var(--terracotta);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-cta:hover {
      background: var(--terracotta);
      color: #0f0a05;
      transform: translateY(-1px);
    }

    .nav-cta::after { display: none !important; }

    .mobile-menu-btn {
      display: none;
      width: 40px;
      height: 40px;
      background: var(--paper);
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      color: var(--ink);
    }

    @media (max-width: 780px) {
      nav { padding: 12px 20px; }
      .nav-links a:not(.nav-cta) { display: none; }
    }

    /* =============== HERO =============== */
    .hero {
      min-height: 100vh;
      padding: 140px 40px 80px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }

    /* Decorative orb */
    .hero-orb {
      position: absolute;
      top: 15%;
      right: -100px;
      width: 500px;
      height: 500px;
      background:
        radial-gradient(circle at 35% 30%, var(--terracotta) 0%, var(--terracotta-dark) 60%, transparent 75%);
      opacity: 0.08;
      filter: blur(40px);
      pointer-events: none;
      z-index: 0;
      animation: orbFloat 18s ease-in-out infinite;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(-40px, 30px) scale(1.05); }
      66% { transform: translate(30px, -20px) scale(0.95); }
    }

    .hero-inner {
      max-width: var(--max);
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 80px;
      align-items: center;
    }

    @media (max-width: 1000px) {
      .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    }

    .hero-left { max-width: 720px; }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 16px;
      background: var(--terracotta-soft);
      border: 1px solid rgba(194, 65, 12, 0.2);
      border-radius: 999px;
      font-size: 13px;
      color: var(--terracotta-dark);
      margin-bottom: 36px;
      font-weight: 500;
      letter-spacing: 0.02em;
      animation: fadeUp 0.8s ease-out;
    }

    .kicker-dot {
      width: 7px;
      height: 7px;
      background: var(--terracotta);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.15); }
    }

    h1.hero-title {
      font-size: clamp(54px, 8.5vw, 132px);
      line-height: 0.92;
      letter-spacing: -0.035em;
      margin-bottom: 28px;
      animation: fadeUp 1s ease-out 0.1s both;
    }

    h1.hero-title em {
      font-style: italic;
      font-weight: 300;
      color: #0f0a05;
      position: relative;
      display: inline-block;
    }

    h1.hero-title em .hero-ai {
      color: var(--terracotta);
    }

    h1.hero-title em::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: -2%;
      right: -2%;
      height: 6px;
      background: var(--gold);
      opacity: 0.3;
      z-index: -1;
    }

    .hero-slogan {
      font-family: var(--display);
      font-size: clamp(17px, 1.8vw, 21px);
      font-style: italic;
      font-weight: 300;
      color: var(--ink-mute);
      margin-bottom: 28px;
      letter-spacing: 0.005em;
      animation: fadeUp 1s ease-out 0.15s both;
      padding-left: 18px;
      border-left: 2px solid var(--terracotta);
      line-height: 1.2;
    }

    .hero-desc {
      font-size: clamp(17px, 1.4vw, 20px);
      color: var(--ink-soft);
      max-width: 52ch;
      margin-bottom: 44px;
      line-height: 1.5;
      animation: fadeUp 1s ease-out 0.25s both;
    }

    /* Waitlist form */
    .hero-form {
      animation: fadeUp 1s ease-out 0.35s both;
    }

    .form-label {
      display: block;
      font-size: 12px;
      color: var(--ink-mute);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .role-toggle {
      display: inline-flex;
      padding: 4px;
      background: var(--paper);
      border: 1px solid var(--divider-strong);
      border-radius: 999px;
      margin-bottom: 16px;
      gap: 2px;
    }

    .role-btn {
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-mute);
      transition: all 0.25s;
      white-space: nowrap;
    }

    .role-btn.active {
      background: var(--ink);
      color: var(--cream);
    }

    .role-btn.active[data-role="azienda"] {
      background: var(--olive);
    }

    .form-row {
      display: flex;
      gap: 8px;
      max-width: 540px;
    }

    .form-input {
      flex: 1;
      padding: 18px 22px;
      background: white;
      border: 1.5px solid var(--divider-strong);
      border-radius: 999px;
      font-family: inherit;
      font-size: 16px;
      color: var(--ink);
      outline: none;
      transition: all 0.25s;
      -webkit-appearance: none;
    }

    .form-input:focus {
      border-color: var(--terracotta);
      background: var(--terracotta-pale);
      box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.08);
    }

    .form-input::placeholder { color: var(--ink-subtle); }

    .form-submit {
      padding: 18px 28px;
      background: var(--ink);
      color: var(--cream);
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .form-submit:hover {
      background: var(--terracotta);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(194, 65, 12, 0.25);
    }

    .form-submit svg { transition: transform 0.25s; }
    .form-submit:hover svg { transform: translateX(4px); }

    .form-status {
      margin-top: 16px;
      font-size: 14px;
      color: var(--olive);
      font-weight: 500;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .form-status.show { opacity: 1; }

    .form-status em {
      display: block;
      font-size: 12px;
      font-weight: 400;
      font-style: italic;
      opacity: 0.75;
      margin-top: 4px;
    }

    .form-trust {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 24px;
      font-size: 13px;
      color: var(--ink-mute);
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .trust-item::before {
      content: '✓';
      color: var(--olive);
      font-weight: 700;
    }

    /* Phone mockup */
    .hero-phone-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1500px;
      animation: fadeUp 1.2s ease-out 0.5s both;
    }

    .hero-phone {
      width: 300px;
      height: 620px;
      background: #0a0a0a;
      border-radius: 44px;
      padding: 10px;
      position: relative;
      box-shadow:
        0 60px 120px rgba(15, 10, 5, 0.35),
        0 30px 60px rgba(15, 10, 5, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.08);
      transform: rotateY(-12deg) rotateX(4deg);
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hero-phone:hover {
      transform: rotateY(-4deg) rotateX(1deg) translateY(-8px);
    }

    .hero-phone::before {
      content: '';
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 22px;
      background: #0a0a0a;
      border-radius: 0 0 14px 14px;
      z-index: 10;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: var(--cream);
      border-radius: 34px;
      overflow: hidden;
      position: relative;
      padding: 48px 22px 22px;
    }

    .phone-app-logo {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .phone-app-logo .ai { color: var(--terracotta); font-style: italic; }

    .phone-app-greeting {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--ink);
    }

    .phone-app-greeting em {
      color: var(--terracotta);
      font-style: italic;
    }

    .phone-cat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-bottom: 16px;
    }

    .phone-cat {
      background: white;
      border: 1px solid var(--divider);
      border-radius: 10px;
      padding: 10px 4px;
      text-align: center;
      font-size: 10px;
      font-weight: 500;
      color: var(--ink);
    }

    .phone-cat.active {
      background: var(--ink);
      color: var(--cream);
      border-color: var(--ink);
    }

    .phone-cat .icon {
      font-size: 20px;
      display: block;
      margin-bottom: 2px;
    }

    .phone-input {
      background: white;
      border: 1px solid var(--divider-strong);
      padding: 10px 12px;
      border-radius: 10px;
      margin-bottom: 10px;
      font-size: 12px;
      color: var(--ink-mute);
    }

    .phone-input.accent {
      background: var(--terracotta-pale);
      border-color: var(--terracotta);
      color: var(--ink);
      font-weight: 500;
    }

    .phone-video {
      background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
      border-radius: 12px;
      height: 130px;
      position: relative;
      margin-bottom: 12px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 12px;
    }

    .phone-video::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%);
      pointer-events: none;
    }

    .phone-rec {
      display: flex;
      align-items: center;
      gap: 5px;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 9px;
      color: white;
      font-family: var(--mono);
    }

    .phone-rec::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #ff4444;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    .phone-submit {
      background: var(--terracotta);
      color: white;
      padding: 10px;
      border-radius: 10px;
      text-align: center;
      font-weight: 600;
      font-size: 12px;
    }

    /* Hero stats strip */
    .hero-stats {
      position: absolute;
      bottom: 30px;
      left: 40px;
      right: 40px;
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid var(--divider-strong);
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-mute);
      flex-wrap: wrap;
      gap: 16px;
      animation: fadeUp 1.5s ease-out 0.8s both;
    }

    @media (max-width: 900px) {
      .hero-stats { position: static; margin-top: 60px; justify-content: center; }
    }

    .hero-stats > div {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-stats strong {
      color: var(--ink);
      font-family: var(--display);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: -0.02em;
      text-transform: none;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* =============== SECTION BASE =============== */
    section {
      padding: 120px 40px;
      position: relative;
    }

    .section-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--terracotta);
      font-weight: 700;
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--terracotta);
    }

    .section-title {
      font-family: var(--display);
      font-size: clamp(40px, 6.5vw, 92px);
      line-height: 0.96;
      letter-spacing: -0.03em;
      margin-bottom: 28px;
      font-weight: 400;
    }

    .section-title em {
      font-style: italic;
      color: var(--terracotta);
      font-weight: 300;
    }

    .section-lead {
      font-size: clamp(18px, 1.5vw, 21px);
      max-width: 60ch;
      color: var(--ink-soft);
      line-height: 1.55;
    }

    /* =============== PROBLEM SECTION =============== */
    .problem {
      background: var(--paper);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      margin-top: 80px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .problem-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    .big-stat {
      background: var(--cream);
      border: 1px solid var(--divider);
      padding: 48px 40px;
      border-radius: 4px;
      position: relative;
      transition: all 0.4s;
    }

    .big-stat:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(15, 10, 5, 0.06);
      border-color: var(--terracotta);
    }

    .big-stat-number {
      font-family: var(--display);
      font-size: clamp(64px, 9vw, 112px);
      font-weight: 300;
      color: var(--terracotta);
      line-height: 0.9;
      letter-spacing: -0.04em;
      margin-bottom: 20px;
      font-style: italic;
    }

    .big-stat-label {
      font-size: 16px;
      color: var(--ink-soft);
      line-height: 1.5;
      max-width: 34ch;
    }

    .big-stat-src {
      font-size: 12px;
      color: var(--ink-mute);
      margin-top: 16px;
      font-style: italic;
    }

    .problem-items {
      display: flex;
      flex-direction: column;
    }

    .problem-item {
      padding: 20px 0;
      border-bottom: 1px solid var(--divider);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
      transition: all 0.3s;
      cursor: default;
    }

    .problem-item:hover { padding-left: 12px; border-color: var(--terracotta); }

    .problem-item-label {
      font-size: 17px;
      font-weight: 500;
      color: var(--ink);
    }

    .problem-item-value {
      font-family: var(--display);
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 300;
      color: var(--ink);
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .problem-item-value em {
      color: var(--terracotta);
      font-style: normal;
      font-size: 13px;
      font-family: var(--body);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-left: 6px;
      font-weight: 600;
    }

    /* =============== HOW IT WORKS =============== */
    .how {
      background: var(--ink);
      color: var(--cream);
      overflow: hidden;
    }

    .how::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(194, 65, 12, 0.12) 0%, transparent 60%);
      pointer-events: none;
    }

    .how .eyebrow { color: var(--gold); }
    .how .eyebrow::before { background: var(--gold); }
    .how .section-title em { color: var(--gold); }
    .how .section-lead { color: rgba(245, 239, 230, 0.7); }

    .how-switcher {
      display: inline-flex;
      padding: 4px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 999px;
      margin-top: 40px;
      margin-bottom: 60px;
      gap: 2px;
    }

    .how-sw-btn {
      padding: 12px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(245, 239, 230, 0.6);
      transition: all 0.3s;
      white-space: nowrap;
    }

    .how-sw-btn.active {
      background: var(--cream);
      color: var(--ink);
    }

    .how-sw-btn.active[data-panel="azienda"] {
      background: var(--gold);
    }

    .how-panel {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      opacity: 0;
      transition: opacity 0.4s;
    }

    @media (max-width: 900px) {
      .how-panel { grid-template-columns: 1fr; gap: 60px; }
    }

    .how-panel.active {
      display: grid;
      opacity: 1;
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .step {
      display: flex;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .step:last-child { border-bottom: none; }

    .step-num {
      font-family: var(--display);
      font-size: 44px;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      min-width: 60px;
      font-style: italic;
    }

    .step-content h4 {
      font-family: var(--display);
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 10px;
      color: var(--cream);
    }

    .step-content p {
      color: rgba(245, 239, 230, 0.7);
      font-size: 16px;
      line-height: 1.5;
    }

    .step-time {
      display: inline-block;
      margin-top: 12px;
      padding: 4px 10px;
      background: rgba(184, 145, 75, 0.15);
      border: 1px solid rgba(184, 145, 75, 0.3);
      border-radius: 4px;
      font-size: 12px;
      color: var(--gold);
      font-family: var(--mono);
    }

    /* WhatsApp mockup inside dark section */
    .wa-mock {
      width: 300px;
      height: 620px;
      background: #0a0a0a;
      border-radius: 44px;
      padding: 10px;
      box-shadow: 0 60px 120px rgba(0,0,0,0.5), 0 30px 60px rgba(0,0,0,0.3);
      transform: rotateY(8deg) rotateX(4deg);
      transition: transform 0.8s;
      margin: 0 auto;
    }

    .wa-mock:hover { transform: rotateY(0) rotateX(0); }

    .wa-mock::before {
      content: '';
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 22px;
      background: #0a0a0a;
      border-radius: 0 0 14px 14px;
      z-index: 10;
    }

    .wa-screen {
      width: 100%;
      height: 100%;
      background: #EFE8DD;
      border-radius: 34px;
      overflow: hidden;
      padding-top: 40px;
    }

    .wa-top {
      background: #075E54;
      color: white;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .wa-top-avatar {
      width: 32px;
      height: 32px;
      background: var(--terracotta);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-weight: 600;
      font-size: 11px;
    }

    .wa-top-info { flex: 1; }
    .wa-top-name { font-size: 13px; font-weight: 600; }
    .wa-top-status { font-size: 10px; opacity: 0.8; margin-top: 1px; }

    .wa-messages {
      padding: 14px 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .wa-msg {
      max-width: 80%;
      padding: 7px 10px 5px;
      border-radius: 8px;
      font-size: 12px;
      line-height: 1.35;
      box-shadow: 0 1px 1px rgba(0,0,0,0.08);
      color: var(--ink);
    }

    .wa-msg-in { background: white; align-self: flex-start; border-top-left-radius: 2px; }
    .wa-msg-out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 2px; }

    .wa-msg-time {
      font-size: 9px;
      color: rgba(15,10,5,0.45);
      float: right;
      margin-left: 6px;
      margin-top: 2px;
    }

    .wa-card-mini {
      background: white;
      border-radius: 8px;
      padding: 10px;
      font-size: 11px;
      border-left: 3px solid var(--terracotta);
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .wa-card-head-mini {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-bottom: 6px;
    }

    .wa-card-ava-mini {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--terracotta), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-family: var(--display);
      font-weight: 600;
      font-size: 10px;
    }

    .wa-card-name-mini {
      font-size: 11px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1;
    }

    .wa-card-role-mini {
      font-size: 9px;
      color: var(--ink-mute);
      margin-top: 1px;
    }

    .wa-card-match-mini {
      margin-left: auto;
      padding: 2px 5px;
      background: var(--olive);
      color: white;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
    }

    .wa-card-video-mini {
      height: 60px;
      background: linear-gradient(135deg, var(--olive), var(--olive-dark));
      border-radius: 5px;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
    }

    /* =============== BENEFITS =============== */
    .benefits { background: var(--cream); }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-top: 80px;
      background: var(--divider);
      border-radius: 4px;
      overflow: hidden;
    }

    @media (max-width: 900px) {
      .benefits-grid { grid-template-columns: 1fr; }
    }

    .benefit {
      background: var(--paper);
      padding: 48px 40px;
      transition: all 0.35s;
      position: relative;
    }

    .benefit:hover {
      background: var(--paper-soft);
      transform: translateY(-4px);
    }

    .benefit-num {
      font-family: var(--display);
      font-size: 52px;
      font-weight: 300;
      color: var(--terracotta);
      font-style: italic;
      line-height: 1;
      margin-bottom: 24px;
    }

    .benefit h3 {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 500;
      margin-bottom: 14px;
      line-height: 1.15;
      letter-spacing: -0.015em;
    }

    .benefit p {
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.6;
    }

    /* =============== PRICING =============== */
    .pricing {
      background: var(--paper);
      position: relative;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 80px;
    }

    @media (max-width: 820px) {
      .pricing-grid { grid-template-columns: 1fr; }
    }

    .price-card {
      background: var(--cream);
      border: 1px solid var(--divider);
      border-radius: 20px;
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s;
    }

    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(15, 10, 5, 0.06);
    }

    .price-card.featured {
      background: var(--ink);
      color: var(--cream);
      border-color: var(--ink);
    }

    .price-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--olive));
    }

    .price-kicker {
      display: inline-flex;
      padding: 4px 10px;
      background: var(--terracotta-soft);
      color: var(--terracotta-dark);
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 16px;
    }

    .price-card.featured .price-kicker {
      background: rgba(184, 145, 75, 0.15);
      color: var(--gold);
    }

    .price-title {
      font-family: var(--display);
      font-size: 32px;
      font-weight: 500;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .price-desc {
      color: var(--ink-mute);
      font-size: 15px;
      margin-bottom: 32px;
      line-height: 1.5;
    }

    .price-card.featured .price-desc { color: rgba(245, 239, 230, 0.7); }

    .price-amount {
      font-family: var(--display);
      font-size: 72px;
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: -0.04em;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .price-card.featured .price-amount { color: var(--gold); font-style: italic; }

    .price-unit {
      font-size: 15px;
      color: var(--ink-mute);
      margin-bottom: 32px;
    }

    .price-card.featured .price-unit { color: rgba(245, 239, 230, 0.6); }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }

    .price-features li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 15px;
      line-height: 1.4;
    }

    .price-features li::before {
      content: '';
      width: 20px;
      height: 20px;
      background: var(--olive-soft);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 2px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234D5D2A' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-size: 11px;
      background-position: center;
      background-repeat: no-repeat;
    }

    .price-card.featured .price-features li::before {
      background-color: rgba(184, 145, 75, 0.2);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8914B' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    }

    .price-cta {
      display: block;
      padding: 18px;
      text-align: center;
      background: var(--ink);
      color: var(--cream);
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.25s;
      width: 100%;
    }

    .price-cta:hover { background: var(--terracotta); transform: translateY(-2px); }

    .price-card.featured .price-cta {
      background: var(--gold);
      color: var(--ink);
    }

    .price-card.featured .price-cta:hover { background: var(--cream); color: var(--ink); }

    /* =============== FAQ =============== */
    .faq { background: var(--cream); }

    .faq-grid {
      max-width: 880px;
      margin: 80px auto 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--divider);
      padding: 4px 0;
    }

    .faq-q {
      width: 100%;
      padding: 24px 0;
      text-align: left;
      font-family: var(--display);
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 500;
      color: var(--ink);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      line-height: 1.3;
      transition: color 0.2s;
    }

    .faq-q:hover { color: var(--terracotta); }

    .faq-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--paper);
      border: 1px solid var(--divider);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--ink);
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-icon {
      background: var(--terracotta);
      color: white;
      transform: rotate(45deg);
      border-color: var(--terracotta);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.65;
    }

    .faq-item.open .faq-a {
      max-height: 400px;
      padding-bottom: 24px;
    }

    /* =============== FINAL CTA =============== */
    .final-cta {
      background: var(--ink);
      color: var(--cream);
      padding: 140px 40px;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: -40%;
      left: -20%;
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, rgba(194, 65, 12, 0.18) 0%, transparent 60%);
      pointer-events: none;
    }

    .final-cta::after {
      content: '';
      position: absolute;
      bottom: -40%;
      right: -20%;
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, rgba(184, 145, 75, 0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .final-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .final-kicker {
      display: inline-block;
      padding: 8px 18px;
      background: rgba(184, 145, 75, 0.15);
      border: 1px solid rgba(184, 145, 75, 0.3);
      color: var(--gold);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 32px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .final-title {
      font-family: var(--display);
      font-size: clamp(42px, 7.5vw, 104px);
      font-weight: 400;
      line-height: 0.96;
      letter-spacing: -0.03em;
      margin-bottom: 32px;
    }

    .final-title em {
      color: var(--gold);
      font-style: italic;
      font-weight: 300;
    }

    .final-subtitle {
      font-size: clamp(17px, 1.5vw, 21px);
      color: rgba(245, 239, 230, 0.75);
      max-width: 62ch;
      margin: 0 auto 48px;
      line-height: 1.55;
    }

    .final-form {
      max-width: 540px;
      margin: 0 auto;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .final-input {
      flex: 1;
      min-width: 240px;
      padding: 20px 26px;
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      border-radius: 999px;
      color: var(--cream);
      font-family: inherit;
      font-size: 16px;
      transition: all 0.3s;
    }

    .final-input::placeholder { color: rgba(245, 239, 230, 0.4); }

    .final-input:focus {
      outline: none;
      border-color: var(--gold);
      background: rgba(184, 145, 75, 0.08);
    }

    .final-btn {
      padding: 20px 32px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      transition: all 0.3s;
    }

    .final-btn:hover {
      background: var(--cream);
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(184, 145, 75, 0.25);
    }

    .final-stats {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-top: 100px;
      padding-top: 60px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      flex-wrap: wrap;
    }

    .final-stat-num {
      font-family: var(--display);
      font-size: 56px;
      font-weight: 300;
      color: var(--gold);
      font-style: italic;
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .final-stat-label {
      font-size: 12px;
      color: rgba(245, 239, 230, 0.5);
      margin-top: 8px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    /* =============== FOOTER =============== */
    footer {
      background: var(--ink);
      color: rgba(245, 239, 230, 0.5);
      padding: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo {
      font-family: var(--display);
      font-size: 20px;
      color: var(--cream);
    }

    .footer-logo .ai { color: var(--terracotta); font-style: italic; }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-links a { transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }

    /* =============== ANIMATIONS =============== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* =============== RESPONSIVE =============== */
    @media (max-width: 820px) {
      section { padding: 80px 24px; }
      .hero { padding: 120px 24px 40px; }
      .final-cta { padding: 100px 24px; }
      .hero-phone, .wa-mock { transform: none !important; }
      .form-row { flex-direction: column; }
      .form-input, .form-submit { width: 100%; }
    }

    @media (max-width: 540px) {
      .big-stat { padding: 32px 24px; }
      .benefit, .price-card { padding: 36px 28px; }
      .hero-title { font-size: 48px !important; }
    }

    /* ═══════════════════════════════════════════════════════════
       NEW SECTIONS v2 (trust-bar, identity, app-download,
       testimonials, donation, cookie-banner, cv-upload)
       ═══════════════════════════════════════════════════════════ */

    /* Trust bar (sotto hero) */
    .trust-bar {
      background: var(--cream-warm, var(--cream-2, #EFE6D6));
      padding: 36px 40px;
      border-top: 1px solid var(--divider, rgba(15,10,5,0.08));
      border-bottom: 1px solid var(--divider, rgba(15,10,5,0.08));
    }
    .trust-bar-grid {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .trust-pillar {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .trust-pillar-icon {
      width: 36px; height: 36px;
      color: var(--terracotta);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .trust-pillar h4 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }
    .trust-pillar p {
      font-size: 13px;
      color: var(--ink-mute, #6B5E50);
      line-height: 1.5;
    }

    /* Identity verification (trust signal grosso) */
    .identity-verify {
      background: var(--ink, #0F0A05);
      color: var(--cream);
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
    }
    .identity-verify::after {
      content: '';
      position: absolute;
      top: 50%; right: -10%;
      transform: translateY(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(184,145,75,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .identity-verify-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .identity-verify .eyebrow { color: var(--gold); }
    .identity-verify h2 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }
    .identity-verify h2 em {
      font-style: italic;
      color: var(--gold);
      font-weight: 400;
    }
    .identity-verify p.lead {
      font-size: 18px;
      line-height: 1.6;
      color: rgba(245, 239, 230, 0.78);
      margin-bottom: 28px;
      max-width: 480px;
    }
    .identity-checks {
      list-style: none;
      padding: 0; margin: 0;
    }
    .identity-checks li {
      padding: 14px 0;
      border-bottom: 1px solid rgba(245, 239, 230, 0.1);
      font-size: 16px;
      color: rgba(245, 239, 230, 0.85);
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .identity-checks li:last-child { border-bottom: none; }
    .identity-checks li svg {
      width: 22px; height: 22px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .identity-checks li strong { color: var(--cream); font-weight: 600; }

    /* Doc mockup with scan animation */
    .doc-mockup {
      position: relative;
      perspective: 1200px;
      max-width: 480px;
      margin-left: auto;
    }
    .doc-card {
      background: linear-gradient(135deg, #EFE6D6 0%, #F5EFE6 100%);
      border-radius: 16px;
      aspect-ratio: 1.6 / 1;
      padding: 24px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,145,75,0.4);
      color: var(--ink);
      position: relative;
      transform: rotate(-3deg);
      overflow: hidden;
    }
    .doc-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 44px;
      background: linear-gradient(90deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    }
    .doc-card-header {
      display: flex; justify-content: space-between; align-items: center;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 11px; font-weight: 700;
      color: var(--cream);
      position: relative; z-index: 2;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .doc-card-body {
      margin-top: 24px;
      display: flex; gap: 16px;
    }
    .doc-card-photo {
      width: 90px; height: 110px;
      background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fraunces', Georgia, serif;
      color: var(--cream);
      font-size: 26px;
      font-weight: 600;
      flex-shrink: 0;
    }
    .doc-card-fields {
      flex: 1;
      display: flex; flex-direction: column; gap: 8px;
    }
    .doc-card-field { display: flex; flex-direction: column; }
    .doc-card-label {
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--ink-subtle, #9C8F80);
      font-weight: 700;
    }
    .doc-card-value {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 14px; font-weight: 600;
      color: var(--ink);
    }
    .verified-stamp {
      position: absolute;
      bottom: -16px; right: -16px;
      background: var(--olive);
      color: var(--cream);
      padding: 14px 20px;
      border-radius: 100px;
      display: inline-flex; align-items: center; gap: 8px;
      font-weight: 600; font-size: 14px;
      box-shadow: 0 12px 30px rgba(77,93,42,0.5);
      animation: stampPop 0.6s 1s both cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .verified-stamp svg { width: 18px; height: 18px; }
    @keyframes stampPop {
      from { opacity: 0; transform: scale(0.5) rotate(-15deg); }
      to { opacity: 1; transform: scale(1) rotate(0); }
    }
    .scan-line {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      box-shadow: 0 0 16px var(--gold);
      animation: docScan 3s ease-in-out infinite;
      border-radius: 16px 16px 0 0;
    }
    @keyframes docScan {
      0%, 100% { transform: translateY(0); opacity: 0; }
      20% { opacity: 1; }
      50% { transform: translateY(220px); opacity: 1; }
      80% { opacity: 0; }
    }

    @media (max-width: 880px) {
      .identity-verify-inner { grid-template-columns: 1fr; gap: 50px; }
      .identity-verify { padding: 70px 24px; }
      .doc-mockup { max-width: 380px; margin: 0 auto; }
    }

    /* ═══════ DOWNLOAD APP SECTION ═══════ */
    .app-download {
      background: linear-gradient(135deg, var(--cream-warm, #EFE6D6) 0%, var(--cream) 100%);
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
    }
    .app-download-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .app-download h2 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }
    .app-download h2 em {
      font-style: italic; color: var(--terracotta);
      font-weight: 400;
    }
    .app-download p.lead {
      font-size: 17px;
      color: var(--ink-mute, #6B5E50);
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: 520px;
    }
    .app-download p.lead strong { color: var(--ink); }

    .store-badges {
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .store-badge {
      background: var(--ink);
      color: var(--cream);
      padding: 12px 20px;
      border-radius: 12px;
      display: inline-flex; align-items: center; gap: 12px;
      text-decoration: none;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
      border: none;
      font-family: inherit;
    }
    .store-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(15,10,5,0.25);
    }
    .store-badge .store-icon {
      width: 28px; height: 28px;
      flex-shrink: 0;
    }
    .store-badge .store-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
    .store-badge .store-text small {
      font-size: 10px;
      opacity: 0.75;
      margin-bottom: 3px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .store-badge .store-text strong {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 17px;
      font-weight: 600;
    }

    .app-download-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(184, 145, 75, 0.15);
      color: var(--gold-dark, #96723A);
      padding: 8px 14px;
      border-radius: 100px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: 18px;
      border: 1px solid rgba(184, 145, 75, 0.3);
    }
    .app-download-status .status-dot {
      width: 7px; height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .app-demo-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--terracotta);
      text-decoration: underline;
      text-underline-offset: 4px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      background: none;
      border: none;
      font-family: inherit;
      padding: 0;
    }
    .app-demo-link:hover { color: var(--terracotta-dark); }

    /* Phone preview floating */
    .app-preview-phones {
      position: relative;
      height: 560px;
      max-width: 480px;
      margin-left: auto;
    }
    .app-preview-phone {
      position: absolute;
      width: 240px;
      background: var(--ink);
      border-radius: 36px;
      padding: 8px;
      box-shadow: 0 30px 70px rgba(15,10,5,0.3), 0 0 0 1px rgba(184,145,75,0.2);
    }
    .app-preview-phone .pp-screen {
      background: var(--cream);
      border-radius: 28px;
      padding: 24px 16px;
      aspect-ratio: 9 / 19.5;
      overflow: hidden;
    }
    .app-preview-phone-1 {
      left: 0;
      top: 30px;
      transform: rotate(-6deg);
      z-index: 1;
    }
    .app-preview-phone-2 {
      right: 0;
      top: 0;
      transform: rotate(4deg);
      z-index: 2;
    }
    .pp-app-logo {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }
    .pp-app-logo .ai { color: var(--terracotta); font-style: italic; }
    .pp-greet {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 19px;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.015em;
      margin-bottom: 14px;
    }
    .pp-greet em { font-style: italic; color: var(--terracotta); }
    .pp-card {
      background: white;
      border: 1px solid var(--divider, rgba(15,10,5,0.08));
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 10px;
      font-size: 12px;
    }
    .pp-card-title { font-weight: 600; margin-bottom: 4px; font-size: 13px; }
    .pp-card-meta { color: var(--ink-mute, #6B5E50); font-size: 10.5px; }
    .pp-match-num {
      float: right;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--olive);
      line-height: 1;
    }
    .pp-match-num small { font-size: 9px; color: var(--ink-mute, #6B5E50); display: block; text-transform: uppercase; letter-spacing: 0.1em; }

    @media (max-width: 880px) {
      .app-download-inner { grid-template-columns: 1fr; gap: 60px; }
      .app-download { padding: 70px 24px; }
      .app-preview-phones { max-width: 380px; height: 480px; margin: 0 auto; }
      .app-preview-phone { width: 200px; }
    }

    /* ═══════ TESTIMONIALS ═══════ */
    .testimonials-section {
      background: var(--cream-warm, #EFE6D6);
      padding: 100px 40px;
      border-top: 1px solid var(--divider, rgba(15,10,5,0.08));
      border-bottom: 1px solid var(--divider, rgba(15,10,5,0.08));
    }
    .testimonials-inner {
      max-width: 1240px;
      margin: 0 auto;
    }
    .testimonials-section .eyebrow,
    .testimonials-section .section-title {
      text-align: center;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 20px;
      margin-top: 50px;
    }
    .testimonial-card {
      background: var(--cream);
      padding: 32px 28px;
      border-radius: 14px;
      border: 1px solid var(--divider, rgba(15,10,5,0.08));
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: -12px; left: 24px;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 80px; line-height: 1;
      color: var(--terracotta);
      opacity: 0.45;
    }
    .testimonial-tag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--olive);
      font-weight: 700;
      margin-bottom: 10px;
    }
    .testimonial-card p {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 17px; line-height: 1.55;
      font-style: italic; font-weight: 400;
      color: var(--ink);
      margin-bottom: 22px;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 14px;
      border-top: 1px solid var(--divider, rgba(15,10,5,0.08));
      padding-top: 14px;
    }
    .testimonial-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--terracotta), var(--olive));
      color: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 600;
    }
    .testimonial-name { font-weight: 600; font-size: 15px; color: var(--ink); }
    .testimonial-role { font-size: 13px; color: var(--ink-mute, #6B5E50); margin-top: 2px; }

    /* ═══════ DONATION ═══════ */
    .donation-section {
      padding: 100px 40px;
      background: linear-gradient(135deg, var(--cream-warm, #EFE6D6) 0%, var(--cream-deep, #E8DCC4) 100%);
      position: relative;
      overflow: hidden;
    }
    .donation-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .donation-section h2 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(32px, 4.5vw, 48px);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 18px;
    }
    .donation-section h2 em { font-style: italic; color: var(--olive); }
    .donation-section p.lead {
      font-size: 16px;
      color: var(--ink-mute, #6B5E50);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .donation-amounts {
      display: flex; gap: 8px; flex-wrap: wrap;
      margin-bottom: 22px;
    }
    .donation-amount {
      background: var(--cream);
      border: 1.5px solid var(--divider-strong, rgba(15,10,5,0.18));
      padding: 12px 22px;
      border-radius: 100px;
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 600; font-size: 17px;
      color: var(--ink);
      cursor: pointer;
      transition: all 0.2s;
    }
    .donation-amount:hover, .donation-amount.selected {
      background: var(--olive);
      color: var(--cream);
      border-color: var(--olive);
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(77,93,42,0.3);
    }
    .donation-amount.custom { font-style: italic; font-weight: 400; }
    .donate-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--olive);
      color: var(--cream);
      padding: 16px 28px;
      border-radius: 100px;
      font-weight: 600; font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }
    .donate-btn:hover { background: var(--olive-dark); transform: translateY(-2px); }
    .donate-secure {
      font-size: 12.5px;
      color: var(--ink-subtle, #9C8F80);
      margin-top: 12px;
    }

    .donation-impact-box {
      background: var(--ink);
      color: var(--cream);
      border-radius: 16px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
    }
    .donation-impact-box .heart {
      position: absolute;
      top: -30px; right: -30px;
      font-size: 180px;
      color: var(--terracotta);
      opacity: 0.18;
      line-height: 1;
    }
    .donation-impact-box h4 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
      position: relative;
    }
    .donation-impact-box .small-text {
      font-size: 13px;
      color: rgba(245,239,230,0.7);
      margin-bottom: 18px;
      line-height: 1.55;
      position: relative;
    }
    .donation-impact-list {
      list-style: none;
      padding: 0; margin: 0;
      position: relative;
    }
    .donation-impact-list li {
      padding: 8px 0;
      font-size: 14px;
      color: rgba(245,239,230,0.85);
      display: flex; gap: 10px;
      align-items: flex-start;
      line-height: 1.5;
    }
    .donation-impact-list li::before {
      content: '→';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
    }

    @media (max-width: 760px) {
      .donation-inner { grid-template-columns: 1fr; gap: 40px; }
      .donation-section { padding: 70px 24px; }
    }

    /* ═══════ CV UPLOAD inline in form hero ═══════ */
    .cv-upload-inline {
      margin-top: 12px;
      padding: 12px 14px;
      background: rgba(245, 239, 230, 0.5);
      border: 1.5px dashed var(--divider-strong, rgba(15,10,5,0.18));
      border-radius: 12px;
      display: flex; align-items: center; gap: 12px;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 13px;
    }
    .cv-upload-inline:hover {
      border-color: var(--terracotta);
      background: rgba(194, 65, 12, 0.04);
    }
    .cv-upload-inline.has-file {
      border-color: var(--olive);
      background: rgba(77, 93, 42, 0.06);
      border-style: solid;
    }
    .cv-upload-inline svg {
      width: 22px; height: 22px;
      color: var(--terracotta);
      flex-shrink: 0;
    }
    .cv-upload-inline.has-file svg { color: var(--olive); }
    .cv-upload-inline-text { flex: 1; line-height: 1.4; }
    .cv-upload-inline-text strong { color: var(--ink); display: block; font-size: 13.5px; }
    .cv-upload-inline-text small { color: var(--ink-mute, #6B5E50); font-size: 11.5px; }
    .cv-upload-inline input[type="file"] { display: none; }

    /* ═══════ COOKIE BANNER GDPR ═══════ */
    #cookie-banner {
      position: fixed;
      bottom: 16px; left: 16px; right: 16px;
      max-width: 540px;
      background: var(--ink);
      color: var(--cream);
      padding: 22px;
      border-radius: 14px;
      box-shadow: 0 30px 80px rgba(15,10,5,0.35);
      z-index: 200;
      transform: translateY(150%);
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(184,145,75,0.3);
    }
    #cookie-banner.show { transform: translateY(0); }
    #cookie-banner h5 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 6px;
    }
    #cookie-banner p {
      font-size: 13px;
      color: rgba(245,239,230,0.8);
      margin-bottom: 14px;
      line-height: 1.55;
    }
    #cookie-banner p a { color: var(--gold); text-decoration: underline; }
    #cookie-banner .cookie-buttons {
      display: flex; gap: 8px; flex-wrap: wrap;
      align-items: center;
    }
    #cookie-banner button {
      padding: 9px 16px;
      border-radius: 100px;
      font-weight: 600; font-size: 13px;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }
    #cookie-banner .accept-all {
      background: var(--terracotta);
      color: var(--cream);
    }
    #cookie-banner .accept-all:hover { background: var(--terracotta-dark); }
    #cookie-banner .reject {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(245,239,230,0.3);
    }
    #cookie-banner .reject:hover { background: rgba(245,239,230,0.1); }

    /* ═══════ SPRINT 1 ADDITIONS ═══════ */

    /* P1.6 — Brand badge */
    .logo-wrap {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .brand-badge {
      font-size: 11px;
      color: var(--ink-mute);
      letter-spacing: 0.01em;
    }
    .brand-badge a {
      color: var(--terracotta);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    @media (max-width: 768px) { .brand-badge { display: none; } }

    /* P1.2 — Status badge "Waitlist aperta" */
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(77, 93, 42, 0.12);
      border: 1px solid rgba(77, 93, 42, 0.25);
      border-radius: 999px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--olive-dark);
      letter-spacing: 0.02em;
      margin-top: 10px;
      margin-bottom: 0;
    }
    .status-dot-live {
      width: 7px;
      height: 7px;
      background: #22c55e;
      border-radius: 50%;
      flex-shrink: 0;
      animation: livePulse 1.8s ease-in-out infinite;
    }
    @keyframes livePulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
      50% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
    }

    /* P1.1 — Founding counter nella card promessa */
    .founding-counter {
      margin: 8px 0 20px;
      padding: 16px 20px;
      background: rgba(184, 145, 75, 0.12);
      border: 1px solid rgba(184, 145, 75, 0.3);
      border-radius: 14px;
      text-align: center;
    }
    .founding-counter-num {
      font-family: var(--display);
      font-size: 52px;
      font-weight: 500;
      color: var(--gold-dark);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .founding-counter-label {
      font-size: 13px;
      color: var(--ink-mute);
      margin-top: 4px;
      font-weight: 500;
    }
    .founding-counter-live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: var(--ink-subtle);
      margin-top: 8px;
      font-style: italic;
    }

    /* P1.1 — Footnote promessa */
    .pricing-footnote {
      text-align: center;
      margin-top: 24px;
      font-size: 13px;
      color: var(--ink-mute);
      max-width: 65ch;
      margin-left: auto;
      margin-right: auto;
      font-style: italic;
      line-height: 1.6;
    }

    /* P1.4 — Store badge demo */
    .store-badge-demo {
      background: var(--terracotta);
    }
    .store-badge-demo:hover {
      background: var(--terracotta-dark);
    }

    /* P1.5 — Form aziende esteso */
    .azienda-fields-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 12px;
    }
    @media (max-width: 600px) {
      .azienda-fields-grid { grid-template-columns: 1fr; }
    }
    .azienda-fields-grid select.form-input {
      appearance: none;
      -webkit-appearance: none;
      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 d='M1 1l5 5 5-5' stroke='%236B5E50' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }
    .founding-partner-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 14px;
      background: rgba(184, 145, 75, 0.1);
      border: 1px solid rgba(184, 145, 75, 0.25);
      border-radius: 10px;
      cursor: pointer;
      font-size: 14px;
      line-height: 1.4;
      color: var(--ink-soft);
      margin-bottom: 4px;
    }
    .founding-partner-check input[type="checkbox"] {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      accent-color: var(--gold-dark);
      cursor: pointer;
    }
    .founding-partner-check strong {
      color: var(--gold-dark);
    }

    /* Logo agenzia nel footer */
    .footer-agency {
      font-size: 12px;
      color: rgba(245,239,230,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .footer-agency-text {
      color: rgba(245,239,230,0.4);
      text-decoration: none;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      transition: color 0.2s;
    }
    .footer-agency-text:hover { color: rgba(245,239,230,0.75); }

    /* P2.3 — Counter waitlist live */
    .hero-waitlist-count {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      padding: 6px 14px;
      background: var(--terracotta-soft);
      border: 1px solid rgba(194, 65, 12, 0.2);
      border-radius: 999px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--terracotta-dark);
      letter-spacing: 0.02em;
    }
    .hero-waitlist-count--aziende {
      background: rgba(77, 93, 42, 0.12);
      border: 1px solid rgba(77, 93, 42, 0.25);
      color: var(--olive-dark);
    }
    .hero-waitlist-num {
      font-weight: 700;
      color: var(--terracotta);
      font-size: 14px;
    }
    .hero-waitlist-num--aziende {
      color: var(--olive);
    }
    .hero-counters-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      width: 100%;
      padding: 8px 24px;
      margin-bottom: 8px;
    }
    .hero-counters-row .hero-waitlist-count {
      margin-top: 0;
    }
    .hero-counters-row .kicker {
      margin-bottom: 0;
      animation: none;
    }
    .hero-counters-row .status-badge {
      margin-top: 0;
      margin-bottom: 0;
    }

