<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:    #0a1628;
  --navy2:   #0f1e38;
  --navy3:   #152444;
  --white:   #f5f2ec;
  --cream:   #ede9e0;
  --red:     #c0392b;
  --amber:   #e67e22;
  --steel:   #8fa3bc;
  --arancione:#EB5B28;
  --muted:   #5a7a9a;
  --border:  rgba(143,163,188,0.2);
  --border2: rgba(143,163,188,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Mono', monospace;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
  pointer-events: none;
  z-index: 9998;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--navy);
  border-bottom: 2px solid var(--arancione);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-shield {
  width: 32px; height: 32px;
  background: var(--arancione);
  clip-path: polygon(50% 0%, 100% 18%, 100% 60%, 50% 100%, 0% 60%, 0% 18%);
  /*background-image:url("./images/logo.gif");*/
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-shield::after {
  content: '✓';
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: sans-serif;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.logo-text span { color: var(--arancione); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--arancione);
  border: none;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: #a93226; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--steel); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--arancione); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 5%;
  font-size: 1.4rem; color: var(--steel);
  background: none; border: none; cursor: pointer;
}

/* ─── ALERT BANNER ─── */
.alert-banner {
  background: var(--amber);
  padding: 0.55rem 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 65px;
}
.alert-banner p {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 500;
}
.alert-icon {
  width: 18px; height: 18px;
  background: var(--navy);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  flex-shrink: 0;
}
.alert-badge {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--amber);
  padding: 0.2rem 0.6rem;
  flex-shrink: 0;
}

/* ─── HERO ─── */
#hero {
  background: var(--navy);
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Diagonal split */
#hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--navy2);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-left {
  padding: 6rem 5% 6rem 5%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compliance-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease both;
}
.compliance-tag span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel);
}
.compliance-tag::before {
  content: 'DIRETTIVA UE 2022/2555';
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--arancione);
  border: 1px solid var(--arancione);
  padding: 0.2rem 0.6rem;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  letter-spacing: 0.03em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 2rem;
  animation: fadeIn 0.6s ease 0.1s both;
}
h1 em {
  font-style: normal;
  color: var(--arancione);/*var(--red);*/
  display: block;
}

.hero-body {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--steel);
  max-width: 440px;
  margin-bottom: 3rem;
  animation: fadeIn 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeIn 0.6s ease 0.3s both;
}

.btn-danger {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  padding: 0.85rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-danger:hover { background: #a93226; border-color: #a93226; transform: translateY(-2px); }

.btn-outline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(143,163,188,0.35);
  padding: 0.85rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5% 4rem 2rem;
}

/* Deadline clock */
.deadline-box {
  background: rgba(10,22,40,0.9);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 2.5rem;
  width: 100%;
  max-width: 360px;
  animation: fadeIn 0.6s ease 0.4s both;
}
.deadline-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.deadline-label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.deadline-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.deadline-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.risk-meter {
  margin-top: 1.5rem;
}
.risk-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}
.risk-bar {
  height: 6px;
  background: rgba(143,163,188,0.15);
  position: relative;
  overflow: hidden;
}
.risk-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber) 0%, var(--red) 100%);
  width: 73%;
  animation: fillBar 1.5s ease 0.8s both;
}
@keyframes fillBar {
  from { width: 0; }
  to { width: 73%; }
}

.penalties-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.penalty-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--steel);
}
.penalty-item::before {
  content: '▸';
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTIONS ─── */
section { padding: 7rem 5%; }

.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--arancione);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 148px;
  height: 1px;
  background: var(--arancione);
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
h2 em { font-style: normal; color: var(--arancione); }

.section-intro {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 560px;
}

/* ─── NORMATIVA ─── */
#normativa { background: var(--cream); }

.normativa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.nis2-explainer { }
.nis2-explainer p {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.scope-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(10,22,40,0.12);
}
.scope-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  transition: background 0.2s;
}
.scope-item:last-child { border-bottom: none; }
.scope-item:hover { background: rgba(10,22,40,0.04); }
.scope-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color:var(--arancione);
  min-width: 28px;
}
.scope-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.scope-badge {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 1px solid;
}
.scope-badge.essential {
  color: var(--arancione);
  border-color: var(--arancione);
}
.scope-badge.important {
  color: var(--amber);
  border-color: var(--amber);
}

