  /* ── RESET & BASE ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:     #192033;
    --navy-mid: #142444;
    --navy-lt:  #1e3260;
    --gold:     #BA9A16;
    --gold-lt:  #d7c17e;
    --gold-dk:  #a28427;
    --white:    #ffffff;
    --off:      #f4f5f8;
    --gray:     #192033;
    --text:     #2c3547;
    --serif:    'Times New Roman', Georgia, serif;
    --sans:     'Montserrat', 'Helvetica Neue', sans-serif;
    --shadow:   0 8px 40px rgba(25,32,51,.15);
    --radius:   6px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--navy);
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    gap: 12px;
    flex-wrap: wrap;
  }
  .topbar a { color: var(--gold-lt); text-decoration: none; font-weight: 600; letter-spacing: .02em; }
  .topbar a:hover { color: var(--white); }
  .topbar-sedi { display: flex; align-items: center; gap: 6px; }
  .topbar-sedi::before {     
  content: "/";
    font-size: 12px;
    width: 22px;
    background: url(marker2.png) no-repeat;
    text-indent: -9999px; }

  /* ── HEADER / NAV ── */
  header {
    background: var(--white);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8eaf0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(25,32,51,.08);
  }
  .logo {
    padding: 14px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo-mark {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.02em;
    flex-shrink: 0;
  }
  .logo-mark img { width: 54px; height: 54px; }
  .logo-text { line-height: 1.1; }
  .logo-text .name { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
  .logo-text .sub  { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--gray); font-weight: 600; }

  .header-cta { display: flex; align-items: center; gap: 12px; }
  .btn-call {
    background: var(--gold);
    color: var(--navy);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .btn-call:hover { background: var(--gold-lt); transform: translateY(-1px); }
  .btn-call .phone-icon { margin-right: 6px; }

  /* ── URGENCY BAR ── */
  .urgency-bar {
    background: linear-gradient(90deg, #7a1a1a 0%, #9b2020 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 9px 20px;
    letter-spacing: .01em;
    line-height: 1.4;
  }
  .urgency-bar em {
    font-style: normal;
    color: #ffd780;
    font-weight: 700;
  }
  .urgency-bar a {
    color: #ffd780;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 700;
  }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 64px 32px 80px;
  }
  #hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; right: -10%;
    width: 55%; height: 100%;
    background: linear-gradient(135deg, var(--navy-lt) 0%, rgba(200,168,75,.1) 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
  }

  /* Hero 2-column layout */
  .hero-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,168,75,.15);
    border: 1px solid rgba(200,168,75,.35);
    color: var(--gold-lt);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 22px;
    animation: fadeUp .6s ease both;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.30;
    margin-bottom: 20px;
    animation: fadeUp .6s .1s ease both;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold);
    display: block;
  }
  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,1);
    max-width: 560px;
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.60;
    animation: fadeUp .6s .2s ease both;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .3s ease both;
    margin-bottom: 36px;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all .2s;
    letter-spacing: .02em;
    border: 2px solid var(--gold);
    cursor: pointer;
    font-family: var(--sans);
  }
  .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,.4); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.4);
    transition: all .2s;
    letter-spacing: .02em;
    cursor: pointer;
    font-family: var(--sans);
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

  .hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeUp .6s .4s ease both;
  }
  .trust-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,1);
    font-size: 16px;
    font-weight: 400;
  }
  .trust-item::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }

  /* ── MINI FORM IN HERO ── */
  .hero-form-box {
    background: rgba(255,255,255,.97);
    border-radius: 10px;
    padding: 28px 24px 24px;
    box-shadow: 0 16px 56px rgba(0,0,0,.35);
    animation: fadeUp .6s .2s ease both;
    position: relative;
    z-index: 2;
  }
  .hero-form-box h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.3;
  }
  .hero-form-box .form-group { margin-bottom: 12px; }
  .hero-form-box label {
    display: block;
    font-size: 11px; font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 5px;
  }
  .hero-form-box input,
  .hero-form-box select {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #ccd2de;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
  }
  .hero-form-box input:focus,
  .hero-form-box select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,168,75,.18);
  }
  .btn-hero-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    letter-spacing: .03em;
    transition: all .2s;
    margin-top: 4px;
    line-height: 1.3;
  }
  .btn-hero-submit:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,.4); }
  .btn-hero-submit:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }
  .hero-form-privacy {
    font-size: 10px; color: #8a96a8; margin-top: 10px;
    text-align: center; line-height: 1.45;
  }
  .hero-form-privacy a { color: var(--navy); }
  .hero-form-success {
    display: none;
    text-align: center;
    padding: 20px 10px;
    color: #1a7840;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-form-success .check { font-size: 32px; display: block; margin-bottom: 10px; }
  .hero-form-error {
    background: #fff0f0;
    border: 1px solid #e88;
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 13px;
    color: #c0392b;
    margin-top: 8px;
    display: none;
  }
  
.privacy-consent {
  margin-top: 14px;
  margin-bottom: 18px;
}

.privacy-consent-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px;
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.privacy-consent-label input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  display: inline-block !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  flex: 0 0 18px !important;
  cursor: pointer;
}

