/* ============================================================
   Fametrue, CSS di sistema condiviso
   Estratto il 13/08/2026 dalle sette pagine del sistema nuovo.
   Contiene SOLO le regole identiche in tutte le pagine.
   Le regole specifiche di pagina restano inline nella pagina.
   Ordine, questo file va caricato PRIMA del blocco style di pagina.
   ============================================================ */

/* ============ SCALA BLU FAMETRUE (3 gradini, unica fonte) ============
   Blu scuro,  #0F2A3A → #1A3F56  (hero, CTA finale, footer)
   Blu medio,  #23516E → #2A6285  (pannello quadro normativo, pannelli dato/form)
   Blu chiaro, #2E6F98 → #3C82A8  (pannello spotlight sigillo)
   Ogni nuovo blocco pesca SOLO da questi tre gradini. */

:root {
  --b2-notte-a: #0A1B38;
  --b2-notte-b: #16345E;
  --b2-reale-a: #1F4278;
  --b2-reale-b: #27508F;
  --b2-vivo-a: #2F6CB4;
  --b2-vivo-b: #356FB9;
  --blu-medio-a: #23516E;
  --blu-medio-b: #2A6285;
  --blu-chiaro-a: #2E6F98;
  --blu-chiaro-b: #3C82A8;
  --navy: #142E4F;
  --navy-ink: #0F2A3A;
  --cream: #F7F7F7;
  --paper: #FFFFFF;
  --orange: #DF6616;
  --green: #2A9D8F;
  --green-dark: #1A7A6C;
  --red: #A32D2D;
  --red-dark: #791F1F;
  --ink: #22303F;
  --text-2: #3D4C60;
  --text-3: #66748A;
  --border: #E5E5E6;
  --border-soft: #EDEDEE;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'IBM Plex Sans', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky; top: 0;
  background: #FFFFFF;
    border-bottom: 1px solid var(--border);
  z-index: 100; padding: 18px 0;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 400; font-size: 36px;
  letter-spacing: -0.6px; line-height: 1;
  position: relative; display: inline-block;
  text-decoration: none;
}

.nav-logo .fame { color: var(--navy); }

.nav-logo .true-wrap { position: relative; display: inline-block; }

.nav-logo .true { color: var(--orange); }

.nav-logo .interruption {
  position: absolute; top: 40%; left: 0; right: 0;
  height: 0.085em; background: var(--cream); z-index: 2;
}

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

.nav-links a {
  font-size: 14px; color: var(--navy);
  text-decoration: none; font-weight: 400; transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange); }

.lang-switch { 
  font-size: 12px; font-family: var(--font-mono); letter-spacing: 1px;
  display: flex; gap: 6px; align-items: center; margin-left: 16px;
}

.lang-switch a { 
  color: var(--text-3); text-decoration: none; padding: 2px 6px; 
  border-radius: 3px; transition: all 0.2s;
}

.lang-switch a:hover { color: var(--navy); }

.lang-switch a.active { color: var(--navy); font-weight: 700; }

.nav-login {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 9px 16px;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-login:hover { background: var(--navy); color: #fff !important; }

.nav-links a.nav-cta {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: #fff; background: var(--b2-vivo-a);
  border: none; padding: 10px 18px; border-radius: 4px;
  cursor: pointer; text-decoration: none; display: inline-block;
}

.nav-links a.nav-cta:hover { color: #fff; background: #275B99; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); font-weight: 700;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
}

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

/* =========== BLOCCO 1 — HERO =========== */
.hero {
  padding: 88px 0 96px;
  background: var(--cream);
  position: relative; overflow: hidden;
}

.hero::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(223,102,22,0.07) 0%, transparent 62%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.hero-text { padding-top: 8px; }

.hero-reg-card-wrap { padding-top: 72px; }

.hero-question {
  font-family: var(--font-display);
  font-weight: 500; font-style: italic;
  font-size: 22px; line-height: 1.4;
  color: var(--navy);
  margin-bottom: 26px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 68px;
  letter-spacing: -2.2px; line-height: 1.02;
  color: var(--navy); margin-bottom: 28px;
}

.hero h1 em { font-style: italic; color: var(--orange); font-weight: 400; }

.hero-sub {
  font-family: var(--font-display);
  font-weight: 400; font-style: normal;
  font-size: 20px; line-height: 1.55;
  color: var(--navy); max-width: 560px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.cta-row {
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap; margin-bottom: 16px;
}

.btn-primary {
  background: var(--b2-vivo-a); color: #fff; border: none;
  padding: 15px 26px; border-radius: 4px;
  font-family: var(--font-sans); font-size: 14px;
  font-weight: 500; letter-spacing: 0.2px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s; text-decoration: none;
}

.btn-primary:hover { background: #275B99; }

.btn-primary svg { width: 14px; height: 14px; }

.cta-micro {
  font-family: var(--font-sans); font-size: 12px;
  color: var(--text-3); font-style: italic;
  max-width: 560px; line-height: 1.5;
}

/* Reg-card */
.hero-reg-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 30px 24px;
  position: relative;
}

.hero-reg-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); font-weight: 700;
  font-weight: 700; margin-bottom: 14px;
}

.hero-reg-card-claim {
  font-family: var(--font-display);
  font-weight: 400; font-size: 17px;
  color: var(--navy); line-height: 1.45;
  margin-bottom: 22px;
}

.hero-reg-card-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border-soft);
}

