/* ============================================================
   2RZ S.r.l. 
   ============================================================ */
/* ── BASE E COLORI  (variabili: --red, --near-black, ecc.) ───── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --red: #C8181E;
  --red-dark: #9E0F14;
  --red-light: #E8282F;
  --black: #0C0C0C;
  --near-black: #161616;
  --dark: #1E1E1E;
  --gray: #2A2A2A;
  --mid: #555555;
  --light: #E8E8E8;
  --off-white: #F6F6F6;
  --white: #FFFFFF;
  --font-display: 'Rajdhani',sans-serif;
  --font-body: 'Inter',sans-serif;
  --nav-h: 70px;
  --leone: #3A7ABE;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── HEADER / MENU DI NAVIGAZIONE ────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.14);
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 6px 14px;
  transition: color .2s,background .2s;
}
.nav-links a:hover {
  color: var(--red);
  background: rgba(200,24,30,.07);
}
.nav-cta {
  background: var(--red)!important;
  color: var(--white)!important;
  padding: 8px 18px!important;
}
.nav-cta:hover {
  background: var(--red-light)!important;
  color: var(--white)!important;
}
.nav-contact {
  font-size: 13px;
  color: #666666;
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-contact a {
  color: #555555;
  text-decoration: none;
  transition: color .2s;
}
.nav-contact a:hover {
  color: var(--red);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
}

/* ── HOME — HERO INIZIALE ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/sede-2rz.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: .30;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded {
  transform: scale(1);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 820px;
  margin-top: var(--nav-h);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--red);
  display: block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px,7vw,96px);
  font-weight: 700;
  color: var(--white);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 28px;
}
.hero-title span {
  color: var(--red);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: #bbbbbb;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── PULSANTI ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: background .2s,transform .2s;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 32px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  transition: border-color .2s,color .2s;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.hero-scroll {
  text-decoration: none;
  transition: color .2s;
  position: absolute;
  bottom: 36px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555555;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}
.hero-scroll:hover {
  color: var(--red);
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--red);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STRISCIA NUMERI ─────────────────────────────────────────── */
.stats-strip {
  background: var(--red);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  position: relative;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  display: block;
}

/* ── TITOLI DI SEZIONE ───────────────────────────────────────── */
.section {
  padding: 96px 80px;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px,4vw,50px);
  font-weight: 700;
  color: var(--near-black);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
}

