/* Palette e Variabili */
:root {
  --brand-main: #0a203f;
  --brand-accent: #6abf5b;
  --brand-light: #e8dbc8;

  --gold: #d4a017;

  --off-white: #fafaf7;
  --charcoal: #2d2d2d;

  --light-blue: #acd9d2;

  --light-blue-alpha: rgba(65, 97, 120, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* Base styles  */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: futura-pt, sans-serif;
  color: var(--brand-main);
  background: var(--off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Focus visibile per accessibilità A11Y */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link A11Y */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand-accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Typography */
@font-face {
  font-family: Sugarpunch;
  src: url(fonts/Sugarpunch.woff2);
}

@font-face {
  font-family: futura-pt;
  font-weight: 500;
  src: url(fonts/futura-light.woff2);
}
@font-face {
  font-family: futura-pt;
  font-weight: 700;
  src: url(fonts/futura-pt.woff2);
}

h1,
h2,
h3,
h4 {
  font-family: Sugarpunch, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

h1 {
  font-size: 5.5rem;
  font-weight: 800;
}
h2 {
  font-size: 3.2rem;
  font-weight: 700;
}
h3 {
  font-size: 2rem;
  font-weight: 700;
}
h4 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

p {
  font-family: futura-pt, sans-serif;
  font-size: 1.08rem;
  line-height: 1.75;
}

.label {
  font-family: Sugarpunch, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
}
.label--light {
  color: var(--off-white);
}
.label--dark {
  color: var(--brand-main);
}
.label--small {
  font-size: 1.1rem;
}
/* Layout  */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-pad {
  padding: 120px 0;
}
.dnone {
  display: none;
}
.icon {
  width: 16px;
  height: 16px;
}

/* Scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--transition),
    transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.7s var(--transition),
    transform 0.7s var(--transition);
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.7s var(--transition),
    transform 0.7s var(--transition);
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Delays */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-main);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-blue-alpha);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px var(--light-blue-alpha);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar__logo-icon {
  max-width: 100%;
  max-height: 42px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding-top: 8px;
}

.navbar__nav a {
  font-family: futura-pt, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.navbar__nav a:hover {
  background: rgba(var(--off-white), 0.12);
}

.navbar__cta {
  background: var(--brand-accent) !important;
  color: var(--brand-main) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-lg) !important;
}
.navbar__cta:hover {
  background: var(--gold) !important;
}

/* hamburger */
.navbar__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.navbar__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero  */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  background: url(images/sfondo_mappa_blu.jpg) repeat fixed;
  position: absolute;
  inset: 0;
}

.hero__container {
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 120px 0 80px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(from var(--brand-accent) r g b / 20%);
  border: 1px solid rgb(from var(--brand-accent) r g b / 40%);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--transition) both;
}
.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.hero__eyebrow span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.hero__title {
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.1s var(--transition) both;
  max-width: 800px;
}
.hero__title em {
  font-style: normal;
  color: var(--brand-accent);
}

.hero__desc {
  font-size: 1.4rem;
  line-height: 1.7em;
  font-weight: 300;
  max-width: 800px;
  margin-bottom: 40px;
  letter-spacing: 1px;
  animation: fadeInUp 1s 0.2s var(--transition) both;
  color: var(--off-white);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 1.1s 0.3s var(--transition) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__stats {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgb(from var(--off-white) r g b / 15%);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  animation: fadeInUp 1.2s 0.5s var(--transition) both;
}
.hero__stat {
  backdrop-filter: blur(4px);
  padding: 24px 28px;
  text-align: center;
}
.hero__stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__stat-value {
  font-family: Sugarpunch, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 600;
}

/* scroll indicator - mouse animation */
.scroll-hint {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 2s 1.5s both;
  z-index: 10;
}
.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}
.scroll-hint__arrow {
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-hint__dot {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  text-decoration: none;
  border: none;
  font-weight: 600;
}
.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}