.hero-reg-card-item {
  font-family: var(--font-sans);
  font-size: 13px; color: var(--text-2);
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: baseline; gap: 10px;
}

.hero-reg-card-item em {
  font-family: var(--font-display);
  font-style: italic; color: var(--navy);
  font-weight: 500; font-size: 14.5px;
  flex: 1;
}

.hero-reg-card-item .reg-year {
  font-family: var(--font-mono);
  font-size: 10.5px; color: var(--text-3);
  letter-spacing: 1.2px;
  flex-shrink: 0;
}

.hero-reg-card-footer {
  font-family: var(--font-display);
  font-size: 13px; color: var(--text-2);
  font-style: italic; line-height: 1.55;
  margin-top: 16px;
}

/* =========== BLOCCO 2 — COSA OTTIENI =========== */
.block-what {
  padding: 80px 0 90px;
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.block-what-head {
  max-width: 720px;
  margin-bottom: 20px;
}

.block-what-head h2 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 42px;
  letter-spacing: -1.2px; line-height: 1.1;
  color: var(--navy); margin-bottom: 16px;
}

.block-what-head h2 em { color: var(--orange); font-style: italic; font-weight: 400; }

.block-what-sub {
  font-family: var(--font-display);
  font-weight: 400; font-style: normal;
  font-size: 18px; line-height: 1.6;
  color: var(--navy); max-width: 640px;
  margin-bottom: 48px;
  opacity: 0.8;
}

.index-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.index-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px 24px;
  position: relative;
  border-left: 5px solid var(--border);
}

.index-card.card-scan { border-left-color: var(--orange); box-shadow: -4px 0 12px rgba(223,102,22,0.15); }

.index-card.card-risk { border-left-color: var(--red); box-shadow: -4px 0 12px rgba(163,45,45,0.15); }

.index-card.card-cert { border-left-color: var(--green-dark); box-shadow: -4px 0 12px rgba(26,122,108,0.15); }

.index-card-step {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: var(--text-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.index-card-name {
  font-family: var(--font-display);
  font-weight: 500; font-size: 22px;
  color: var(--navy); margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.index-card-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  font-style: italic;
  margin-bottom: 14px;
}

.index-card-name .accent-orange { color: var(--orange); }

.index-card-name .accent-red { color: var(--red); }

.index-card-desc {
  font-family: var(--font-sans);
  font-size: 14px; line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 16px;
}

.index-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.index-card-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.5px;
  color: var(--navy);
  background: rgba(26,63,86,0.06);
  border: 1px solid rgba(26,63,86,0.1);
  border-radius: 3px;
  padding: 3px 8px;
}

.index-card.risk {
  border-color: var(--red);
  border-width: 1.5px;
}

.dash-preview {
  max-width: 900px;
  margin: 0 auto;
}

.dash-preview img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(26,63,86,0.1);
}

.dash-caption {
  font-family: var(--font-sans);
  font-size: 12px; color: var(--text-3);
  font-style: italic; text-align: center;
  margin-top: 14px;
}

/* =========== BLOCCO 3 — FAMECERT =========== */
.block-cert {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.block-cert .eyebrow {
  justify-content: flex-start; color: var(--green-dark);
}

.block-cert .eyebrow::before { background: var(--green); }

.block-cert.block-ai .eyebrow { color: var(--orange); }

.block-cert.block-ai .eyebrow::before { background: var(--orange); }

.block-cert.block-ai h2 em { color: var(--orange); font-style: italic; font-weight: 400; }

.block-cert h2 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 42px;
  letter-spacing: -1.2px; line-height: 1.1;
  color: var(--navy); margin-bottom: 16px;
}

.block-cert h2 em { color: var(--green-dark); font-style: italic; font-weight: 400; }

