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

    :root {
      --bg:          #004a4a;
      --bg-2:        #003e3e;
      --bg-card:     #005c5c;
      --bg-card-h:   #007373;
      --gold:        #C9A84C;
      --gold-2:      #dfc46a;
      --gold-glow:   rgba(201,168,76,0.10);
      --gold-border: rgba(201,168,76,0.22);
      --white:       #f0eee8;
      --w60:         rgba(240,238,232,0.60);
      --w35:         rgba(240,238,232,0.35);
      --w15:         rgba(240,238,232,0.15);
      --w07:         rgba(240,238,232,0.07);
      --border:      rgba(255,255,255,0.07);
      --radius:      14px;
      --radius-lg:   22px;
      --ease:        cubic-bezier(0.22, 1, 0.36, 1);
      --font-h:      'Montserrat', sans-serif;
      --font-b:      'Montserrat', sans-serif;
      --font-serif:  'Lexend', sans-serif; /* nome storico: ora e un sans */
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-b);
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
    }
    ::selection { background: var(--gold); color: var(--bg); }

    /* ── NAVBAR (floating pill) ── */
    nav {
      position: fixed; top: 20px; left: 50%;
      transform: translateX(-50%);
      z-index: 1000; height: 58px;
      width: calc(100% - 80px); max-width: 1240px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 28px;
      border-radius: 100px;
      background: rgba(0,74,74,0.88);
      backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
      border: 1px solid var(--gold-border);
      box-shadow: 0 8px 48px rgba(0,0,0,0.48), 0 1px 0 rgba(255,255,255,0.05) inset;
    }
    .nav-brand { text-decoration: none; display: flex; align-items: center; gap: 10px; }
    .nav-brand-name { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
    .nav-brand-sep { width: 1px; height: 14px; background: var(--w35); display: inline-block; }
    .nav-brand-sub { font-size: 0.6rem; font-weight: 400; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
    .nav-links a {
      white-space: nowrap;
      font-size: 0.7rem; font-weight: 500; color: var(--w60);
      text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
      transition: color 0.2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
      background: var(--gold); transition: width 0.3s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--white); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta {
      font-family: var(--font-h); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      color: var(--bg); background: var(--gold);
      padding: 9px 22px; border-radius: 100px;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: #dfc46a; transform: scale(1.03); }
    .ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .ham span { width: 22px; height: 1.5px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
    .ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity: 0; }
    .ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .mob-menu {
      position: fixed; inset: 0; z-index: 999;
      background: rgba(0,74,74,0.97); backdrop-filter: blur(20px);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
      opacity: 0; pointer-events: none; transition: opacity 0.35s;
    }
    .mob-menu.open { opacity: 1; pointer-events: all; }
    .mob-menu a { font-family: var(--font-h); font-size: 2.2rem; font-weight: 800; color: var(--white); text-decoration: none; transition: color 0.2s; }
    .mob-menu a:hover { color: var(--gold); }
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .ham { display: flex; }
      .nav-brand-sub, .nav-brand-sep { display: none; }
    }

    /* ── SVG UTILS ── */
    .ico { display: inline-block; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
    .ico-sm { width: 16px; height: 16px; }

    /* ── PAGE CONTAINER ── */
    .page-wrap {
      max-width: 820px;
      margin: 0 auto;
      padding: 140px 40px 80px;
    }

    /* ── HEADER ── */
    .page-eyebrow {
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.26em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
    }
    .page-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
    .page-title {
      font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 700; letter-spacing: -0.01em; color: var(--white);
      line-height: 1.05; margin-bottom: 16px;
    }
    .page-title em { font-style: italic; color: var(--gold); }
    .page-subtitle {
      font-size: 0.88rem; color: var(--w60); line-height: 1.82;
      font-weight: 300; max-width: 600px; margin-bottom: 56px;
    }

    /* ── FORM SECTIONS ── */
    .form-section {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      margin-bottom: 24px;
    }
    .form-section-head {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 28px; padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .form-section-num {
      width: 32px; height: 32px; border-radius: 8px;
      background: var(--gold-glow); border: 1px solid var(--gold-border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-h); font-size: 0.72rem; font-weight: 700;
      color: var(--gold);
    }
    .form-section-title {
      font-family: var(--font-h); font-size: 1.05rem; font-weight: 700;
      color: var(--white); letter-spacing: -0.01em;
    }
    .form-section-subtitle {
      font-size: 0.78rem; color: var(--w35); font-weight: 300;
      margin-top: 2px;
    }

    /* ── FORM FIELDS ── */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-full { grid-column: span 2; }
    .form-field { display: flex; flex-direction: column; gap: 7px; }
    .form-field label {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--w60);
    }
    .form-field label .req { color: var(--gold); }
    .form-field input,
    .form-field textarea,
    .form-field select {
      background: var(--bg-2); border: 1px solid var(--border);
      border-radius: 10px; padding: 12px 14px;
      font-family: var(--font-b); font-size: 0.85rem; color: var(--white);
      outline: none; transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%; resize: vertical;
      appearance: none; -webkit-appearance: none;
    }
    .form-field select {
      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='%23C9A84C' 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;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: var(--w35); }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    }
    .form-hint {
      font-size: 0.7rem; color: var(--w35); font-weight: 300;
      margin-top: 4px; line-height: 1.5;
    }

    /* Radio group */
    .radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
    .radio-option {
      position: relative; cursor: pointer;
    }
    .radio-option input { position: absolute; opacity: 0; width: 0; height: 0; }
    .radio-option span {
      display: inline-block;
      border: 1px solid var(--border); color: var(--w60);
      padding: 9px 20px; font-size: 0.76rem; font-weight: 400;
      letter-spacing: 0.03em; border-radius: 100px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      cursor: pointer;
    }
    .radio-option input:checked + span {
      border-color: var(--gold); color: var(--gold);
      background: var(--gold-glow);
    }
    .radio-option span:hover {
      border-color: var(--gold-border); color: var(--gold);
    }

    /* ── CHECKBOX ── */
    .form-check { display: flex; align-items: flex-start; gap: 12px; margin-top: 8px; }
    .form-check input[type="checkbox"] {
      width: 18px; height: 18px; min-width: 18px;
      accent-color: var(--gold); cursor: pointer; margin-top: 2px;
    }
    .form-check label {
      font-size: 0.75rem; color: var(--w60); line-height: 1.6;
      font-weight: 300; cursor: pointer;
    }
    .form-check label strong { color: var(--gold); font-weight: 600; }

    /* ── SUBMIT ── */
    .btn-primary {
      font-family: var(--font-h); font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      color: var(--bg); background: var(--gold);
      padding: 16px 36px; border-radius: 100px;
      display: inline-flex; align-items: center; gap: 12px;
      transition: background 0.2s, transform 0.2s var(--ease);
      border: none; cursor: pointer;
    }
    .btn-primary:hover { background: var(--gold-2); transform: scale(1.02); }
    .form-submit-wrap {
      text-align: center; margin-top: 40px;
    }

    /* ── INFO NOTE ── */
    .info-note {
      background: var(--gold-glow); border: 1px solid var(--gold-border);
      border-radius: var(--radius); padding: 20px 24px;
      margin-bottom: 24px;
      display: flex; align-items: flex-start; gap: 14px;
    }
    .info-note-ico { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .info-note p {
      font-size: 0.8rem; color: var(--w60); line-height: 1.72; font-weight: 300;
    }
    .info-note strong { color: var(--gold); font-weight: 600; }

    /* ── FOOTER MINI ── */
    .mini-footer {
      text-align: center; padding: 40px 0;
      border-top: 1px solid var(--border);
      margin-top: 60px;
    }
    .mini-footer p {
      font-size: 0.74rem; color: var(--w15); font-weight: 300;
    }
    .mini-footer a { color: var(--gold); text-decoration: none; }

    /* ── SUCCESS MESSAGE ── */
    .success-msg {
      display: none; text-align: center; padding: 80px 20px;
    }
    .success-msg.show { display: block; }
    .success-ico {
      width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
      background: var(--gold-glow); border: 1px solid var(--gold-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
    }
    .success-msg h3 {
      font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700;
      color: var(--white); margin-bottom: 12px;
    }
    .success-msg p { font-size: 0.88rem; color: var(--w60); line-height: 1.72; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { width: calc(100% - 28px); padding: 0 14px; top: 10px; height: 52px; }
      .page-wrap { padding: 110px 20px 60px; }
      .form-section { padding: 28px 20px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-full { grid-column: span 1; }
      .page-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    }

    /* ── STIMA RAPIDA CNF ── */
    .stima-wrap {
      background: var(--bg-card);
      border: 1px solid var(--gold-border);
      border-radius: var(--radius-lg);
      padding: 44px 40px;
      margin-bottom: 44px;
      position: relative; overflow: hidden;
    }
    .stima-wrap::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
    }
    .stima-eyebrow {
      font-size: 0.56rem; font-weight: 700; letter-spacing: 0.26em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
    }
    .stima-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
    .stima-h2 {
      font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700; letter-spacing: -0.01em; color: var(--white);
      margin-bottom: 8px; line-height: 1.08;
    }
    .stima-h2 em { font-style: italic; color: var(--gold); }
    .stima-sub {
      font-size: 0.8rem; color: var(--w60); line-height: 1.72; font-weight: 300;
      max-width: 560px; margin-bottom: 32px;
    }
    /* Steps indicator */
    .stima-steps {
      display: flex; align-items: center; margin-bottom: 32px;
    }
    .stima-step {
      display: flex; align-items: center; gap: 8px; flex-shrink: 0;
    }
    .step-num {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--bg-2); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-h); font-size: 0.66rem; font-weight: 700; color: var(--w35);
      transition: all 0.3s;
    }
    .step-label {
      font-size: 0.64rem; color: var(--w35); font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.3s;
    }
    .stima-step.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--bg); }
    .stima-step.active .step-label { color: var(--white); }
    .stima-step.done .step-num {
      background: var(--gold-glow); border-color: var(--gold); color: var(--gold);
    }
    .stima-step.done .step-label { color: var(--gold); }
    .stima-step-line { flex: 1; height: 1px; background: var(--border); margin: 0 12px; min-width: 24px; }
    /* Step cards */
    .stima-card.hidden, .stima-result.hidden { display: none; }
    .stima-q {
      font-family: var(--font-h); font-size: clamp(1.05rem, 2.2vw, 1.35rem);
      font-weight: 700; letter-spacing: -0.02em; color: var(--white);
      margin-bottom: 22px; line-height: 1.22;
    }
    .stima-q em { font-style: italic; color: var(--gold); }
    .stima-note {
      font-size: 0.73rem; color: var(--w35); font-weight: 300;
      margin-top: -14px; margin-bottom: 18px; line-height: 1.6;
    }
    .stima-choices { display: flex; flex-direction: column; gap: 9px; }
    .stima-choice {
      background: var(--bg-2); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 14px 18px 14px 18px;
      cursor: pointer; text-align: left; width: 100%;
      display: flex; flex-direction: column; gap: 3px;
      transition: background 0.2s, border-color 0.2s, transform 0.18s var(--ease);
      position: relative;
    }
    .stima-choice:hover {
      background: var(--bg-card-h); border-color: var(--gold-border);
      transform: translateX(5px);
    }
    .stima-choice::after {
      content: '→'; position: absolute; right: 18px; top: 50%;
      transform: translateY(-50%);
      color: var(--w35); font-size: 0.9rem;
      transition: color 0.2s, right 0.2s;
    }
    .stima-choice:hover::after { color: var(--gold); right: 14px; }
    .sc-title {
      font-family: var(--font-h); font-size: 0.88rem; font-weight: 700;
      color: var(--white); letter-spacing: -0.01em;
      display: inline-flex; align-items: center; gap: 9px;
    }
    .sc-ico { width: 16px; height: 16px; flex: none; color: var(--gold); }
    .sc-sub { font-size: 0.72rem; color: var(--w60); font-weight: 300; }
    /* Back button */
    .stima-back {
      background: none; border: none; cursor: pointer;
      font-family: var(--font-b); font-size: 0.7rem; font-weight: 500;
      color: var(--w35); padding: 0; margin-bottom: 18px;
      display: inline-flex; align-items: center; gap: 6px;
      transition: color 0.2s;
    }
    .stima-back:hover { color: var(--white); }
    /* Result */
    .stima-context-label {
      font-size: 0.64rem; color: var(--w35); font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
    }
    .stima-result-range {
      background: var(--bg);
      border: 1px solid var(--gold-border);
      border-radius: var(--radius); padding: 24px 28px;
      margin-bottom: 22px; text-align: center;
    }
    .stima-range-label {
      font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .stima-range-value {
      font-family: var(--font-h); font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1;
    }
    .stima-range-note {
      font-size: 0.68rem; color: var(--w35); margin-top: 8px; font-weight: 300;
    }
    .stima-table {
      width: 100%; border-collapse: collapse; margin-bottom: 20px;
    }
    .stima-table th {
      font-size: 0.56rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--w35);
      padding: 9px 12px; text-align: left;
      border-bottom: 1px solid var(--border);
    }
    .stima-table th.right { text-align: right; }
    .stima-table td {
      padding: 10px 12px;
      font-size: 0.8rem; color: var(--w60); font-weight: 300;
      border-bottom: 1px solid var(--border);
    }
    .stima-table td.num { text-align: right; color: var(--gold); font-weight: 500; }
    .stima-table tr.total-row td {
      font-family: var(--font-h); font-weight: 700; color: var(--white);
      font-size: 0.84rem; border-bottom: none; padding-top: 12px;
    }
    .stima-table tr.total-row td.num { color: var(--gold-2); }
    .stima-normativa {
      display: flex; align-items: flex-start; gap: 12px;
      background: var(--gold-glow); border: 1px solid var(--gold-border);
      border-radius: var(--radius); padding: 14px 16px;
      margin-bottom: 20px;
    }
    .stima-normativa-ico { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
    .stima-normativa p { font-size: 0.73rem; color: var(--w60); line-height: 1.68; font-weight: 300; }
    .stima-normativa strong { color: var(--gold); font-weight: 600; }
    .stima-callback {
      background: var(--bg-2);
      border: 1px solid var(--border); border-left: 3px solid var(--gold);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 18px 22px; margin-bottom: 24px;
    }
    .stima-callback-h {
      font-family: var(--font-h); font-size: 0.95rem; font-weight: 700;
      color: var(--white); margin-bottom: 5px; letter-spacing: -0.01em;
    }
    .stima-callback p { font-size: 0.78rem; color: var(--w60); font-weight: 300; line-height: 1.7; }
    .stima-result-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .btn-ghost-sm {
      font-family: var(--font-h); font-size: 0.66rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--w60); border: 1px solid var(--border);
      padding: 11px 20px; border-radius: 100px;
      background: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 8px;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost-sm:hover { border-color: var(--w35); color: var(--white); }
    /* Separator between stima and form */
    .stima-form-sep {
      display: flex; align-items: center; gap: 20px;
      margin: 44px 0;
    }
    .stima-form-sep-line { flex: 1; height: 1px; background: var(--border); }
    .stima-form-sep-text {
      font-size: 0.62rem; color: var(--w35); font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
    }
    /* Civile: 2-col grid for value choices */
    .stima-choices-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 9px;
    }
    @media (max-width: 520px) {
      .stima-wrap { padding: 28px 18px; }
      .step-label { display: none; }
      .stima-step-line { min-width: 16px; margin: 0 6px; }
      .stima-choices-grid { grid-template-columns: 1fr; }
    }
  
    /* ── NAV LOGO ── */
    .nav-logo { height: 36px; width: auto; display: block; opacity: 0.95; transition: opacity 0.2s; }
    .nav-brand:hover .nav-logo { opacity: 1; }
    @media (max-width: 768px) { .nav-logo { height: 28px; } }
    @media (max-width: 1100px) {
      .nav-links, .nav-cta, .nav-actions { display: none; }
      .ham { display: flex; }
      .nav-brand-sub, .nav-brand-sep { display: none; }
    }
    


    /* ── FOOTER COMPLETO (condiviso con la home) ── */
    footer { background: #003030; padding: 80px 72px 0; }
    .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
    .footer-brand-name { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
    .footer-brand-sub { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
    .footer-about { font-size: 0.8rem; color: var(--w35); line-height: 1.88; font-weight: 300; }
    .footer-col-h { font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; color: var(--white); margin-bottom: 22px; letter-spacing: 0.04em; text-transform: uppercase; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 0.8rem; color: var(--w35); text-decoration: none; font-weight: 300; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
    .footer-links a:hover { color: var(--gold); padding-left: 5px; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--w35); font-size: 0.8rem; font-weight: 300; }
    .footer-contact-item a { color: var(--w35); text-decoration: none; transition: color 0.2s; }
    .footer-contact-item a:hover { color: var(--gold); }
    .footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom-text { font-size: 0.74rem; color: var(--w15); font-weight: 300; }
    @media (max-width: 1100px) {
      footer { padding: 60px 40px 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      footer { padding: 50px 20px 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }

    /* ── EMBED: la pagina vive dentro il modal-iframe aperto dai CTA "Richiedi un preventivo" ── */
    body.pv-embed #navbar,
    body.pv-embed .mob-menu,
    body.pv-embed .mob-overlay,
    body.pv-embed footer { display: none !important; }
    body.pv-embed .page-wrap { padding-top: 56px; }
    @media (max-width: 768px) {
      body.pv-embed .page-wrap { padding-top: 44px; }
    }

    /* ── RESPONSIVE HARDENING: mai scroll orizzontale (iOS ignora overflow-x su body) ── */
    html { overflow-x: hidden; overflow-x: clip; }