.btn--accent {
  background: var(--brand-accent);
  color: var(--brand-main);
  box-shadow: 0 4px 20px rgba(46, 125, 79, 0.4);
}
.btn--accent:hover {
  background: var(--gold);
  box-shadow: 0 8px 30px rgba(46, 125, 79, 0.5);
}
.btn--primary {
  background: var(--brand-main);
  color: var(--off-white);
  box-shadow: 0 4px 20px rgba(46, 125, 79, 0.4);
}
.btn--primary:hover {
  background: var(--gold);
  box-shadow: 0 8px 30px rgba(46, 125, 79, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--off-white);
  color: var(--off-white);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Strip  */
.intro-strip {
  background: var(--brand-light);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  color: var(--brand-main);
}
.intro-strip__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.intro-strip__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.intro-strip__logo-mark {
  width: 72px;
  height: 72px;
  background-color: var(--brand-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.intro-strip__text h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.intro-strip__text p {
  font-size: 0.9rem;
  margin: 0;
}
.intro-strip__desc {
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  border-left: 3px solid var(--brand-main);
  padding-left: 24px;
}

/* Pllars */
.pillars {
  background: var(--off-white);
}
.pillars__header {
  text-align: center;
  margin-bottom: 70px;
}
.pillars__header h2 {
  margin-bottom: 16px;
}
.pillars__header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.4rem;
}
.pillars__grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px;
}

.pillar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--radius-lg);
  background: var(--accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pillar-card--blue {
  --fg-color: var(--off-white);
  --accent: var(--brand-main);
}
.pillar-card--light-blue {
  --accent: var(--light-blue);
}
.pillar-card--green {
  --fg-color: var(--off-white);
  --accent: var(--brand-accent);
}
.pillar-card--gold {
  --accent: var(--gold);
}

.pillar-card__no {
  width: 52px;
  height: 52px;
  font-size: 2rem;
  font-family: Sugarpunch;
  color: var(--fg-color, --brand-main);
  background: var(--accent);
  border-radius: var(--radius-md);
  margin-right: 1rem;
  padding: 1rem;
  text-align: center;
}
.pillar-card__title {
  color: var(--brand-main);
  margin-bottom: 12px;
  font-size: 1.3rem;
  display: flex;
  align-items: flex-end;
}
.pillar-card p {
  text-align: justify;
  margin-bottom: 20px;
}
.pillar-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.pillar-card__link:hover {
  gap: 10px;
  text-decoration: none;
}

/* Kpi */
.kpi-bar {
  background: url(images/sfondo_mappa_blu.jpg) repeat fixed;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.kpi-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
}
.kpi-item {
  text-align: center;
  padding: 28px 20px;

  position: relative;
}
.kpi-item:not(:last-child) {
  border-right: 1px solid var(--off-white);
}

.kpi-item__value {
  font-family: Sugarpunch, sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.kpi-item__unit {
  font-size: 0.9rem;
}
.kpi-item__label {
  font-family: futura-pt, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-top: 6px;
  display: block;
  line-height: 1.3;
}

/* Chapters */
.chapter {
  background: var(--bg-color);
}
.chapter--light {
  --bg-color: var(--brand-light);
}
.chapter--light-blue {
  --bg-color: var(--light-blue);
}
.chapter--gold {
  --bg-color: var(--gold);
  color: var(--off-white);
}
.chapter--accent {
  --bg-color: url(images/sfondo_mappa_verde.jpg);
  color: var(--off-white);
}

.chapter__header {
  text-align: center;
  margin-bottom: 2rem;
}
.chapter__subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  gap: 32px;
  margin-bottom: 2rem;
}
.split-section__card {
  background: url(images/sfondo_mappa_blu.jpg) repeat fixed;
  border-radius: var(--radius-md);
  color: var(--off-white);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}
.split-section__card-header {
  margin-bottom: 1rem;
}
.split-section__card-body {
  text-align: justify;
}
.split-section__card-body p:not(:last-child) {
  margin-bottom: 1rem;
}
.split-section__card-body p strong {
  color: var(--gold);
}

/* Barra mission codice e bilancio */
.mcb-bar {
  background: url(images/sfondo_mappa_blu.jpg) repeat fixed;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.mcb-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 18px;
}
.mcb-item {
  padding: 0 1rem;
}
.mcb-item:not(:last-child) {
  border-right: 1px solid var(--brand-main);
}
.mcb-item__title {
  font-size: 1.6rem;
  font-family: Sugarpunch;
  color: var(--gold);
}
.mcb-item__body {
  text-align: justify;
  color: var(--off-white);
  font-size: 1.2rem;
}

/* Economia  */
.economia__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}
.table-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 2rem;
}
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.table-wrapper thead {
  color: var(--off-white);
}
.table__caption {
  font-family: Sugarpunch;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  text-align: left;
  padding: 14px 16px 0;
  background: var(--brand-main);
}