/* ── HOME — REPARTI ──────────────────────────────────────────── */
.reparti-section {
  background: var(--off-white);
  padding: 96px 80px;
}
.reparti-header {
  margin-bottom: 56px;
}
.reparti-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.reparto-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.reparto-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.reparto-card:hover {
  transform: translateY(-4px);
}
.reparto-card:hover::before {
  transform: scaleX(1);
}
.reparto-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  position: relative;
}
.reparto-icon svg {
  width: 56px;
  height: 56px;
}
.reparto-num {
  position: absolute;
  top: 48px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
  letter-spacing: -2px;
  user-select: none;
}
.reparto-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  line-height: 1.1;
  margin-bottom: 16px;
}
.reparto-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.reparto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--off-white);
  color: var(--mid);
  border: 1px solid var(--light);
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about-text {
  padding: 96px 80px;
  background: var(--near-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text .section-eyebrow {
  color: var(--red);
}
.about-text .section-title {
  color: var(--white);
}
.about-text .section-sub {
  color: #999999;
  max-width: 100%;
}
.about-text p {
  font-size: 15px;
  color: #888888;
  line-height: 1.75;
  margin-top: 16px;
}
.about-text p strong {
  color: var(--red);
  font-weight: 600;
}
.about-milestones {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.milestone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 2px solid var(--red);
}
.milestone strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.milestone span {
  font-size: 12px;
  color: #666666;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-photo {
  background-image: url('../img/sede-2rz.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,rgba(22,22,22,.4),transparent);
}

/* ── HOME — SERVIZI ──────────────────────────────────────────── */
.servizi-section {
  padding: 96px 80px;
  background: var(--white);
}
.servizi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.servizi-grid>.servizio-card:last-child {
  grid-column: 2;
}
.servizio-card {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: var(--near-black);
  aspect-ratio: 4/3;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.servizio-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease,opacity .3s;
  opacity: .55;
}
.servizio-card:hover .servizio-img {
  transform: scale(1.05);
  opacity: .35;
}
.servizio-body {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(to top,rgba(0,0,0,.85) 0%,transparent 100%);
}
.servizio-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.servizio-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}
.servizio-card:hover .servizio-body::after {
  content: '→';
  color: var(--red);
  font-size: 20px;
  float: right;
}

/* ── HOME — NEWS E PROGETTI ──────────────────────────────────── */
.news-section {
  background: var(--black);
  padding: 96px 80px;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.news-header .section-title {
  color: var(--white);
}
.news-header .section-sub {
  color: #888888;
}
.news-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.news-arrow {
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid #333333;
  color: #999999;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s,color .2s,background .2s;
}
.news-arrow:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(200,24,30,.15);
}
.news-arrow:disabled {
  opacity: .3;
  cursor: default;
}
.news-arrow:disabled:hover {
  border-color: #333333;
  color: #999999;
  background: transparent;
}
.news-track-wrap {
  overflow: hidden;
}
.news-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.news-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--near-black);
  border: 1px solid #1e1e1e;
  display: flex;
  flex-direction: column;
  transition: border-color .25s,transform .25s;
}
.news-card:hover {
  border-color: rgba(200,24,30,.5);
  transform: translateY(-4px);
}
.news-media {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.news-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(12,12,12,.75),transparent 60%);
}
.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 10px;
}
.news-media-leone {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08141f url('../img/leone-sfondo-bolle.jpg') center/cover no-repeat;
  text-decoration: none;
  overflow: hidden;
}
.news-media-leone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,rgba(6,16,26,.72) 0%,rgba(8,20,32,.55) 55%,rgba(6,14,24,.78) 100%);
  transition: background .35s ease;
}
.news-card-leone:hover .news-media-leone::before {
  background: linear-gradient(160deg,rgba(6,16,26,.58) 0%,rgba(8,20,32,.40) 55%,rgba(6,14,24,.66) 100%);
}
.news-media-leone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(12,12,12,.55),transparent 60%);
}
.leone-logo {
  position: relative;
  z-index: 3;
  width: 68%;
  max-width: 220px;
  height: auto;
  display: block;
  filter: brightness(1.35) drop-shadow(0 4px 18px rgba(0,0,0,.5));
  transition: transform .35s ease;
}
.news-card-leone:hover .leone-logo {
  transform: scale(1.06);
}
.news-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: 12px;
  color: #666666;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.news-text {
  font-size: 14px;
  color: #8a8a8a;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.news-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: gap .2s,color .2s;
}
.news-link:hover {
  gap: 14px;
  color: var(--white);
}
.news-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.news-dot {
  width: 9px;
  height: 9px;
  border: 1px solid #444444;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s,border-color .2s;
}
.news-dot.active {
  background: var(--red);
  border-color: var(--red);
}
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  align-self: flex-start;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 30px;
  text-decoration: none;
  border: 1px solid var(--red);
  transition: background .2s,gap .2s;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
}
.btn-about:hover {
  background: var(--red);
  gap: 16px;
}

/* ── FASCIA ROSSA CONTATTI ───────────────────────────────────── */
.cta-section {
  background: var(--red);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px,3.5vw,46px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}
.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-top: 10px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s,color .2s;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
}
.btn-white:hover {
  background: var(--near-black);
  color: var(--white);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 64px 80px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
}
.footer-about {
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
}
.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  font-size: 13px;
  color: #777777;
  text-decoration: none;
  transition: color .2s;
}
.footer-contact a:hover {
  color: var(--red);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1a1a;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #555555;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red);
  flex-shrink: 0;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: #3a3a3a;
}
.footer-bottom a {
  color: #3a3a3a;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--red);
}
.footer-piva {
  font-size: 11px;
  color: #2e2e2e;
  letter-spacing: .05em;
}
.nav-links a.active {
  color: var(--red);
}

/* ── PAGINA AZIENDA ──────────────────────────────────────────── */
.page-hero {
  margin-top: var(--nav-h);
  min-height: 46vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/sede-2rz.jpg');
  background-size: cover;
  background-position: center 45%;
  opacity: .22;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.crumb {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8b8b8b;
  margin-bottom: 22px;
}
.crumb a {
  color: #8b8b8b;
  text-decoration: none;
}
.crumb a:hover {
  color: var(--red);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px,6vw,76px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: .98;
}
.page-hero h1 span {
  color: var(--red);
}
.page-hero p {
  font-size: 17px;
  color: #aaaaaa;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 22px;
  font-weight: 300;
}
.lead {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 740px;
}
.lead + .lead {
  margin-top: 16px;
}
.lead strong {
  color: var(--red);
  font-weight: 600;
}
.story {
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-visual {
  position: relative;
}
.story-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.story-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,24,30,.35);
  pointer-events: none;
}
.story-frame::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 36px;
  height: 36px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.story-frame::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 36px;
  height: 36px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}