.obligations-side {}
.obligation-card {
  border: 1px solid rgba(10,22,40,0.12);
  padding: 1.5rem;
  margin-bottom: 1px;
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.obligation-card:hover {
  border-color: var(--arancione);
  background: #fff;
}
.obligation-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--arancione);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.obligation-card:hover::before { transform: scaleY(1); }
.obligation-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.obligation-text {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}
.obligation-art {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--arancione);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* ─── SERVIZI ─── */
#servizi { background: var(--navy); }
#servizi h2 { color: var(--white); }
#servizi .section-intro { color: var(--steel); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.service-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: var(--navy2); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--arancione);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(192,57,43,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.service-tag {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--arancione);
  border: 1px solid rgba(192,57,43,0.4);
  padding: 0.2rem 0.6rem;
  display: inline-block;
}

/* ─── ASSESSMENT ─── */
#assessment { background: var(--cream); }

.assessment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.assessment-steps { }
.a-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.1);
}
.a-step:last-child { border-bottom: none; }
.a-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--arancione);
  line-height: 1;
}
.a-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.a-step-text {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Radar SVG */
.assessment-visual {}
.radar-wrap {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.1);
  border-top: 3px solid var(--arancione);
  padding: 2rem;
}
.radar-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.radar-wrap svg { display: block; width: 100%; max-width: 340px; margin: 0 auto; }

/* ─── SANZIONI ─── */
#sanzioni {
  background: var(--navy);
  padding: 5rem 5%;
  text-align: center;
}
#sanzioni h2 { color: var(--white); }
#sanzioni .section-eyebrow { justify-content: center; }
#sanzioni .section-eyebrow::after { display: none; }
#sanzioni .section-eyebrow::before {
  content: '';
  max-width: 48px; height: 1px; background: var(--arancione);
  display: block;
  flex: 1;
}

.sanctions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 3rem 0;
  text-align: left;
}
.sanction-item {
  background: var(--navy2);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.sanction-item::before {
  content: '!';
  position: absolute;
  top: -0.5rem; right: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  color: rgba(192,57,43,0.07);
  line-height: 1;
}
.sanction-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: var(--arancione);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sanction-type {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}
.sanction-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── PERCHÉ NOI ─── */
#perche { background: var(--white); }

.perche-header { max-width: 600px; margin-bottom: 4rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.why-item {
  border-top: 2px solid rgba(10,22,40,0.1);
  padding-top: 1.5rem;
  transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--arancione); }
.why-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--arancione);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.why-text {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Certifications */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(10,22,40,0.1);
  align-items: center;
}
.cert-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.cert-badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid rgba(10,22,40,0.2);
  padding: 0.4rem 0.85rem;
  background: var(--cream);
}

/* ─── CONTATTI ─── */
#contatti { background: var(--navy); }
#contatti h2 { color: var(--white); }
#contatti .section-intro { color: var(--steel); margin-bottom: 3.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {}
.contact-info-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border2);
}
.contact-info-item:first-child { border-top: 1px solid var(--border2); }
.contact-info-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.contact-info-val {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 400;
}

.urgency-note {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(192,57,43,0.3);
  background: rgba(192,57,43,0.05);
}
.urgency-note p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--steel);
}
.urgency-note strong {
  color: var(--arancione);
  font-weight: 500;
}

.contact-form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select,
.form-field textarea:focus { border-color: var(--red); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(143,163,188,0.3); }
.form-field select option { background: var(--navy2); color: var(--white); }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 1rem 0;
  cursor: pointer;
}
.form-checkbox input { width: auto; flex-shrink: 0; margin-top: 3px; }
.form-checkbox label {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--steel);
  cursor: pointer;
}
.form-checkbox label a { color: var(--arancione); text-decoration: none; }

.submit-btn {
  width: 100%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--arancione);
  border: 2px solid var(--arancione);
  padding: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover { background: #a93226; border-color: #a93226; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border2);
  padding: 3rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 1rem;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; }
  #hero::after { display: none; }
  .hero-left { padding: 4rem 5%; }
  .hero-right { padding: 2rem 5% 4rem; }
  .deadline-box { max-width: 100%; }
  .normativa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .assessment-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  section { padding: 5rem 5%; }
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}
</style>
/* aggiunta da me ma nn funge!!!*/
.text_offerta li{
	list-style-type: none;
	padding: 0;
	margin: 0;
	/*color:var(--arancione);*/
	font-weight: bold;
}