/* Prima card */
.table-wrapper th {
  background: var(--brand-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}
.table-wrapper td {
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--brand-main);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.table-wrapper tr:last-child td {
  border-bottom: none;
}
.table-wrapper tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}
.table-wrapper td:first-child {
  font-weight: 600;
}
tr.highlight td:not(:first-child) {
  color: var(--gold);
  font-weight: 700;
}

/* Card mercati  */

.market-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.market-list__caption {
  font-size: 0.8rem;
  padding: 0 1rem 1rem;
  color: var(--brand-main);
  text-align: center;
}
.market-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.market-item__country {
  width: 80px;
  font-weight: 700;
  color: var(--brand-main);
  text-align: right;
}
.market-item__sales-bar {
  flex: 1;
  height: 8px;
  background: lightgray;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.market-item__sales-bar--fill {
  width: var(--width);
  height: 8px;
  background-color: var(--bg-color);
  border-radius: var(--radius-sm);
}
.market-item__value {
  font-weight: 600;
  color: var(--brand-main);
  width: 60px;
  text-align: right;
  padding-right: 12px;
}

.economia__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eco-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.eco-card__title {
  margin-bottom: 0.5rem;
  color: var(--brand-main);
}
.eco-card__value {
  font-family: Sugarpunch;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.eco-card__desc {
  text-align: justify;
  margin-bottom: 0;
  color: var(--brand-main);
}

/* Feature ambiente grid  */
.feature__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.feature-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 1px 2px 20px 6px rgba(0, 0, 0, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-item__icon {
  width: 40px;
  height: 40px;
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item__body {
  color: var(--brand-main);
}
.feature-item__body p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}

/* Celle ipogee  */
.feature-highlight {
  background-color: var(--brand-main);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%236abf5b' fill-opacity='0.1'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
  padding: 0;
}

.feature-highlight__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 560px;
}

.feature-highlight__text {
  padding: clamp(48px, 7vw, 100px) clamp(32px, 5vw, 80px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-highlight__text {
  color: var(--off-white);
  margin-bottom: 16px;
}
.feature-highlight__text p {
  margin: 1rem 0;
  text-align: justify;
}
.feature-highlight__text strong {
  color: var(--gold);
}

.feature-highlight__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.feature-highlight__visual::before {
  content: "";
  position: absolute;
  inset: 0;
}

.ipogee-infographic {
  position: relative;
  z-index: 2;
  text-align: center;
}
.ipogee-circle {
  width: 220px;
  height: 220px;
  border: 4px solid rgb(from var(--brand-accent) r g b / 80%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
}
.ipogee-circle::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(from var(--brand-accent) r g b / 60%);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.ipogee-circle__value {
  font-family: Sugarpunch;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.ipogee-circle__unit {
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 4px;
}
.ipogee-circle__label {
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-top: 4px;
}

.ipogee-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ipogee-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.ipogee-badge__text {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--off-white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.ipogee-badge__value {
  font-family: Sugarpunch;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

/* Etica e societa  */
.etica__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.etica-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  color: var(--brand-main);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.etica-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.etica-card__value {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: Sugarpunch;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--brand-accent);
}

.etica-card p {
  margin: 0;
  text-align: justify;
}

/* Certificazioni */
.cert-strip {
  background: url(images/sfondo_mappa_blu.jpg) repeat fixed;
  padding: 52px 0;
}
.cert-strip__header {
  text-align: center;
  margin-bottom: 36px;
  color: var(--off-white);
}

.cert-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(from var(--brand-accent) r g b / 80%);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-accent);
}
.cert-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
}

/* Obiettivi  */
.goals__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.goal-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.goal-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.goal-item__year {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--goal-color);
  min-width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--off-white);
  font-family: Sugarpunch;
}
.goal-item--2024 {
  --goal-color: var(--brand-accent);
}
.goal-item--2026 {
  --goal-color: var(--brand-main);
}

.goal-item__body {
  color: var(--brand-main);
}
.goal-item__body p {
  margin: 0;
  line-height: 1.55;
  text-align: justify;
}

/* Download  */
.download__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  color: var(--off-white);
}

.download__text h2 {
  color: var(--brand-main);
  margin-bottom: 20px;
}
.download__text p {
  max-width: 520px;
  margin-bottom: 0;
  text-align: justify;
}
.download__badges {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.download__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download__card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  min-width: 260px;
  backdrop-filter: blur(10px);
  background: var(--off-white);
  max-width: 360px;
  color: var(--brand-main);
}
.download__card h3 {
  color: var(--brand-main);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.download__card p {
  margin-bottom: 24px;
}
.download__card p.disclaimer {
  margin-top: 1rem;
  font-size: 0.8rem;
}
.download__card .btn {
  width: 100%;
  justify-content: center;
}

/* Footer  */
.footer {
  background: var(--brand-main);
  padding: 56px 0 32px;
  color: var(--off-white);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer__col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.footer__col ul {
  list-style: none;
}
.footer__col ul li {
  margin-bottom: 8px;
}
.footer__col ul li a {
  font-size: 0.88rem;
  transition: color 0.2s;
  text-decoration: none;
  color: var(--off-white);
}
.footer__col ul li a:hover {
  color: var(--brand-accent);
  text-decoration: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}
.footer__gri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Media queries */
@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr;
  }
  .feature-highlight__inner {
    grid-template-columns: 1fr;
  }
  .economia__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .feature__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .etica__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kpi-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .kpi-item {
    border: none !important;
  }

  .navbar__nav {
    display: none;
  }
  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--brand-main);
    padding: 20px;
    gap: 12px;
    box-shadow: var(--shadow-lg);
  }
  .navbar__burger {
    display: flex;
  }

  .table-wrapper th {
    border: none !important;
  }
}
@media (max-width: 768px) {
  .hero__container {
    padding: 0 !important;
  }
  .hero__content {
    padding: 80px 60px 0;
  }
  .hero__stats {
    position: static;
    border-radius: 0;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    width: 100%;
  }
  .hero__stat {
    border-radius: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .scroll-hint {
    display: none;
  }
  .intro-strip__logo-mark {
    flex-shrink: 0;
  }
  .intro-strip__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .intro-strip__desc {
    border: none;
  }
  .feature__grid {
    grid-template-columns: 1fr;
  }
  .etica__grid {
    grid-template-columns: 1fr;
  }
  .mcb-bar__grid {
    grid-template-columns: 1fr;
  }
  .download__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .download__text p {
    margin: 0 auto 0;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .kpi-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kpi-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .pillars__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .hero__title {
    font-size: 4rem;
    margin-top: 10px;
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .intro-strip__logo-mark {
    width: 56px;
    height: 56px;
  }
  .economia .economia__grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .kpi-bar__grid {
    grid-template-columns: 1fr;
  }
  .goals__list {
    grid-template-columns: 1fr;
  }
  .reveal-right {
    transform: none;
  }
  .table-wrapper {
    max-width: 90vw;
  }
  .table__caption {
    font-size: 0.7rem;
  }
  .table-wrapper th {
    font-size: 0.7rem;
    letter-spacing: 0;
  }
  .table-wrapper td {
    font-size: 0.7rem;
  }
}