.quote-section {
  background: var(--near-black);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  align-items: center;
}
.quote-photo {
  position: relative;
}
.quote-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.quote-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.quote-frame::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.quote-frame::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 44px;
  height: 44px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  color: var(--red);
  line-height: .7;
  display: block;
  margin-bottom: 10px;
}
.quote-mark-close {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  color: var(--red);
  line-height: .7;
  display: block;
  margin-top: 22px;
  max-width: 780px;
  text-align: right;
}
.quote-text {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px,1.45vw,19px);
  color: var(--white);
  line-height: 1.95;
  max-width: 760px;
}
.timeline-section {
  background: var(--off-white);
  padding: 96px 80px;
}
.timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 34px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom,var(--red),rgba(200,24,30,.15));
}
.tl-item {
  position: relative;
  padding-bottom: 44px;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 3px solid var(--red);
  transform: rotate(45deg);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.tl-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 8px;
}
.tl-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 640px;
}
.values-section {
  background: var(--black);
  padding: 96px 80px;
}
.values-section .section-title {
  color: var(--white);
}
.values-section .lead {
  color: #888888;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: 56px;
}
.value-card {
  background: var(--near-black);
  padding: 44px 36px;
  position: relative;
  transition: background .25s;
}
.value-card:hover {
  background: #1c1c1c;
}
.value-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.value-card p {
  font-size: 14px;
  color: #888888;
  line-height: 1.75;
}
.skills-section {
  padding: 96px 80px;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  margin-top: 56px;
}
.skill-block {
  background: var(--off-white);
  padding: 40px 36px;
  border-left: 3px solid var(--red);
}
.skill-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 14px;
}
.skill-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.skill-block li {
  font-size: 14px;
  color: var(--mid);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}
.skill-block li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
  transform: rotate(45deg);
}