.cert-hero-split {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 8px;
  max-width: 820px;
}

.cert-hero-left {
  flex: 1;
  text-align: left;
}

.cert-hero-left h2 {
  text-align: left;
  margin-bottom: 0;
}

.cert-hero-right {
  flex-shrink: 0;
}

.cert-hero-seal {
  width: 140px;
  height: 140px;
}

.block-cert p {
  font-family: var(--font-display);
  font-weight: 400; font-style: italic;
  font-size: 16px; line-height: 1.55;
  color: var(--text-2); margin-bottom: 28px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

.btn-cert {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff; border: none;
  padding: 14px 24px; border-radius: 4px;
  font-family: var(--font-sans); font-size: 14px;
  font-weight: 500; letter-spacing: 0.2px;
  text-decoration: none; transition: background 0.2s;
}

.btn-cert:hover { background: var(--green-dark); }

.btn-cert svg { width: 14px; height: 14px; }

.block-what-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.link-metodo {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  color: var(--orange); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}

.link-metodo:hover { color: #C25812; }

.link-metodo svg { width: 14px; height: 14px; }

.link-cert {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  color: var(--green-dark); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}

.link-cert:hover { color: #146B5E; }

.link-cert svg { width: 14px; height: 14px; }

/* =========== BLOCCO VANTAGGIO CARDS =========== */
.adv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 36px 0 32px;
}

.adv-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  border-top: 5px solid var(--green-dark);
  box-shadow: 0 -4px 12px rgba(26,122,108,0.15);
}

.adv-card-title {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 14px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.adv-card-desc {
  font-family: var(--font-sans);
  font-size: 14px; line-height: 1.6;
  color: var(--text-2);
}

/* =========== BLOCCO 5 — CTA =========== */
.block-cta {
  padding: 100px 0;
  background: var(--navy);
  color: #fff; text-align: center;
}

.block-cta h2 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 42px;
  letter-spacing: -1.2px; line-height: 1.1;
  margin-bottom: 20px;
}

.block-cta h2 em { color: var(--orange); font-style: italic; font-weight: 400; }

.block-cta p {
  font-family: var(--font-display);
  font-weight: 400; font-style: italic;
  font-size: 18px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 560px; margin: 0 auto 36px;
}

.block-cta .btn-primary { background: var(--orange); }

.block-cta .btn-primary:hover { background: #d0751f; }

p.cta-email {
  font-style: normal;
  font-family: var(--font-sans); font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 24px;
}

p.cta-email a {
  color: #fff; text-decoration: none;
  font-weight: 500; font-size: 18px;
}

/* =========== FOOTER =========== */
.footer {
  background: linear-gradient(135deg, var(--b2-reale-a) 0%, var(--b2-reale-b) 100%); color: rgba(255,255,255,0.88);
  padding: 72px 0 36px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}

.footer-logo {
  font-family: var(--font-display); font-size: 28px;
  margin-bottom: 14px; letter-spacing: -0.5px;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-logo .fame { color: #fff; }

.footer-logo .true-wrap { position: relative; display: inline-block; }

.footer-logo .true { color: var(--orange); }

.footer-logo .interruption {
  position: absolute; top: 40%; left: 0; right: 0;
  height: 0.085em; background: var(--b2-reale-a); z-index: 2;
}

.footer-desc { font-size: 14px; color: rgba(255,255,255,0.78); max-width: 280px; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-bottom: 16px;
}

.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.80);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  font-size: 12px; color: rgba(255,255,255,0.72);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.footer-bottom a { color: rgba(255,255,255,0.82); text-decoration: none; }

/* =========== RESPONSIVE =========== */
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .hero { padding: 64px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 42px; letter-spacing: -1.2px; }
  .hero-sub { font-size: 17px; }
  .hero-reg-card-wrap { padding-top: 0; }
  .index-cards { grid-template-columns: 1fr; }
  .adv-cards { grid-template-columns: 1fr !important; }
  .cert-hero-split { flex-direction: column; gap: 24px; text-align: center; }
  .cert-hero-left { text-align: center; }
  .cert-hero-seal { width: 100px; height: 100px; }
  .block-what-head h2, .block-adv h2 { font-size: 30px; }
  .block-cert h2 { font-size: 28px; }
  .block-cta h2 { font-size: 30px; }
  .block-what-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* handled by hamburger */
}

/* Logo image in nav */
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative;
  padding: 0; flex-shrink: 0;
}

.nav-hamburger span {
  display: block; position: absolute; left: 0; right: 0;
  height: 2px; background: var(--navy); border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-hamburger span:nth-child(1) { top: 0; }

.nav-hamburger span:nth-child(2) { top: 9px; }

.nav-hamburger span:nth-child(3) { top: 18px; }

.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }

.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }

