    *, *::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;
    }
    ::selection { background: var(--gold); color: var(--bg); }

    .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; }
    .ico-lg { width: 28px; height: 28px; }

    /* ── NAV ── */
    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 rgba(255,255,255,0.08);
      transition: border-color 0.4s var(--ease), box-shadow 0.4s;
      box-shadow: 0 4px 32px rgba(0,0,0,0.28);
    }
    nav.scrolled { border-color: var(--gold-border); box-shadow: 0 8px 48px rgba(0,0,0,0.48); }
    .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); }
    .nav-brand-sep { width: 1px; height: 14px; background: var(--w35); display: inline-block; }
    .nav-brand-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; }
    .nav-logo { height: 36px; width: auto; display: block; opacity: 0.95; transition: opacity 0.2s; }
    .nav-brand:hover .nav-logo { opacity: 1; }
    .nav-links { display: flex; list-style: none; gap: 18px; }
    .nav-links a {
      white-space: nowrap;
      font-family: var(--font-h); font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
      color: var(--w60); transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-cta {
      font-family: var(--font-h); font-size: 0.66rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      color: var(--bg); background: var(--gold);
      padding: 10px 20px; border-radius: 100px;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--gold-2); 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: 1100px) {
      .nav-links, .nav-cta { display: none; }
      .ham { display: flex; }
      .nav-brand-sub, .nav-brand-sep { display: none; }
    }

    /* ── HERO ── */
    .sv-hero {
      position: relative; padding: 190px 72px 90px;
      text-align: center; overflow: hidden;
      background: var(--bg);
    }
    .sv-hero-bg {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%);
      font-family: var(--font-h); font-weight: 900; font-size: clamp(6rem, 17vw, 15rem);
      color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.045);
      letter-spacing: 0.04em; pointer-events: none; user-select: none; white-space: nowrap;
    }
    .sv-hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
    .label {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: var(--font-h); font-size: 0.66rem; font-weight: 700;
      letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 26px;
    }
    .label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
    .sv-hero h1 {
      font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.01em;
      font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.05;
      margin-bottom: 26px;
    }
    .sv-hero h1 em { font-style: italic; color: var(--gold); }
    .sv-hero-desc { font-size: 0.92rem; color: var(--w60); line-height: 1.9; font-weight: 300; max-width: 620px; margin: 0 auto; }

    /* ── INDICE ── */
    .sv-index {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
      max-width: 900px; margin: 48px auto 0; position: relative; z-index: 2;
    }
    .sv-index a {
      font-family: var(--font-h); font-size: 0.64rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
      color: var(--w60); border: 1px solid var(--border);
      padding: 9px 16px; border-radius: 100px;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .sv-index a:hover { color: var(--gold); border-color: var(--gold-border); background: var(--gold-glow); }

    /* ── SEZIONI SERVIZIO ── */
    .sv-section { padding: 96px 72px; border-top: 1px solid var(--border); scroll-margin-top: 90px; }
    .sv-section:nth-child(even) { background: var(--bg-2); }
    .sv-inner { max-width: 1000px; margin: 0 auto; }
    .sv-head { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 12px; }
    .sv-icon {
      flex-shrink: 0; width: 64px; height: 64px; border-radius: 18px;
      background: var(--gold-glow); border: 1px solid var(--gold-border);
      display: flex; align-items: center; justify-content: center;
    }
    .sv-num {
      font-family: var(--font-h); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.24em; color: var(--gold); margin-bottom: 8px;
    }
    .sv-title {
      font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.01em;
      font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.15;
    }
    .sv-tagline { font-size: 0.82rem; color: var(--gold-2); font-style: italic; margin-top: 8px; font-weight: 300; }
    .sv-desc { font-size: 0.92rem; color: var(--w60); line-height: 1.95; font-weight: 300; margin-top: 26px; max-width: 860px; }
    .sv-desc strong { color: var(--white); font-weight: 500; }
    .sv-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
    .sv-tag {
      font-family: var(--font-h); font-size: 0.62rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); background: var(--gold-glow);
      border: 1px solid var(--gold-border);
      padding: 8px 15px; border-radius: 100px;
    }
    /* Link di approfondimento dentro i paragrafi (es. "Scopri il mio approccio"):
       riga propria, con width:fit-content perche il bordo segua il testo e non
       si allunghi per tutta la colonna. */
    .sv-desc a {
      display: block; width: fit-content; margin-top: 16px;
      color: var(--gold); text-decoration: none;
      border-bottom: 1px solid var(--gold-border);
      transition: color 0.2s, border-color 0.2s;
    }
    .sv-desc a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }

    /* Stile piatto di base: le CTA per sezione sono state rimosse, resta solo
       quella finale (vedi override .sv-final .sv-cta piu sotto). */
    .sv-cta {
      display: inline-flex; align-items: center; gap: 10px; margin-top: 36px;
      font-family: var(--font-h); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      color: var(--gold); background: none;
      padding: 0; border-radius: 0;
      transition: color 0.2s, gap 0.25s var(--ease);
    }
    .sv-cta:hover { color: var(--gold-2); gap: 16px; }

    /* ── CTA FINALE ── */
    .sv-final { padding: 110px 72px; text-align: center; border-top: 1px solid var(--border); background: var(--bg-2); }
    .sv-final h2 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.01em; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 18px; }
    .sv-final h2 em { font-style: italic; color: var(--gold); }
    .sv-final p { font-size: 0.9rem; color: var(--w60); font-weight: 300; max-width: 520px; margin: 0 auto 36px; line-height: 1.85; }
    /* Unico bottone pieno della pagina: è la chiusura, non si ripete. */
    .sv-final .sv-cta {
      color: var(--bg); background: var(--gold);
      padding: 13px 26px; border-radius: 100px;
      transition: background 0.2s, transform 0.2s var(--ease);
    }
    .sv-final .sv-cta:hover { color: var(--bg); background: var(--gold-2); gap: 10px; transform: scale(1.03); }

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

    /* ── REVEAL ── */
    [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
    [data-reveal].in { opacity: 1; transform: none; }

    @media (max-width: 1100px) {
      nav { width: calc(100% - 48px); padding: 0 22px; top: 16px; }
      .sv-hero { padding: 150px 40px 70px; }
      .sv-section { padding: 76px 40px; }
      .sv-final { padding: 80px 40px; }
    }
    @media (max-width: 768px) {
      .sv-hero { padding: 130px 20px 56px; }
      .sv-section { padding: 60px 20px; }
      .sv-final { padding: 70px 20px; }
      .sv-head { flex-direction: column; gap: 16px; }
      .nav-logo { height: 28px; }
    }
  

    /* ── Bottone primario (usato dal footer) ── */
    :root { --gold-2: #dfc46a; }
    .btn-primary {
      font-family: var(--font-h); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--bg); background: var(--gold);
      padding: 14px 30px; border-radius: 100px; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
      box-shadow: 0 0 0 0 rgba(201,168,76,0);
    }
    .btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.25); }


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

    /* ══════════ FORMAZIONE — catalogo ══════════ */
    .fm-section { padding: 96px 72px; border-top: 1px solid var(--border); scroll-margin-top: 90px; }
    .fm-section-alt { background: var(--bg-2); }
    .fm-inner { max-width: 1080px; margin: 0 auto; }
    .fm-section-desc {
      font-size: 0.92rem; color: var(--w60); line-height: 1.9; font-weight: 300;
      max-width: 640px; margin: 18px 0 44px;
    }

    .fm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

    .fm-card {
      display: flex; flex-direction: column; text-decoration: none; color: var(--white);
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
    }
    .fm-card:hover {
      transform: translateY(-5px); border-color: var(--gold-border);
      box-shadow: 0 18px 48px rgba(0,0,0,0.35);
    }
    .fm-card-top {
      position: relative; height: 132px; padding: 16px;
      display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap;
      background: linear-gradient(135deg, rgba(201,168,76,0.16), rgba(0,48,48,0.9)), var(--bg-2);
      border-bottom: 1px solid var(--border);
    }
    .fm-card-top.has-img { background-size: cover; background-position: center; }
    .fm-card-top.has-img::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,48,48,0.25), rgba(0,48,48,0.72));
    }
    .fm-card-top > * { position: relative; z-index: 1; }
    .fm-card-ico {
      position: absolute; right: 18px; bottom: 14px; width: 34px; height: 34px;
      fill: none; stroke: rgba(240,238,232,0.5); stroke-width: 1.5;
      stroke-linecap: round; stroke-linejoin: round;
    }
    .fm-card:hover .fm-card-ico { stroke: var(--gold); }

    .fm-badge {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: var(--font-h); font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 7px 13px; border-radius: 100px;
      background: rgba(0,48,48,0.82); border: 1px solid var(--border);
      color: var(--white); backdrop-filter: blur(6px);
    }
    .fm-badge-live { color: var(--gold-2); border-color: var(--gold-border); }
    .fm-dot {
      width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
      animation: fm-pulse 1.6s infinite;
    }
    @keyframes fm-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.45); }
      50% { box-shadow: 0 0 0 5px rgba(201,168,76,0); }
    }

    .fm-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 20px; }
    .fm-card-title {
      font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.01em;
      font-size: 1.12rem; line-height: 1.3; margin-bottom: 8px;
    }
    .fm-card-sub { font-size: 0.78rem; color: var(--w60); font-weight: 300; line-height: 1.7; margin-bottom: 14px; }
    .fm-card-meta { list-style: none; margin: auto 0 18px; display: flex; flex-direction: column; gap: 8px; }
    .fm-card-meta li {
      display: flex; align-items: center; gap: 9px;
      font-size: 0.74rem; color: var(--w60); font-weight: 300;
    }
    .fm-card-meta li .ico { stroke: var(--gold); flex-shrink: 0; width: 14px; height: 14px; }
    .fm-card-meta li strong { color: var(--white); font-weight: 500; }
    .fm-card-foot {
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid var(--border); padding-top: 16px;
    }
    .fm-price { font-family: var(--font-h); font-size: 1.02rem; font-weight: 700; color: var(--gold); }
    .fm-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-h); font-size: 0.64rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
      transition: gap 0.25s var(--ease), color 0.2s;
    }
    .fm-card:hover .fm-cta, .fm-cta:hover { gap: 13px; color: var(--gold-2); }

    .fm-empty {
      border: 1px dashed var(--w15); border-radius: var(--radius-lg);
      padding: 44px 32px; text-align: center;
    }
    .fm-empty p { font-size: 0.88rem; color: var(--w60); font-weight: 300; margin-bottom: 16px; }
    .fm-empty .fm-cta { justify-content: center; text-decoration: none; }

    /* ══════════ DETTAGLIO CORSO ══════════ */
    .co-hero { padding: 170px 72px 56px; border-bottom: 1px solid var(--border); }
    .co-hero-inner { max-width: 1080px; margin: 0 auto; }
    .co-back {
      display: inline-block; font-family: var(--font-b); font-size: 0.72rem; font-weight: 500;
      color: var(--w35); text-decoration: none; margin-bottom: 26px; transition: color 0.2s;
    }
    .co-back:hover { color: var(--gold); }
    .co-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
    .co-title {
      font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.01em;
      font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.12; max-width: 780px;
    }
    .co-sub { font-size: 0.94rem; color: var(--w60); font-weight: 300; line-height: 1.85; margin-top: 16px; max-width: 680px; }

    .co-main { padding: 64px 72px 96px; }
    .co-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }

    .co-content { font-size: 0.92rem; color: var(--w60); font-weight: 300; line-height: 1.95; }
    .co-content h2, .co-content h3 {
      font-family: var(--font-serif); font-weight: 700; color: var(--white);
      letter-spacing: -0.01em; margin: 36px 0 14px; line-height: 1.25;
    }
    .co-content h2 { font-size: 1.4rem; }
    .co-content h3 { font-size: 1.1rem; }
    .co-content h2:first-child, .co-content h3:first-child { margin-top: 0; }
    .co-content p { margin-bottom: 16px; }
    .co-content strong { color: var(--white); font-weight: 500; }
    .co-content ul, .co-content ol { margin: 0 0 16px 20px; }
    .co-content li { margin-bottom: 8px; }
    .co-content a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-border); }

    .co-aside { position: sticky; top: 110px; }
    .co-info-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 28px;
    }
    .co-price {
      font-family: var(--font-h); font-size: 1.6rem; font-weight: 800; color: var(--gold);
      padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border);
    }
    .co-info-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
    .co-info-list li { display: flex; justify-content: space-between; gap: 16px; font-size: 0.78rem; }
    .co-info-list li span { color: var(--w60); font-weight: 300; }
    .co-info-list li strong { color: var(--white); font-weight: 500; text-align: right; }

    .co-form-h {
      font-family: var(--font-h); font-size: 0.92rem; font-weight: 700;
      letter-spacing: -0.01em; margin-bottom: 6px;
    }
    .co-form-note { font-size: 0.72rem; color: var(--w60); font-weight: 300; line-height: 1.7; margin-bottom: 18px; }
    .co-form { position: relative; display: flex; flex-direction: column; gap: 12px; }
    .co-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .co-form input[type="text"], .co-form input[type="email"], .co-form input[type="tel"], .co-form textarea {
      width: 100%; background: var(--bg-2); border: 1px solid var(--border);
      border-radius: 10px; padding: 12px 14px;
      font-family: var(--font-b); font-size: 0.8rem; color: var(--white);
      outline: none; transition: border-color 0.2s;
    }
    .co-form input:focus, .co-form textarea:focus { border-color: var(--gold-border); }
    .co-form ::placeholder { color: var(--w35); }
    .co-form textarea { resize: vertical; }
    .co-privacy { display: flex; gap: 10px; align-items: flex-start; font-size: 0.68rem; color: var(--w60); font-weight: 300; line-height: 1.6; cursor: pointer; }
    .co-privacy input { margin-top: 2px; accent-color: var(--gold); }
    .co-privacy a { color: var(--gold); text-decoration: none; }
    .co-submit { justify-content: center; border: none; cursor: pointer; width: 100%; }
    .co-submit:disabled { opacity: 0.55; cursor: wait; transform: none; }
    .co-form-ok { display: flex; gap: 14px; align-items: flex-start; padding-top: 6px; }
    .co-form-ok p { font-size: 0.8rem; color: var(--white); font-weight: 300; line-height: 1.7; }

    @media (max-width: 1100px) {
      .fm-section { padding: 76px 40px; }
      .co-hero { padding: 140px 40px 44px; }
      .co-main { padding: 48px 40px 76px; }
      .co-grid { grid-template-columns: 1fr; gap: 40px; }
      .co-aside { position: static; }
    }
    @media (max-width: 768px) {
      .fm-section { padding: 60px 20px; }
      .co-hero { padding: 124px 20px 36px; }
      .co-main { padding: 40px 20px 60px; }
      .fm-grid { grid-template-columns: 1fr; }
    }

    /* ══════════ DAL VIVO — scatti dalle docenze ══════════ */
    .fm-shots {
      display: flex; flex-wrap: wrap; gap: 34px; justify-content: center;
      margin-top: 14px;
    }
    .fm-shot {
      flex: 1 1 260px; max-width: 320px; margin: 0;
      background: var(--bg-card); border: 1px solid var(--gold-border);
      border-radius: var(--radius); padding: 10px 10px 14px;
      box-shadow: 0 14px 38px rgba(0,0,0,0.32);
      transition: transform 0.35s var(--ease), box-shadow 0.35s;
    }
    .fm-shot-1 { transform: rotate(-2deg); }
    .fm-shot-2 { transform: rotate(1.4deg) translateY(10px); }
    .fm-shot-3 { transform: rotate(-1.2deg); }
    .fm-shot:hover { transform: rotate(0) translateY(-4px); box-shadow: 0 22px 54px rgba(0,0,0,0.42); }
    .fm-shot img {
      display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
      border-radius: 8px; filter: saturate(0.94);
    }
    .fm-shot figcaption {
      font-size: 0.68rem; color: var(--w60); font-weight: 300;
      line-height: 1.6; padding: 12px 6px 2px; text-align: center;
    }
    @media (max-width: 768px) {
      .fm-shots { gap: 24px; }
      .fm-shot-2 { transform: rotate(1.4deg); }
    }



    /* ── CATALOGO /corsi/: back-link su riga propria sopra l'eyebrow ── */
    .sv-hero .co-back { display: block; margin-bottom: 16px; }

    /* ── BOTTONE "GUARDA TUTTI I CORSI" (anteprima on-demand → /corsi/) ── */
    .fm-od-all {
      display: inline-flex; align-items: center; gap: 10px; margin-top: 44px;
      font-family: var(--font-h); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      color: var(--bg); background: var(--gold);
      padding: 13px 26px; border-radius: 100px;
      transition: background 0.2s, transform 0.2s var(--ease);
    }
    .fm-od-all:hover { background: var(--gold-2); transform: scale(1.03); }

    /* ── CORSI LIBERI (YouTube) ── */
    .fm-videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
    .fm-video-thumb {
      position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
      padding: 0; border: 1px solid var(--gold-border); border-radius: var(--radius);
      overflow: hidden; cursor: pointer; background: #002828;
      box-shadow: 0 18px 44px rgba(0,0,0,0.35);
      transition: transform 0.4s var(--ease), box-shadow 0.4s;
    }
    .fm-video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
    .fm-video-thumb::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(0,40,40,0.45) 0%, transparent 45%);
      pointer-events: none;
    }
    .fm-video-thumb:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(0,0,0,0.45); }
    .fm-video-thumb:hover img { transform: scale(1.04); }
    .fm-video-play {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 58px; height: 58px; border-radius: 50%; z-index: 2;
      background: rgba(0,40,40,0.72); border: 1px solid var(--gold-border);
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); transition: background 0.25s, transform 0.25s;
    }
    .fm-video-play svg { width: 22px; height: 22px; margin-left: 3px; }
    .fm-video-thumb:hover .fm-video-play { background: var(--gold); color: var(--bg-2); transform: translate(-50%, -50%) scale(1.08); }
    .fm-video .fm-video-frame, .fm-videos iframe {
      display: block; width: 100%; aspect-ratio: 16 / 9; border: 1px solid var(--gold-border);
      border-radius: var(--radius); background: #000;
    }
    .fm-video-title { font-family: var(--font-h); font-size: 0.98rem; font-weight: 700; color: var(--white); margin-top: 16px; line-height: 1.35; }
    .fm-video-sub { font-size: 0.78rem; color: var(--w60); font-weight: 300; line-height: 1.7; margin-top: 6px; }
    .fm-videos-cta { margin-top: 44px; }
    @media (max-width: 1100px) {
      .fm-videos { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .fm-videos { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
    }

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