/* ── PAGINE SERVIZI / REPARTI / PROGETTI ─────────────────────── */
.srv-hero {
  margin-top: var(--nav-h);
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 100px 80px;
}
.srv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/automazione-industriale.jpg') center/cover no-repeat;
  opacity: .40;
}
.srv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,rgba(10,10,10,.92) 0%,rgba(12,12,12,.70) 45%,rgba(12,12,12,.30) 100%);
}
.srv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.srv-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px,5.6vw,72px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.srv-hero h1 span {
  color: var(--red);
}
.srv-hero p {
  font-size: 17px;
  color: #bbbbbb;
  line-height: 1.75;
  max-width: 600px;
  margin-top: 24px;
  font-weight: 300;
}
.block {
  padding: 90px 80px;
}
.pillars {
  background: var(--black);
  padding: 90px 80px;
}
.pillars .section-title {
  color: var(--white);
}
.pillars .lead {
  color: #8d8d8d;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: 56px;
}
.pillar {
  background: var(--near-black);
  padding: 44px 36px;
  transition: background .25s;
}
.pillar:hover {
  background: #1c1c1c;
}
.pillar .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--red);
  display: block;
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.pillar p {
  font-size: 14px;
  color: #888888;
  line-height: 1.75;
}
.method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 90px 80px;
  background: var(--off-white);
}
.method-visual {
  position: relative;
}
.method-visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.method-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.method-frame::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.method-frame::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}
.steps {
  list-style: none;
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.steps b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 30px;
}
.steps span {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}
.steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 4px;
}
.sectors {
  padding: 90px 80px;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-top: 52px;
}
.sector {
  background: var(--off-white);
  padding: 30px 26px;
  border-top: 3px solid var(--red);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  line-height: 1.2;
  transition: background .2s,color .2s;
}
.sector:hover {
  background: var(--near-black);
  color: var(--white);
}
.sector-cta {
  background: var(--red);
  color: var(--white);
  border-top-color: var(--near-black);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s,transform .2s;
}
.sector-cta:hover {
  background: var(--near-black);
  color: var(--white);
  transform: translateY(-3px);
}
.sector-cta span {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.sector-cta:hover span {
  color: var(--red);
}
.pillar-media {
  position: relative;
  overflow: hidden;
}
.pillar-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  opacity: .85;
  transition: transform .45s ease,opacity .3s ease;
}
.pillar:hover .pillar-media img {
  transform: scale(1.05);
  opacity: 1;
}
.pillar-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(22,22,22,.95),transparent 55%);
  pointer-events: none;
}
.pillar-body {
  padding: 32px 36px 40px;
}
.areas {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.area {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  background: var(--off-white);
  align-items: stretch;
}
.area-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.area-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.area-text {
  padding: 52px 48px;
}
.area-rev .area-media {
  order: 2;
}
.area-rev .area-text {
  order: 1;
}
.area-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.area h3 {
  font-family: var(--font-display);
  font-size: clamp(24px,2.6vw,32px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  line-height: 1.1;
  margin-bottom: 20px;
}
.area p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.area-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.area-list li {
  font-size: 14px;
  color: var(--dark);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
}
.area-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
  transform: rotate(45deg);
}
.focus-site {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: gap .2s,color .2s;
}
.focus-site::after {
  content: '\2197';
  font-size: 1em;
}
.focus-site:hover {
  gap: 15px;
  color: var(--near-black);
}

/* ── PAGINA PROGETTO LEONE ───────────────────────────────────── */
.leone-hero {
  margin-top: var(--nav-h);
  background: #08141f;
  padding: 100px 80px 100px;
  position: relative;
  overflow: hidden;
}
.leone-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/leone-sfondo-bolle.jpg');
  background-size: cover;
  background-position: center;
  opacity: .85;
}
.leone-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,rgba(6,16,26,.94) 0%,rgba(8,20,32,.80) 42%,rgba(8,20,32,.35) 100%);
}
.leone-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero-leone-logo {
  width: 280px;
  max-width: 60%;
  height: auto;
  display: block;
  margin-bottom: 32px;
  filter: brightness(1.4);
}
.leone-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px,4.6vw,58px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.03;
}
.leone-hero h1 span {
  color: var(--leone);
}
.leone-hero .sub {
  font-size: 17px;
  color: #9fb0c4;
  line-height: 1.75;
  max-width: 620px;
  margin-top: 22px;
  font-weight: 300;
}
.block-alt {
  background: var(--off-white);
}
.role-section {
  background: var(--black);
  padding: 90px 80px;
}
.role-section .section-title {
  color: var(--white);
}
.role-section .lead {
  color: #8d8d8d;
}
.role-section .lead strong {
  color: var(--red);
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: 52px;
}
.role-card {
  background: var(--near-black);
  padding: 40px 34px;
  transition: background .25s;
}
.role-card:hover {
  background: #1c1c1c;
}
.role-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--red);
  display: block;
  margin-bottom: 18px;
}
.role-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.role-card p {
  font-size: 14px;
  color: #888888;
  line-height: 1.75;
}
.goals {
  list-style: none;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
}
.goals li {
  background: var(--white);
  border-left: 3px solid var(--red);
  padding: 24px 26px;
  font-size: 15px;
  color: var(--dark);
  display: flex;
  gap: 16px;
  align-items: center;
  line-height: 1.5;
}
.goals li b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--light);
  flex-shrink: 0;
  letter-spacing: -1px;
}
.partners-section {
  padding: 90px 80px;
  text-align: center;
}
.partners-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 48px auto 0;
  display: block;
}
.partner-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  margin-top: 56px;
  text-align: left;
}
.partner-item {
  background: var(--off-white);
  padding: 32px 30px;
  border-top: 3px solid var(--red);
}
.partner-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s,gap .2s;
}
.partner-link::after {
  content: '\2197';
  font-size: .75em;
  color: var(--red);
}
.partner-link:hover {
  color: var(--red);
  gap: 12px;
}
.partner-item.us .partner-link::after {
  color: var(--leone);
}
.partner-item.us .partner-link:hover {
  color: var(--leone);
}
.partner-item h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 10px;
}
.partner-item p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}
.partner-item.us {
  border-top-color: var(--leone);
  background: #eef3f9;
}
.funding {
  background: var(--near-black);
  padding: 56px 80px;
}
.funding p {
  font-size: 13px;
  color: #777777;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.funding strong {
  color: #aaaaaa;
  font-weight: 500;
}
.focus-section {
  background: var(--off-white);
  padding: 90px 80px;
}
.focus-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.focus-item {
  background: var(--white);
  padding: 44px 46px;
  border-left: 3px solid var(--red);
  transition: border-color .25s;
}
.focus-item:hover {
  border-left-color: var(--near-black);
}
.focus-item.us {
  border-left-color: var(--leone);
  background: #eef3f9;
}
.focus-item.us:hover {
  border-left-color: var(--leone);
}
.focus-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.focus-item.us .focus-tag {
  color: var(--leone);
}
.focus-item h3 {
  font-family: var(--font-display);
  font-size: clamp(22px,2.4vw,30px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  line-height: 1.1;
  margin-bottom: 18px;
}
.focus-item p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  max-width: 900px;
}
.focus-item.us .focus-site {
  color: var(--leone);
}
.focus-item.us .focus-site:hover {
  color: var(--near-black);
}
.area-solo {
  grid-template-columns: 1fr;
  border-left: 3px solid var(--red);
}
.numbers {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-top: 48px;
}
.nbox {
  background: var(--near-black);
  padding: 30px 24px;
  text-align: center;
}
.nbox strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.nbox span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #888888;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── PAGINE PRIVACY E NOTE LEGALI ────────────────────────────── */
.legal-hero {
  margin-top: var(--nav-h);
  background: var(--black);
  padding: 70px 80px 60px;
  border-bottom: 3px solid var(--red);
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px,5vw,60px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.legal-hero h1 span {
  color: var(--red);
}
.legal-updated {
  font-size: 13px;
  color: #666666;
  margin-top: 18px;
  letter-spacing: .04em;
}
.legal-body {
  padding: 70px 80px 90px;
  max-width: 1000px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--near-black);
  margin: 48px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
  line-height: 1.15;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin: 32px 0 12px;
}
.legal-body p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-body p strong {
  color: var(--dark);
  font-weight: 600;
}
.legal-body a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,24,30,.35);
}
.legal-body a:hover {
  border-bottom-color: var(--red);
}
.legal-body ul {
  list-style: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-body ul li {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.legal-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 9px;
  transform: rotate(45deg);
}
.table-wrap {
  overflow-x: auto;
  margin: 24px 0 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
thead th {
  background: var(--near-black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 16px;
}
tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--mid);
  border-bottom: 1px solid #eeeeee;
  vertical-align: top;
  line-height: 1.6;
}
tbody tr:nth-child(even) {
  background: var(--off-white);
}
tbody td:first-child {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

/* ── ANIMAZIONI ──────────────────────────────────────────────── */
@keyframes scrollPulse{0%,100%{width:40px;opacity:1}50%{width:60px;opacity:0.5}}


/* ── VERSIONE MOBILE (schermi fino a 900 px) ─────────────────── */
@media (max-width:900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links,
  .nav-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 4px;
    border-bottom: 2px solid var(--red);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .hero-content {
    padding: 0 24px;
  }
  .hero-scroll {
    left: 24px;
  }
  .stats-inner {
    grid-template-columns: repeat(2,1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .section,
  .reparti-section,
  .servizi-section {
    padding: 64px 24px;
  }
  .reparti-grid,
  .servizi-grid {
    grid-template-columns: 1fr;
  }
  .servizi-grid>.servizio-card:last-child {
    grid-column: auto;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-text {
    padding: 64px 24px;
  }
  .about-photo {
    height: 300px;
  }
  .about-milestones {
    gap: 24px;
  }
  .servizi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .news-section {
    padding: 64px 24px;
  }
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .news-card {
    flex: 0 0 100%;
  }
  .cta-section {
    flex-direction: column;
    padding: 56px 24px;
    text-align: center;
  }
  footer {
    padding: 48px 24px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .page-hero {
    padding: 56px 24px;
    min-height: auto;
  }
  .story {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }
  .story-visual img {
    height: 280px;
  }
  .timeline-section,
  .values-section,
  .skills-section {
    padding: 64px 24px;
  }
  .quote-section {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 36px;
  }
  .quote-photo {
    max-width: 280px;
  }
  .values-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .srv-hero {
    padding: 60px 24px;
  }
  .block,
  .pillars,
  .sectors {
    padding: 64px 24px;
  }
  .method {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }
  .method-visual img {
    height: 240px;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .sector-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .pillar-media img {
    height: 180px;
  }
  .pillar-body {
    padding: 28px 26px 34px;
  }
  .area {
    grid-template-columns: 1fr;
  }
  .area-media {
    min-height: 200px;
  }
  .area-rev .area-media {
    order: 0;
  }
  .area-rev .area-text {
    order: 0;
  }
  .area-text {
    padding: 36px 26px;
  }
  .sectors {
    padding: 64px 24px;
  }
  .leone-hero {
    padding: 56px 24px;
  }
  .block,
  .role-section,
  .partners-section {
    padding: 64px 24px;
  }
  .role-grid,
  .goals,
  .partner-list {
    grid-template-columns: 1fr;
  }
  .funding {
    padding: 44px 24px;
  }
  .focus-section {
    padding: 64px 24px;
  }
  .focus-item {
    padding: 32px 26px;
  }
  .numbers {
    grid-template-columns: repeat(2,1fr);
  }
  .legal-hero {
    padding: 48px 24px 40px;
  }
  .legal-body {
    padding: 56px 24px 70px;
  }
}