.privacy-consent-label span {
  display: block;
}

.privacy-consent-label a {
  color: var(--gold);
  text-decoration: underline;
}



  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--navy-mid);
    padding: 32px;
  }
  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
  }
  .stat-item {
    padding: 8px 20px;
    border-right: 1px solid rgba(255,255,255,.12);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 15px;
    color: rgba(255,255,255,1);
    font-weight: 400;
    letter-spacing: .02em;
  }

  /* ── SEZIONI ── */
  section { padding: 72px 32px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 11px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 10px;
    display: block;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .section-sub {
    color: var(--gray);
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 48px;
    line-height: 1.65;
  }

  /* ── CASI GRID ── */
  .casi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .caso-card {
    background: var(--white);
    border: 1px solid #e4e8f0;
    border-radius: 8px;
    padding: 28px 24px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    cursor: default;
  }
  .caso-icon img {
    width: 44px; height: 44px;
    object-fit: contain;
    display: block;
  }
  .caso-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--gold);
    transition: width .3s ease;
  }
  .caso-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
  .caso-card:hover::after { width: 100%; }
  .caso-icon { font-size: 28px; margin-bottom: 14px; display: block; }
  .caso-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .caso-card p  { font-size: 16px; color: #192033bf; line-height: 1.6; }

  /* ── PROCESSO ── */
  .processo-section { background: var(--navy); }
  .processo-section .section-title { color: var(--white); }
  .processo-section .section-sub   { color: rgba(255,255,255,1); }
  .processo-section .section-label { color: var(--gold); }

  .step-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    margin-top: 48px;
    position: relative;
  }
  .step-list::before {
    content: '';
    position: absolute;
    top: 40px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,168,75,.35), transparent);
  }
  .step-item {
    padding: 32px 28px;
    border-right: 1px solid rgba(255,255,255,.08);
    position: relative;
  }
  .step-item:last-child { border-right: none; }
  .step-num {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 900;
    color: rgba(200,168,75,.2);
    line-height: 1;
    margin-bottom: 16px;
  }
  .step-item h3 { color: var(--white); font-family: var(--serif); font-size: 21px; margin-bottom: 10px; }
  .step-item p  { color: rgba(255,255,255,1); font-size: 16px; line-height: 1.65; }

  /* ── TEAM ── */
  .team-section { background: var(--off); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
  }
  .team-card {
    background: var(--white);
    border-radius: 10px;
    padding: 32px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 2px 24px rgba(25,32,51,.07);
    border: 1px solid #e4e8f0;
    transition: box-shadow .25s;
	flex-direction: column;
  }
  .team-card:hover { box-shadow: var(--shadow); }
  .team-photo {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    
  }
  .team-photo-placeholder {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    border: 3px solid var(--gold);
    letter-spacing: -.02em;
  }
  .team-info { flex: 1; }
  .team-info h3 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 4px; }
  .team-ruolo {
    font-size: 12px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 12px;
    display: block;
  }
  .team-info p { font-size: 14px; color: #5a6478; line-height: 1.65; }
  .team-ordine {
    margin-top: 12px;
    font-size: 12px; color: var(--gray);
    display: flex; align-items: center; gap: 6px;
  }
  .team-ordine::before { content: '⚖️'; font-size: 12px; }

  /* ── RECENSIONI ── */
  .recensioni-section { background: var(--white); }
  .recensioni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .rec-card {
    background: var(--off);
    border-radius: 8px;
    padding: 28px 24px;
    border-left: 4px solid var(--gold);
    position: relative;
  }
  .rec-esito {
    display: inline-block;
    background: rgba(200,168,75,.15);
    border: 1px solid rgba(200,168,75,.3);
    color: #7a5a10;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .rec-stelle { color: var(--gold); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
  .rec-testo  { font-size: 14px; color: #4a5568; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
  .rec-nome   { font-weight: 700; font-size: 13px; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; }

  /* ── FAQ ── */
  .faq-section { background: var(--off); }
  .faq-list { margin-top: 40px; }
  .faq-item { border-bottom: 1px solid #e4e8f0; overflow: hidden; }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 20px 0;
    font-family: var(--sans);
    font-size: 18px; font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    line-height: 1.4;
  }
  .faq-q .arrow {
    width: 24px; height: 24px; flex-shrink: 0;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: transform .25s, background .2s;
  }
  .faq-q.open .arrow { transform: rotate(45deg); background: var(--gold); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .3s;
    font-size: 16px; color: #192033; line-height: 1.7;
  }
  .faq-a.open { max-height: 220px; padding-bottom: 20px; }

  /* ── FORM PRINCIPALE ── */
  .form-section { background: var(--navy); }
  .form-section .section-label { color: var(--gold); }
  .form-section .section-title { color: var(--white); }
  .form-section .section-sub   { color: rgba(255,255,255,.55); }

  .form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 800px) { .form-layout { grid-template-columns: 1fr; } }

  .form-left h2 { font-family: var(--serif); font-size: 30px; color: var(--white); margin-bottom: 16px; line-height: 1.25; }
  .form-left p  { color: rgba(255,255,255,1); font-size: 16px; line-height: 1.65; margin-bottom: 28px; }

  .form-contact-item {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
    font-size: 15px; color: rgba(255,255,255,.75);
  }
  .form-contact-item .icon {
    width: 36px; height: 36px;
   
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .form-contact-item a { color: var(--gold-lt); font-weight: 700; text-decoration: none; }
  .form-contact-item a:hover { color: var(--white); }

  .form-tel-big {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(200,168,75,.12);
    border: 1px solid rgba(200,168,75,.3);
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 24px;
    text-decoration: none;
    transition: background .2s;
  }
  .form-tel-big:hover { background: rgba(200,168,75,.2); }
  .form-tel-big .tel-icon { font-size: 28px; }
  .form-tel-big .tel-num {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-lt);
    letter-spacing: .02em;
    line-height: 1;
  }
  .form-tel-big .tel-label {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin-top: 3px;
  }

  .form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 36px 32px;
  }
  .form-card h3 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 6px; }
  .form-card-sub { font-size: 13px; color: var(--gray); margin-bottom: 24px; }

  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block;
    font-size: 12px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccd2de;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,168,75,.15);
  }
  .form-group textarea { resize: vertical; min-height: 88px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 15px;
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    letter-spacing: .04em;
    transition: all .2s;
    margin-top: 8px;
    line-height: 1.3;
  }
  .btn-submit:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,168,75,.35); }
  .btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

  .form-privacy {
    font-size: 11px; color: var(--gray); margin-top: 12px; line-height: 1.5;
    text-align: center;
  }
  .form-privacy a { color: var(--navy); }
  .form-success {
    display: none;
    background: #edfaf1;
    border: 1px solid #6fcf97;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    color: #1a7840;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
    line-height: 1.6;
  }
  .form-success .check { font-size: 28px; display: block; margin-bottom: 8px; }

  /* ── STICKY MOBILE CTA ── */
  .sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    padding: 14px 20px;
    z-index: 200;
    box-shadow: 0 -4px 24px rgba(25,32,51,.25);
    gap: 10px;
  }
  .sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 13px 8px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: .03em;
  }
  .sticky-cta .s-call { background: var(--gold); color: var(--navy); }
  .sticky-cta .s-form { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }

  /* ── FOOTER ── */
  footer {
    background: #0a1628;
    padding: 40px 32px;
    text-align: center;
    color: rgba(255,255,255,.35);
    font-size: 12px;
    line-height: 1.8;
  }
  footer strong { color: rgba(255,255,255,.6); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-box { max-width: 480px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 16px; }
    .stat-item:nth-child(even) { border-bottom: none; }
  }
  @media (max-width: 768px) {
    section { padding: 56px 20px; }
    .hero   { padding: 48px 20px 72px; }
    header  { padding: 0 16px; }
    .topbar { padding: 8px 16px; font-size: 12px; }
    .step-list::before { display: none; }
    .step-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
    .step-item:last-child { border-bottom: none; }
    .form-card { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 72px; }
    .header-cta .btn-call { display: none; }
    .team-card { flex-direction: column; gap: 16px; }
    .urgency-bar { font-size: 12px; }
  }
  @media (max-width: 480px) {
    .logo-text .name { font-size: 17px; }
    .hero h1 { font-size: 30px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-num { font-size: 28px; }
  }

  /* ── FORM ERROR STATE ── */
  .form-error {
    background: #fff0f0;
    border: 1px solid #e88;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    color: #c0392b;
    margin-top: 10px;
    display: none;
  }
  /* honeypot — nascosto a tutti tranne ai bot */
  .hp-field { position:absolute; left:-9999px; opacity:0; pointer-events:none; tab-index:-1; }