.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1150px) {
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 48px 28px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a:not(.nav-cta) { display: block !important; font-size: 15px; }
  
.lang-switch { 
  font-size: 12px; font-family: var(--font-mono); letter-spacing: 1px;
  display: flex; gap: 6px; align-items: center; margin-left: 16px;
}
.lang-switch a { 
  color: var(--text-3); text-decoration: none; padding: 2px 6px; 
  border-radius: 3px; transition: all 0.2s;
}
.lang-switch a:hover { color: var(--navy); }
.lang-switch a.active { color: var(--navy); font-weight: 700; }
.nav-login {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 9px 16px;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-links .nav-login:hover { background: var(--navy); color: #fff !important; }
.nav-links a.nav-cta { align-self: flex-start; margin-top: 8px; }
}

@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.nav-links > a[href*="blog"] { position: relative; padding-right: 20px; }

.nav-links > a[href*="blog"]::after { content: "●"; color: var(--orange); font-size: 20px; position: absolute; top: 50%; right: -2px; transform: translateY(-50%); line-height: 1; animation: pulse-dot 2.5s ease-in-out infinite; }

.btn-faq { display: inline-flex; align-items: center; gap: 10px; padding: 13px 30px; border: 1.5px solid var(--navy); border-radius: 8px; background: transparent; color: var(--navy); font-family: var(--font-sans); font-size: 15px; font-weight: 500; text-decoration: none; transition: all 0.2s ease; }

.btn-faq:hover { background: var(--navy); color: #fff; }

.btn-faq svg { width: 15px; height: 15px; }

/* ============ LEGITSCRIPT-STYLE VARIANT ============ */
/* HERO scuro */
.ls-hero { background: linear-gradient(135deg, var(--b2-notte-a) 0%, var(--b2-notte-b) 100%); color: #fff; padding: 92px 0 84px; position: relative; overflow: hidden; }

.ls-hero::before { content: ""; position: absolute; top: -20%; right: -8%; width: 55%; height: 140%; background: radial-gradient(ellipse at center, rgba(54,172,157,0.16) 0%, transparent 65%); pointer-events: none; }

.ls-hero-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr); gap: 56px; align-items: center; position: relative; }

.ls-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: 58px; letter-spacing: -1.8px; line-height: 1.04; margin-bottom: 0; color: #fff; }

.ls-hero h1 .fc-cert { color: #5BCBBC; }

.ls-hero-def { display: block; font-size: 25px; letter-spacing: -0.4px; line-height: 1.35; color: rgba(255,255,255,0.95); margin-top: 14px; font-weight: 400; }

.ls-hero-sub { font-family: var(--font-sans); font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 600px; margin-top: 20px; }

.ls-hero-actions { margin-top: 30px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.ls-hero-scroll { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-family: var(--font-sans); font-size: 14px; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.45); padding: 13px 22px; border-radius: 4px; transition: background 0.2s, border-color 0.2s; }

.ls-hero-scroll:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.ls-hero-scroll svg { width: 14px; height: 14px; }

.ls-hero-seal-col { display: flex; justify-content: center; }

.ls-hero-seal { width: 230px; height: 230px; filter: drop-shadow(0 22px 48px rgba(0,0,0,0.4)); }

/* FASCIA QUADRO NORMATIVO */
.ls-cred { background: #FFFFFF; padding: 56px 0; }

.ls-cred-panel { background: linear-gradient(135deg, var(--b2-reale-a) 0%, var(--b2-reale-b) 100%); border-radius: 22px; padding: 52px 56px 48px; text-align: center; }

.ls-cred-label { font-family: var(--font-mono); font-size: 16px; letter-spacing: 3px; text-transform: uppercase; color: #FFFFFF; font-weight: 700; margin-bottom: 18px; }

.ls-cred-items { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.ls-cred-item { font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: #FFFFFF; white-space: nowrap; text-decoration: none; border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.08); border-radius: 6px; padding: 10px 16px; transition: border-color 0.2s, background 0.2s; display: inline-flex; align-items: center; gap: 8px; }

.ls-cred-item::after { content: "\2192"; font-size: 13px; opacity: 0.75; }

.ls-cred-item:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

.ls-cred-item span { font-family: var(--font-mono); font-style: normal; font-size: 9.5px; color: rgba(255,255,255,0.6); letter-spacing: 1px; margin-left: 8px; }

/* SEZIONI */
.sec { padding: 76px 0 84px; }

.sec-paper { background: var(--paper); }

.sec-head h2 { font-family: var(--font-display); font-weight: 400; font-size: 40px; letter-spacing: -1.2px; line-height: 1.1; color: var(--navy); margin-bottom: 16px; }

.sec-sub { font-family: var(--font-display); font-weight: 400; font-size: 18px; line-height: 1.6; color: var(--navy); max-width: 680px; margin-bottom: 40px; opacity: 0.8; }

/* TRE PUNTI (riuso) */
.punti { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }

.punto { background: #FFFFFF; border: 1px solid var(--border); border-radius: 10px; padding: 30px 28px 24px; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }

.punto:hover { box-shadow: 0 10px 28px rgba(26,63,86,0.10); transform: translateY(-2px); }

.punto-icon { width: 34px; height: 34px; margin-bottom: 16px; }

.punto-title { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.3px; }

.punto p { font-family: var(--font-sans); font-size: 14px; line-height: 1.65; color: var(--text-2); margin-bottom: 16px; flex: 1; }

/* SPOTLIGHT CERTIFICAZIONE */
.ls-spot { background: var(--paper); }

.ls-spot-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 56px; align-items: center; }

.ls-spot-seal { width: 200px; height: 200px; filter: drop-shadow(0 16px 36px rgba(21,94,85,0.25)); }

.ls-spot-seal-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.ls-spot-cap { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); text-align: center; }

.ls-spot-steps { display: flex; flex-direction: column; border-top: 1px solid var(--border-soft); margin-top: 8px; }

.ls-spot-step { display: flex; gap: 14px; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--border-soft); font-family: var(--font-sans); font-size: 14px; color: var(--text-2); }

.ls-spot-step b { font-family: var(--font-mono); font-size: 10.5px; color: var(--orange); font-weight: 700; flex-shrink: 0; }

.ls-spot-step em { font-style: normal; color: var(--navy); font-weight: 500; }

.sector-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 10px; }

.sector-name { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.3px; }

.sector-desc { font-family: var(--font-sans); font-size: 13.5px; line-height: 1.6; color: var(--text-2); margin-bottom: 14px; }

.sector-link { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }

a.sector-card:hover .sector-link { color: var(--orange); }

.sector-link svg { width: 13px; height: 13px; }

@media (max-width: 380px) {
  .footer-top { gap: 24px; }
  .footer-logo { font-size: 22px; }
}

/* ---- CTA a pannello, presa dalla home, unica per tutto il sito ---- */
.cta-wrap { padding: 24px 0 72px; }
.cta-panel { background: #FFFFFF; border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 10px 32px rgba(26,63,86,0.08); max-width: 760px; margin: 0 auto; padding: 56px 48px 48px; text-align: center; }
.cta-panel h2 { font-family: var(--font-display); font-weight: 400; font-size: 38px; letter-spacing: -1.1px; line-height: 1.1; color: var(--navy); margin-bottom: 16px; }
.cta-panel h2 em { color: var(--orange); font-style: italic; font-weight: 400; }
.cta-panel p { font-family: var(--font-sans); font-size: 16px; line-height: 1.7; color: var(--text-2); max-width: 520px; margin: 0 auto 28px; }
.cta-panel .btn-primary { background: var(--b2-vivo-a); }
.cta-panel .btn-primary:hover { background: #275B99; }
.cta-email-light { font-style: normal !important; font-family: var(--font-sans) !important; font-size: 14px !important; color: var(--text-3) !important; margin: 22px auto 0 !important; }
.cta-email-light a { color: var(--navy); text-decoration: none; font-weight: 500; }
.cta-email-light a:hover { color: var(--orange); }
@media (max-width: 900px) {
  .cta-panel { padding: 36px 22px 32px; border-radius: 16px; }
  .cta-panel h2 { font-size: 28px; }
}

/* ============================================================
   REGOLE CONDIVISE DA UN SOTTOINSIEME DI PAGINE
   Non presenti su tutte, ma usate da due o piu pagine.
   Tenute qui per evitare duplicazione inline.
   ============================================================ */

/* ---- Link in prosa, usato su famecert, metodologia e pagine settore ---- */
.gap-link {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(223,102,22,0.35);
  padding-bottom: 1px;
}
.gap-link:hover { border-bottom-color: var(--orange); }

/* ---- Credito immagini, licenza gratuita Magnific ---- */
.img-credit {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-3);
  letter-spacing: .1px;
}
.img-credit a {
  color: var(--text-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.img-credit a:hover { color: var(--navy); }
