/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPONENTS — Buttons, cards, badges, etc.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━ BUTTONS ━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  font-family: var(--f-body);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: 1.5px solid transparent;
  letter-spacing: .02em;
}

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

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-dark:hover {
  background: #1e1d3a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(12, 11, 34, .2);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(17, 16, 48, .3);
}

.btn-outline-dark:hover {
  border-color: var(--ink);
  background: rgba(17, 16, 48, .04);
}

.btn-green {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
}

.btn-green:hover {
  background: #6b8c1e;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(90, 117, 24, .3);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

/* ━━━━ HEADER ━━━━ */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), top .2s;
}

/* Offset barra admin WordPress */
.admin-bar .hdr { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .hdr { top: 46px; }
}

.hdr.scrolled {
  padding: 1rem 2.5rem;
  background: rgba(244, 246, 241, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(12, 11, 34, .06);
}

/* Logo: default mostra bianco, nasconde colore */
.hdr-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hdr-logo--white,
.hdr-logo--color,
.hdr-logo-link .custom-logo { /* WP aggiunge .custom-logo al logo caricato */
  height: 52px;
  width: auto;
  display: block;
}

/* Su sfondo scuro (default): logo bianco visibile, logo colore nascosto */
body.hdr-dark .hdr-logo--color,
body.hdr-dark .hdr-logo-link .custom-logo { display: none; }

/* Su sfondo chiaro: logo colore visibile, logo bianco nascosto */
body.hdr-light .hdr-logo--white { display: none; }

/* Quando scrolled su pagine light: già mostra il logo colore */
body.hdr-dark .hdr.scrolled .hdr-logo--white { display: none; }
body.hdr-dark .hdr.scrolled .hdr-logo--color,
body.hdr-dark .hdr.scrolled .hdr-logo-link .custom-logo { display: block; }

.menu-toggle {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .6rem 1rem;
  color: var(--white);
  transition: opacity .2s;
}

/* Header chiaro: burger scuro già da subito */
body.hdr-light .menu-toggle { color: var(--ink); }

.hdr.scrolled .menu-toggle {
  color: var(--ink);
}

.menu-toggle:hover {
  opacity: 1;
}
/* Burger hover: top shrinks right→left, bottom left→right — solo quando nav è chiuso */
body:not(.nav-open) .menu-toggle:hover .burger-lines span:nth-child(1) {
  transform: scaleX(.65);
  transform-origin: right center;
}
body:not(.nav-open) .menu-toggle:hover .burger-lines span:nth-child(3) {
  transform: scaleX(.65);
  transform-origin: left center;
}

.menu-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger-lines span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  transition: all .35s var(--ease);
  transform-origin: center;
}

body.nav-open .burger-lines span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .burger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .burger-lines span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

body.nav-open .menu-label {
  opacity: 0;
}

/* Quando il nav è aperto, l'header sale sopra l'overlay così la X resta cliccabile */
body.nav-open .hdr {
  z-index: 1000;
  background: rgba(10, 9, 30, .88) !important;   /* sfondo scuro fisso, annulla .scrolled */
  backdrop-filter: blur(20px);
}
body.nav-open .hdr .hdr-logo--white {
  display: block !important;
}
body.nav-open .hdr .hdr-logo--color,
body.nav-open .hdr .hdr-logo-link .custom-logo {
  display: none !important;
}
body.nav-open .menu-toggle {
  color: #fff !important;   /* X sempre bianca su sfondo scuro */
}

/* Header light (pagine senza hero scuro): sfondo bianco/trasparente con testo scuro */
body.hdr-light .hdr {
  background: rgba(244, 246, 241, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* Minimal title bar — alternativa all'hero per pagine senza immagine */
.page-title-bar {
  padding: calc(var(--hdr-h, 80px) + 3rem) 0 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-title-bar__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}

@media (max-width: 640px) {
  .hdr { padding: 1.2rem 1.25rem; }
  .page-title-bar { padding: calc(var(--hdr-h, 70px) + 2rem) 0 2rem; }
}

/* ━━━━ NAV OVERLAY ━━━━ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;   /* > .hdr (800) — overlay sempre sopra l'header sticky */
  display: flex;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 9, 22, .97);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}

body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  margin: auto 0;
  padding: 5rem clamp(1.5rem, 4vw, 5rem);
  gap: 3rem;
}

@media (min-width: 860px) {
  .nav-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 320px);
    align-items: center;
    padding-block: clamp(3.5rem, 4vw, 4.5rem);
    gap: clamp(2.5rem, 4vw, 4rem);
  }
}

@media (min-width: 1280px) {
  .nav-inner {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 600px) minmax(300px, 320px);
    gap: clamp(2rem, 3vw, 3.5rem);
    transform: translateX(clamp(0px, 2vw, 2rem));
  }

  .nav-inner > nav { grid-column: 2; }
  .nav-info { grid-column: 3; }

  .nav-info-block { margin-bottom: 1.75rem; }
  .nav-info-block p,
  .nav-info-block a { font-size: .82rem; }
}

.nav-main {
  list-style: none;
}

.nav-main > li {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav-main > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.nav-main > li > a {
  display: flex;
  align-items: center;
  padding: .9rem 0;
  font-family: var(--nav-menu-ff, var(--f-head));
  font-size: var(--nav-menu-fs, clamp(2rem, 4.5vw, 4rem));
  font-weight: var(--nav-menu-fw, 800);
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(115%);
  transition: transform .55s var(--ease-out), opacity .55s var(--ease-out), color .2s;
}

body.nav-open .nav-main > li > a {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open .nav-main > li:nth-child(1) > a { transition-delay: .05s; }
body.nav-open .nav-main > li:nth-child(2) > a { transition-delay: .1s; }
body.nav-open .nav-main > li:nth-child(3) > a { transition-delay: .15s; }
body.nav-open .nav-main > li:nth-child(4) > a { transition-delay: .2s; }
body.nav-open .nav-main > li:nth-child(5) > a { transition-delay: .25s; }
body.nav-open .nav-main > li:nth-child(6) > a { transition-delay: .3s; }
body.nav-open .nav-main > li:nth-child(7) > a { transition-delay: .35s; }

/* Spotlight: JS adds .nav-has-hover on <ul> and .is-hovered on the active <li>.
   transition-delay:0s cancels the stagger delays from the open animation. */
.nav-main.nav-has-hover > li > a {
  opacity: .15;
  transition: opacity .1s;
  transition-delay: 0s;
}

/* Hovered link: ripristina opacity, nessun cambio colore testo */
.nav-main.nav-has-hover > li.is-hovered > a {
  opacity: 1;
  transition: opacity .1s;
  transition-delay: 0s;
}

/* Numero: si illumina al hover */
.nav-main.nav-has-hover > li.is-hovered > a .nav-num {
  color: var(--green);
  opacity: 1;
}

/* Click / pagina corrente: testo verde */
.nav-main > li.is-active > a,
.nav-main > li.current-menu-item > a,
.nav-main > li.current-menu-ancestor > a {
  color: var(--green);
}

.nav-num {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(121, 141, 146, .8);
  letter-spacing: .18em;
  margin-right: 1.2rem;
  font-family: var(--f-body);
  flex-shrink: 0;
  position: relative;
  top: -.1em;
}

.nav-arr {
  margin-left: auto;
  opacity: 0;
  font-size: 1.4rem;
  transition: opacity .1s;
  color: var(--green);
}

.nav-main.nav-has-hover > li.is-hovered > a .nav-arr {
  opacity: 1;
}

.nav-secondary {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 1.5rem;
  padding: 1.2rem 0 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  transition-delay: .33s;
}

body.nav-open .nav-secondary {
  opacity: 1;
  transform: translateY(0);
}

.nav-secondary li {
  position: relative;
  flex: 0 0 auto;
}

.nav-secondary li + li {
  margin-left: clamp(.45rem, 1vw, .75rem);
  padding-left: clamp(.45rem, 1vw, .75rem);
}

.nav-secondary li + li::before {
  content: '\00b7';
  position: absolute;
  left: -.08rem;
  color: rgba(255, 255, 255, .2);
}

.nav-secondary a {
  display: block;
  font-size: clamp(.52rem, 2.2vw, .64rem);
  font-weight: 600;
  letter-spacing: clamp(.08em, .3vw, .14em);
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, .25);
  transition: color .18s;
}

.nav-secondary a:hover,
.nav-secondary a:focus-visible,
.nav-secondary .current-menu-item > a {
  color: #fff;
}

.nav-secondary a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .nav-secondary a {
    transition: none;
  }
}

.nav-info {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s, transform .55s;
  transition-delay: .2s;
}

body.nav-open .nav-info {
  opacity: 1;
  transform: translateY(0);
}

.nav-info-block { margin-bottom: 2rem; }
.nav-info-block:last-child { margin-bottom: 0; }

.nav-info-label {
  display: block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(121, 141, 146, .8);
  margin-bottom: .6rem;
}

.nav-info-block--location .nav-info-label {
  color: var(--green);
}

.nav-info-block p,
.nav-info-block a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  display: block;
}

.nav-info-block a:hover { color: var(--green); }

.nav-lang {
  display: flex;
  gap: .85rem;
  align-items: center;
  margin-top: .35rem;
}

.nav-lang-btn {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .3);
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem .4rem;
  transition: color .2s;
  font-family: var(--f-body);
}

.nav-lang-btn.active { color: #fff; }
.nav-lang-btn:hover { color: var(--green); }
.nav-lang-sep { color: rgba(255, 255, 255, .12); }

.nav-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--green) 40%, transparent);
  opacity: 0;
  transform: scaleY(0);
  transition: opacity .4s, transform .6s;
  transform-origin: center;
}

body.nav-open .nav-accent {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: .38s;
}

/* ━━━━ HERO SLIDER ━━━━ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

/* Ken Burns — zoom in */
.slide-bg--zoom-in { transform: scale(1); }
.swiper-slide-active .slide-bg--zoom-in { transform: scale(1.06); }

/* Ken Burns — pan left (zoom out + drift left) */
.slide-bg--pan-left { transform: scale(1.08) translateX(2.5%); }
.swiper-slide-active .slide-bg--pan-left { transform: scale(1) translateX(-1.5%); }

/* Ken Burns — pan right (zoom out + drift right) */
.slide-bg--pan-right { transform: scale(1.08) translateX(-2.5%); }
.swiper-slide-active .slide-bg--pan-right { transform: scale(1) translateX(1.5%); }

/* Static — no movement */
.slide-bg--static { transform: none !important; transition: none !important; }

.slide-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12, 11, 32, .82) 0%, rgba(12, 11, 32, .55) 55%, rgba(12, 11, 32, .3) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.5rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.slide-service-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.slide-service-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--green);
}

.slide-h {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

.slide-h em {
  color: var(--green);
  font-style: normal;
}

.slide-p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, .72);
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 2rem;
}

.slide-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.slide-service-tag,
.slide-h,
.slide-p,
.slide-cta {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}

.swiper-slide-active .slide-service-tag { opacity: 1; transform: none; transition-delay: .1s; }
.swiper-slide-active .slide-h           { opacity: 1; transform: none; transition-delay: .22s; }
.swiper-slide-active .slide-p           { opacity: 1; transform: none; transition-delay: .34s; }
.swiper-slide-active .slide-cta         { opacity: 1; transform: none; transition-delay: .46s; }

.hero-chrome {
  position: absolute;
  z-index: 10;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.slide-counter {
  font-family: var(--f-head);
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .1em;
  white-space: nowrap;
}

.slide-counter strong {
  color: #fff;
  font-size: 1.1rem;
}

.hero-dots {
  display: flex;
  gap: .55rem;
  align-items: center;
}

.hero-dot {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, .2);
  transition: width .3s var(--ease), background .3s;
  flex-shrink: 0;
}

.hero-dot--active {
  width: 36px;
  background: var(--green);
}

.hero-arrows {
  display: flex;
  gap: .75rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .25s;
  cursor: pointer;
}

.hero-arrow:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-arrow svg {
  width: 16px;
  height: 16px;
}

/* ── Hero cursor ── */

.sin-cursor,
.sin-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 9998;
  will-change: transform, opacity;
  transition: opacity .14s ease, border-color .18s ease, background-color .18s ease;
}

.sin-cursor {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  mix-blend-mode: difference;
}

.sin-cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  z-index: 9999;
}

.sin-cursor.is-active,
.sin-cursor-dot.is-active {
  opacity: 1;
}

.sin-cursor.is-hovering-action {
  transform: scale(1.35);
  border-color: rgba(255,255,255,1);
  background: rgba(255,255,255,.12);
}

.sin-cursor-dot.is-hovering-action {
  transform: scale(1.55);
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body.has-cinematic-cursor .hdr,
  body.has-cinematic-cursor .hdr *,
  body.has-cinematic-cursor .nav-overlay,
  body.has-cinematic-cursor .nav-overlay *,
  body.has-cinematic-cursor .hero,
  body.has-cinematic-cursor .hero *,
  body.has-cinematic-cursor .pg-hero,
  body.has-cinematic-cursor .pg-hero *,
  body.has-cinematic-cursor .svc-hero,
  body.has-cinematic-cursor .svc-hero *,
  body.has-cinematic-cursor .page-main,
  body.has-cinematic-cursor .page-main *,
  body.has-cinematic-cursor .foot,
  body.has-cinematic-cursor .foot * {
    cursor: none !important;
  }

  body.has-cinematic-cursor input,
  body.has-cinematic-cursor textarea,
  body.has-cinematic-cursor select,
  body.has-cinematic-cursor option,
  body.has-cinematic-cursor [contenteditable="true"] {
    cursor: auto !important;
  }
}

@media (max-width: 640px) {
  .slide-content { padding: 0 1.25rem 5rem; }
  .hero-chrome { left: 1.25rem; right: 1.25rem; }
  .hero-arrows { display: none; }
}

/* ━━━━ TRUST STRIP ━━━━ */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0;
}

.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 480px) {
  .trust-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .trust-list { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-right: none;
}

.trust-item:last-child { border-bottom: none; }

@media (min-width: 480px) {
  .trust-item { border-right: 1px solid rgba(255,255,255,.06); border-bottom: none; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.06); border-top: 1px solid rgba(255,255,255,.06); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.06); }
  .trust-item:last-child { border-right: none; border-bottom: none; }
}

@media (min-width: 768px) {
  .trust-item { border-right: 1px solid rgba(255,255,255,.06); border-top: none; border-bottom: none; }
  .trust-item:nth-child(3) { border-top: none; }
  .trust-item:nth-child(4) { border-top: none; }
  .trust-item:last-child { border-right: none; }
}

.trust-icon {
  color: var(--green);
  flex-shrink: 0;
  opacity: .9;
}

.trust-body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.trust-body strong {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.trust-body span {
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  line-height: 1.4;
}

/* ━━━━ ABOUT MANIFESTO ━━━━ */
.about-manifesto {
  background: var(--bg-alt);
}

.am-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.am-header .tag { margin-bottom: 1rem; }

.am-header h2 {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
}

.am-quote {
  border-left: 3px solid var(--green);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 0 0 4rem;
  max-width: 680px;
}

.am-quote p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.am-quote em {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

.am-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .am-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .am-pillars { grid-template-columns: repeat(4, 1fr); }
}

.am-pillar {
  padding: 2.5rem 2rem;
  border-right: none;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.am-pillar:last-child { border-bottom: none; }

@media (min-width: 640px) {
  .am-pillar { border-right: 1px solid var(--border); border-bottom: none; }
  .am-pillar:nth-child(2) { border-right: none; }
  .am-pillar:nth-child(3) { border-right: 1px solid var(--border); }
  .am-pillar:nth-child(odd) { border-bottom: 1px solid var(--border); }
  .am-pillar:last-child { border-right: none; border-bottom: none; }
}

@media (min-width: 768px) {
  .am-pillar { border-right: 1px solid var(--border); border-bottom: none; }
  .am-pillar:nth-child(odd) { border-bottom: none; }
  .am-pillar:last-child { border-right: none; }
}

.am-num {
  font-family: var(--f-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green-d);
}

.am-pillar-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}

.am-pillar-body p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.am-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.am-scroll-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.am-scroll-link:hover { color: var(--ink); }

/* ━━━━ BUSINESS NARRATIVE SECTIONS ━━━━ */
.biz-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.biz-section:nth-child(odd) {
  background: var(--white);
}

.biz-section:nth-child(even) {
  background: var(--bg);
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .biz-grid { grid-template-columns: 1fr 1fr; }
  .biz-section:nth-child(even) .biz-grid { direction: rtl; }
  .biz-section:nth-child(even) .biz-grid > * { direction: ltr; }
}

.biz-photo {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 50px rgba(12, 11, 34, .1);
}

.biz-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.biz-photo:hover img {
  transform: scale(1.03);
}

.biz-text .tag { margin-bottom: .85rem; }

.biz-text h3 {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.biz-text p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.82;
  margin-bottom: 1.5rem;
}

.biz-text .btn {
  margin-top: .5rem;
}

.biz-coming {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 100px;
  background: rgba(82, 101, 112, .08);
  color: var(--teal);
  border: 1px solid rgba(82, 101, 112, .15);
  margin-bottom: .75rem;
}

/* ━━━━ CERTS / LOGO STRIP ━━━━ */
.certs-strip {
  background: var(--bg2);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.4rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  transition: all .22s;
}

.cert-badge:hover {
  border-color: rgba(90, 117, 24, .3);
  box-shadow: 0 4px 16px rgba(90, 117, 24, .08);
}

.cert-badge-num {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-d);
}

.cert-badge-sub {
  font-size: .62rem;
  color: var(--teal);
  letter-spacing: .05em;
}

.cert-badge-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.logo-strip img {
  height: 40px;
  width: auto;
  filter: grayscale(1) opacity(.5);
  transition: filter .3s var(--ease);
}

.logo-strip img:hover {
  filter: grayscale(0) opacity(1);
}

/* ━━━━ CTA SECTION ━━━━ */
.cta-section {
  background: var(--ink);
  padding: 7rem 0;
}

.cta-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-grid { grid-template-columns: 1fr auto; }
}

.cta-section h2 {
  font-family: var(--f-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-section h2 em {
  color: var(--green);
  font-style: normal;
}

.cta-section p {
  color: rgba(255, 255, 255, .5);
  max-width: 460px;
  line-height: 1.8;
  font-size: .92rem;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-width: 240px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
}

.contact-row svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-row a { color: var(--green); }

@media (max-width: 640px) {
  .cta-section { padding: 5rem 0; }
}

/* ━━━━ FOOTER ━━━━ */
.foot {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 4.5rem 0 2.5rem;
}

.foot-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px)  { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.foot-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
}

.foot-brand p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .35);
  line-height: 1.78;
  max-width: 260px;
}

.foot-col h5 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(121, 141, 146, .7);
  margin-bottom: 1.25rem;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  /* reset stili default wp-block-list */
  padding-inline-start: 0 !important;
  margin-block-start: 0;
  margin-block-end: 0;
}

.foot-links li {
  list-style: none; /* override wp_nav_menu bullets */
}

.foot-links a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .35);
  transition: color .2s;
  text-decoration: none;
}

.foot-links a:hover { color: var(--green); }

/* voce corrente leggermente più visibile */
.foot-links .current-menu-item > a,
.foot-links .current_page_item > a { color: rgba(255,255,255,.65); }

.foot-contact p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .35);
  line-height: 1.85;
}

.foot-contact a { color: rgba(179, 212, 104, .8); }

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
}

.foot-bottom a {
  color: rgba(255, 255, 255, .35);
  transition: color .2s;
}

.foot-bottom a:hover { color: var(--green); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TIMELINE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS FLOW
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.process-section {
  background: var(--ink);
  padding: 8rem 0;
}

.process-header {
  margin-bottom: 5rem;
}

.process-header .tag {
  color: var(--green);
  margin-bottom: 1rem;
}

.process-header h2 {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin: 0;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* Step track: node circle + connecting line */
.process-step__track {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.process-step__node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 221, 46, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  background: rgba(168, 221, 46, .04);
  transition: border-color .3s, background .3s;
}

.process-step:hover .process-step__node {
  border-color: var(--green);
  background: rgba(168, 221, 46, .1);
}

.process-step__node--active {
  border-color: var(--green) !important;
  background: rgba(168, 221, 46, .12) !important;
}

.process-step__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin-left: 1rem;
}

.process-step--last .process-step__track {
  /* last step has no connecting line */
}

/* Step body */
.process-step__body {
  padding-right: 2rem;
}

.process-step--last .process-step__body {
  padding-right: 0;
}

.process-step__num {
  display: block;
  font-family: var(--f-head);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(168, 221, 46, .5);
  margin-bottom: .75rem;
}

.process-step:hover .process-step__num {
  color: var(--green);
}

.process-step__body h3 {
  font-family: var(--f-head);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .65rem;
  line-height: 1.3;
}

.process-step__body p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.78;
  margin: 0;
  transition: color .3s;
}

.process-step:hover .process-step__body p {
  color: rgba(255, 255, 255, .65);
}

/* Mobile: vertical stack */
@media (max-width: 900px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 1.5rem;
    margin-bottom: 2.5rem;
  }

  .process-step:last-child { margin-bottom: 0; }

  .process-step__track {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  .process-step__line {
    flex: none;
    width: 1px;
    height: 100%;
    margin-left: 0;
    margin-top: .75rem;
  }

  .process-step--last .process-step__track {
    justify-content: flex-start;
  }

  .process-step__body {
    padding-right: 0;
    padding-bottom: 2rem;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPLIANCE TEASER (homepage)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.compliance-teaser { background: var(--bg); }

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .compliance-grid { grid-template-columns: repeat(4, 1fr); }
}

.compliance-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}

.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.compliance-icon {
  color: var(--green);
  margin-bottom: 1.25rem;
}

.compliance-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.compliance-card p {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.compliance-link {
  font-size: .825rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}

.compliance-link:hover { gap: .6rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADER (shared)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-top: .75rem;
  margin-bottom: 0;
}

.section-lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE PAGE (page-servizio)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Page Hero */
.svc-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--ink);
}

.svc-hero--compact {
  min-height: 40vh;
  padding-bottom: 3.5rem;
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}

/* Fallback gradient when no image and no video */
.svc-hero__bg--fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c0b22 0%, #1a2035 100%);
}

/* Video background — hero pagine interne */
.svc-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}

/* Video background — hero slider homepage */
.slide-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.svc-hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, rgba(16,17,26,.4) 60%, transparent 100%);
  z-index: 1;
}

.svc-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.svc-breadcrumb {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.svc-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.svc-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0;
}

/* Intro split */
.svc-intro__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 860px) {
  .svc-intro__grid { grid-template-columns: 1fr 1fr; }
}

.svc-intro__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Service cards grid */
.svc-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .svc-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.svc-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.svc-card__icon {
  color: var(--green);
  margin-bottom: 1.25rem;
}

.svc-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.svc-card__desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Photo banner */
.svc-banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.svc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Process steps */
.svc-steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: steps;
}

@media (min-width: 860px) {
  .svc-steps { grid-template-columns: repeat(2, 1fr); }
}

.svc-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.svc-step__num {
  font-family: var(--f-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green);
  opacity: .5;
  line-height: 1;
  flex-shrink: 0;
}

.svc-step__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.svc-step__body p {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* Cert / Logo strip */
.cert-logos-section { background: var(--bg-alt); }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.logo-item {
  flex: 0 0 auto;
}

.logo-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter .3s var(--ease);
}

.logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* Wrap narrow */
.wrap--narrow {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPLIANCE LAYOUT (sidebar TOC)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.compliance-grid-layout {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .compliance-grid-layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.compliance-toc {
  display: none;
}

@media (min-width: 1024px) {
  .compliance-toc {
    display: block;
    position: sticky;
    top: 6rem;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
  }
}

.toc-inner { padding: 1.5rem; background: var(--bg-alt); border: 1px solid var(--border); }

.toc-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-item { margin-bottom: .4rem; }

.toc-item a {
  font-size: .825rem;
  color: var(--dim);
  text-decoration: none;
  display: block;
  padding: .25rem 0;
  border-left: 2px solid transparent;
  padding-left: .75rem;
  transition: color .2s, border-color .2s;
  line-height: 1.4;
}

.toc-item a:hover,
.toc-item a.is-active {
  color: var(--green-dark);
  border-left-color: var(--green);
}

.toc-item--h3 a { padding-left: 1.5rem; font-size: .8rem; }

/* Compliance content rich text */
.compliance-content h2 {
  font-size: 1.6rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.compliance-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.compliance-content h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  color: var(--ink-light);
}

.compliance-content p,
.compliance-content li {
  font-size: .975rem;
  line-height: 1.8;
  color: var(--muted);
}

.compliance-content ul,
.compliance-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }

.compliance-content li { margin-bottom: .4rem; }

.compliance-content blockquote {
  border-left: 3px solid var(--green);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--ink-light);
  font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CODICE ETICO PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.etico-hero {
  background: var(--ink);
  padding: 7rem 0 5rem;
  overflow: hidden;
  position: relative;
}

.etico-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .etico-hero__grid { grid-template-columns: 1fr 1fr; }
}

.etico-hero__text { color: #fff; }

.etico-hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: .75rem 0 1.5rem;
}

.etico-hero__lead {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Geometric decorative */
.etico-geo {
  position: relative;
  width: 320px;
  height: 320px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.etico-geo__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(179, 212, 104, .15);
  animation: geoRotate 20s linear infinite;
}

.etico-geo__ring--1 { width: 100%; height: 100%; }
.etico-geo__ring--2 { width: 70%; height: 70%; border-color: rgba(179, 212, 104, .25); animation-duration: 15s; animation-direction: reverse; }
.etico-geo__ring--3 { width: 40%; height: 40%; border-color: rgba(179, 212, 104, .4); animation-duration: 10s; }

.etico-geo__icon {
  position: relative;
  z-index: 1;
  background: rgba(179, 212, 104, .08);
  border: 1px solid rgba(179, 212, 104, .3);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes geoRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .etico-geo__ring { animation: none; }
}

/* Intro quote */
.etico-intro { background: var(--bg-alt); }

.etico-quote {
  border-left: 3px solid var(--green);
  padding-left: 2rem;
  margin: 0;
}

.etico-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.75;
  margin: 0;
}

/* Principi grid */
.principi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

@media (min-width: 860px) {
  .principi-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .principi-grid { grid-template-columns: 1fr; }
}

.principio-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  overflow: hidden;
}

.principio-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.principio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.principio-card:hover::before { transform: scaleX(1); }

.principio-num {
  font-family: var(--f-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.principio-icon {
  color: var(--green);
  margin-bottom: 1.25rem;
}

.principio-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.principio-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Whistleblowing box */
.whistleblowing-section { background: var(--bg-alt); }

.wb-box {
  background: var(--ink);
  padding: 3rem 2.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .wb-box { grid-template-columns: auto 1fr auto; gap: 2.5rem; }
}

.wb-box__icon { color: var(--green); flex-shrink: 0; }

.wb-box__text h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.wb-box__text p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (simple pages)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.page-hero--simple {
  background: var(--ink);
  padding: 7rem 0 3.5rem;
}

.page-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
}

.page-desc {
  color: rgba(255,255,255,.6);
  margin: 1rem 0 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   POSTS GRID (archive / search)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

.post-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.post-card__thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
}

.post-card:hover .post-card__thumb img { opacity: .85; }

.post-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__date {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .05em;
  margin-bottom: .75rem;
  display: block;
}

.post-card__title {
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.post-card__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}

.post-card__title a:hover { color: var(--green-dark); }

.post-card__excerpt {
  font-size: .875rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

.pagination {
  margin-top: 3rem;
  display: flex;
  gap: .5rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BIZ LIST (homepage business lines)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.biz-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 2rem;
}

.biz-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--muted);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}

.biz-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* tag--light variant */
.tag--light {
  background: rgba(179, 212, 104, .15);
  color: var(--green-dark);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SLIDE TAG
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.slide-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE MAIN WRAPPER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-main {
  min-height: 60vh;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PG-HERO — template part unificato (full + compact)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Base comune ── */
.pg-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.pg-hero__bg {
  position: absolute;
  inset: 0;
}
.pg-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.pg-hero__bg--fallback {
  background: linear-gradient(135deg, #0c0b22 0%, #0c1a1c 60%, #071a0c 100%);
}

.pg-hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(12,11,34,.25) 0%,
    rgba(12,11,34,.50) 45%,
    rgba(12,11,34,.88) 100%);
}

.pg-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.pg-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Badge tag */
.pg-hero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .6rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(168,221,46,.35);
  background: rgba(168,221,46,.07);
  padding: .3rem .85rem;
  border-radius: 100px;
  width: fit-content;
}
.pg-hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Titolo */
.pg-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
  margin: 0;
  max-width: 720px;
}

/* Sottotitolo */
.pg-hero__sub {
  color: rgba(255,255,255,.62);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

/* ── FULL: schermo intero ── */
.pg-hero--full {
  height: 100vh;
  min-height: 580px;
  align-items: flex-end;
}
.pg-hero--full .pg-hero__content {
  padding-bottom: 5rem;
}

/* Indicatore scroll (solo full) */
.pg-hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .55rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  z-index: 2;
}
.pg-hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(168,221,46,.6), transparent);
  animation: pgHeroScroll 1.8s ease-in-out infinite;
}
@keyframes pgHeroScroll {
  0%, 100% { transform: scaleY(1);   opacity: 1; }
  50%       { transform: scaleY(.5); opacity: .4; }
}

/* ── COMPACT: altezza fissa, si vede sotto l'header sticky ── */
.pg-hero--compact {
  height: clamp(340px, 42vh, 480px);
  align-items: flex-end;
}
.pg-hero--compact .pg-hero__ov {
  /* overlay leggermente più scuro in basso per leggibilità su altezza ridotta */
  background: linear-gradient(to bottom,
    rgba(12,11,34,.35) 0%,
    rgba(12,11,34,.60) 40%,
    rgba(12,11,34,.92) 100%);
}
.pg-hero--compact .pg-hero__content {
  padding-bottom: 3rem;
}
.pg-hero--compact .pg-hero__title {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
}

/* CTA link "Scopri ↓" nel compact */
.pg-hero__cta {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
  margin-top: .25rem;
}
.pg-hero__cta:hover { color: var(--green); }
.pg-hero__cta svg { transition: transform .2s; }
.pg-hero__cta:hover svg { transform: translateY(3px); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .pg-hero--full  { min-height: 100svh; }
  .pg-hero__inner { padding: 0 1.25rem; gap: .85rem; }
  .pg-hero__scroll { display: none; }
  .pg-hero--compact { height: clamp(280px, 50vw, 360px); }
  .pg-hero--compact .pg-hero__content { padding-bottom: 2rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (base)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  background: var(--ink);
  padding: 7rem 0 3.5rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SINGLE POST
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.article-single {}

.article-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
}

.article-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.article-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
  color: #fff;
}

.article-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.article-meta {
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.article-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 720px;
}

.article-body h2, .article-body h3 { margin-top: 2.5rem; margin-bottom: .75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { margin-bottom: .35rem; }
.article-body img { border-radius: 2px; margin: 1.5rem 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SVC INTRO / PROCESS (service pages)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.svc-intro { background: var(--white); }
.svc-intro--alt,
.svc-intro-alt { background: var(--bg); }
.svc-process {}
.svc-cards-section {}

/* Intro tags (tech badges) */
.svc-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
}

.svc-tag-item {
  display: inline-flex;
  align-items: center;
  padding: .3rem .85rem;
  border: 1px solid var(--border);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-alt);
}

/* Featured card variant (GWO courses) */
.svc-card--featured {
  border-color: rgba(168, 221, 46, .35);
  background: linear-gradient(135deg, rgba(168, 221, 46, .04) 0%, var(--white) 70%);
  position: relative;
}

.svc-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-d);
  border: 1px solid rgba(168, 221, 46, .4);
  padding: .2rem .55rem;
}

/* OEM list (wind page) */
.oem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.oem-item {
  padding: .8rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}

.oem-item:hover {
  border-color: var(--green);
  color: var(--green-d);
}

/* DPI norms bar */
.dpi-norms-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.dpi-norms-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
}

.dpi-norms-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.dpi-norm {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  padding: .3rem .8rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT / CHI SIAMO PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(168, 221, 46, .07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(82, 101, 111, .15) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-hero .tag { color: var(--green); margin-bottom: 1.25rem; display: block; }

.about-hero__title {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin: 0;
}

/* Manifesto section */
.about-manifesto-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-manifesto-grid { grid-template-columns: 1fr 320px; }
}

.about-manifesto-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.about-manifesto-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.about-stat {
  background: var(--white);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.about-stat strong {
  font-family: var(--f-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-d);
  line-height: 1;
}

.about-stat span {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Values grid */
.about-values-section { background: var(--bg-alt); }

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-values-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value-icon {
  color: var(--green);
  margin-bottom: 1.25rem;
}

.about-value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .6rem;
}

.about-value-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Services grid (about page) */
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .about-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-services-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-svc-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
  position: relative;
}

.about-svc-card:hover {
  background: var(--ink);
  color: #fff;
}

.about-svc-card:hover .about-svc-arrow {
  transform: translateX(6px);
  color: var(--green);
}

.about-svc-card:hover p { color: rgba(255,255,255,.55); }

.about-svc-num {
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green-d);
  transition: color .2s;
}

.about-svc-card:hover .about-svc-num { color: var(--green); }

.about-svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.about-svc-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin: 0;
  transition: color .2s;
}

.about-svc-arrow {
  font-size: 1.2rem;
  color: var(--green-d);
  transition: transform .2s, color .2s;
  align-self: flex-start;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CERTIFICAZIONI PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cert-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.cert-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(168, 221, 46, .06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(82, 101, 111, .12) 0%, transparent 60%);
  pointer-events: none;
}

.cert-hero__inner {
  position: relative;
  z-index: 1;
}

.cert-hero .tag { color: var(--green); margin-bottom: 1.25rem; display: block; }

.cert-hero__title {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 1.5rem;
}

.cert-hero__lead {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.75;
  margin: 0;
}

/* Standards grid */
.cert-standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .cert-standards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .cert-standards-grid { grid-template-columns: repeat(3, 1fr); }
}

.cert-standard-card {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}

.cert-standard-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(168, 221, 46, .4);
}

.cert-standard-card--accent {
  border-color: rgba(168, 221, 46, .3);
  background: linear-gradient(135deg, rgba(168, 221, 46, .04) 0%, var(--white) 60%);
}

.cert-standard-card__badge {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.cert-badge-label {
  font-family: var(--f-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-d);
}

.cert-badge-num {
  font-family: var(--f-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.cert-standard-card__badge--gwo .cert-badge-label {
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: var(--ink);
  font-weight: 800;
}

.cert-badge-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-d);
}

.cert-standard-card__body {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.cert-standard-card__year {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}

.cert-standard-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.cert-standard-card__body p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Numbers bar */
.cert-numbers-bar {
  background: var(--ink);
  padding: 3.5rem 0;
}

.cert-numbers-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 480px) {
  .cert-numbers-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .cert-numbers-list { grid-template-columns: repeat(4, 1fr); }
}

.cert-number-item {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

@media (min-width: 480px) {
  .cert-number-item { border-right: 1px solid rgba(255,255,255,.06); border-bottom: none; }
  .cert-number-item:nth-child(2) { border-right: none; }
  .cert-number-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.06); border-top: 1px solid rgba(255,255,255,.06); }
  .cert-number-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.06); border-right: none; }
}

@media (min-width: 860px) {
  .cert-number-item { border-right: 1px solid rgba(255,255,255,.06); border-top: none; }
  .cert-number-item:last-child { border-right: none; }
}

.cert-number-item strong {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.cert-number-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}

/* Ente certificatore note */
.cert-ente { background: var(--bg-alt); }

.cert-ente__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 3rem;
  border: 1px solid var(--border);
  background: var(--white);
}

@media (min-width: 860px) {
  .cert-ente__inner {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.cert-ente__icon {
  color: var(--green);
  flex-shrink: 0;
}

.cert-ente__text { flex: 1; }

.cert-ente__text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}

.cert-ente__text p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.cert-ente__action { flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 0;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(168, 221, 46, .07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(82, 101, 111, .14) 0%, transparent 55%);
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
}

.contact-hero .tag { color: var(--green); margin-bottom: 1.25rem; display: block; }

.contact-hero__title {
  font-family: var(--f-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  margin: 0 0 1.5rem;
}

.contact-hero__lead {
  color: rgba(255,255,255,.5);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.75;
  margin: 0 0 3.5rem;
}

.contact-hero__channels {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contact-hero__channels { flex-direction: row; }
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
  flex: 1;
}

@media (min-width: 768px) {
  .contact-channel { min-width: 0; }
}

a.contact-channel:hover { background: rgba(255,255,255,.04); }

.contact-channel__icon {
  color: var(--green);
  flex-shrink: 0;
  opacity: .9;
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.contact-channel__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.contact-channel__value {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

/* Contact main grid */
.contact-grid {
  display: grid;
  gap: 5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Contact info */
.contact-info__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
}

.contact-info__block {
  margin-bottom: 2.5rem;
}

.contact-info__block p {
  color: var(--muted);
  line-height: 1.8;
}

/* Use cases */
.contact-usecases {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 2rem;
}

.contact-usecase {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-usecase__icon {
  color: var(--green-d);
  flex-shrink: 0;
  margin-top: .15rem;
}

.contact-usecase strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem;
}

.contact-usecase p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Response time badge */
.contact-response-time {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: .65rem 1.1rem;
}

.contact-response-time svg { color: var(--green-d); flex-shrink: 0; }
.contact-response-time strong { color: var(--ink); }

/* Form wrapper */
.contact-form-wrap {
  position: sticky;
  top: 7rem;
}

.contact-form-inner {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-title {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

/* Fluent Forms reset — match design system */
.contact-form-inner .ff-el-input--label label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form-inner .ff-el-form-control,
.contact-form-inner select,
.contact-form-inner textarea {
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  transition: border-color .15s;
  width: 100%;
}

.contact-form-inner .ff-el-form-control:focus,
.contact-form-inner select:focus,
.contact-form-inner textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.contact-form-inner .ff_submit_btn_wrapper .ff-btn-submit {
  background: var(--green) !important;
  color: var(--ink) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--f-body) !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  padding: .9rem 2rem !important;
  cursor: pointer !important;
  transition: background .2s, transform .15s !important;
  width: 100% !important;
}

.contact-form-inner .ff_submit_btn_wrapper .ff-btn-submit:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px) !important;
}

/* What happens next */
.contact-next { background: var(--ink); }

.contact-next .section-header .tag { color: var(--green); }
.contact-next .section-header h2 { color: #fff; }

.contact-next-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .contact-next-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .contact-next-steps { grid-template-columns: repeat(4, 1fr); }
}

.contact-next-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}

@media (min-width: 1024px) {
  .contact-next-step { border-bottom: none; }
  .contact-next-step:last-child { border-right: none; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact-next-step:nth-child(2) { border-right: none; }
  .contact-next-step:nth-child(3) { border-right: 1px solid rgba(255,255,255,.06); }
  .contact-next-step:nth-child(3),
  .contact-next-step:nth-child(4) { border-bottom: none; }
}

.contact-next-step__num {
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: block;
}

.contact-next-step__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .65rem;
}

.contact-next-step__body p {
  font-size: .85rem;
  color: rgba(255,255,255,.38);
  line-height: 1.78;
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOCK PATTERNS — Stili per blocchi nativi WP
   usati nelle sezioni editabili delle pagine
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Area editabile: reset per blocchi standard */
.page-editable-content > * + * { margin-top: 0; }

/* wp:media-text dentro svc-intro */
.svc-intro .wp-block-media-text,
.page-editable-content .wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin: 0;
}

@media (min-width: 860px) {
  .svc-intro .wp-block-media-text,
  .page-editable-content .svc-intro__mt {
    grid-template-columns: 1fr 1fr;
  }
}

.svc-intro .wp-block-media-text__content,
.page-editable-content .wp-block-media-text__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-intro .wp-block-media-text__content h2,
.page-editable-content .wp-block-media-text__content h2 {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}

.svc-intro .wp-block-media-text__content p,
.page-editable-content .wp-block-media-text__content p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.svc-intro .wp-block-media-text__media,
.page-editable-content .wp-block-media-text__media {
  margin: 0;
}

.svc-intro .wp-block-media-text__media img,
.page-editable-content .wp-block-media-text__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* wp:group come .section e .wrap */
.page-editable-content .wp-block-group.section {
  padding: 8rem 0;
}

.page-editable-content .wp-block-group.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 640px) {
  .page-editable-content .wp-block-group.wrap { padding: 0 1.25rem; }
  .page-editable-content .wp-block-group.section { padding: 5rem 0; }
}

/* wp:columns per about-manifesto-grid */
.page-editable-content .wp-block-columns.about-manifesto-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .page-editable-content .wp-block-columns.about-manifesto-grid {
    grid-template-columns: 1fr 320px;
  }
}

.page-editable-content .wp-block-column.about-manifesto-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: .5rem;
}

.page-editable-content .wp-block-column.about-manifesto-text p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

/* wp:group come section-header */
.page-editable-content .wp-block-group.section-header {
  margin-bottom: 3rem;
}

/* Normalizza margini blocchi dentro content area */
.page-editable-content .wp-block-heading { margin: 0; }
.page-editable-content .wp-block-paragraph { margin: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FSE FULL-WIDTH OVERRIDE
   Rimuove i vincoli di larghezza generati da WP
   quando useRootPaddingAwareAlignments è attivo.
   Il padding è gestito internamente da .wrap.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wp-block-post-content,
.wp-block-post-content.is-layout-flow,
.wp-block-post-content.is-layout-constrained {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.has-global-padding > .wp-site-blocks,
.has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ━━━━ STAT BAR ━━━━ */
.stat-bar {
  background: var(--ink);
  padding: 3rem 0;
}
.stat-bar__grid {
  gap: 0 !important;
}
.stat-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  gap: 0 1rem;
  align-items: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}
.stat-item__icon {
  flex-shrink: 0;
  color: var(--green);
  margin-top: .15rem;
}
.stat-item__text { flex: 1; }
.stat-item__val {  /* wp:heading h3 */
  grid-column: 2;
  grid-row: 1;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .25rem;
  line-height: 1.2;
  white-space: nowrap;
}
.stat-item__label { /* wp:paragraph */
  grid-column: 2;
  grid-row: 2;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .stat-bar__grid { flex-direction: column !important; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
}

/* ━━━━ TIMELINE ━━━━ */
.timeline-section {
  background: var(--ink);
  padding: 5rem 0;
}
.timeline-section .section-header h2,
.timeline-section .section-header .wp-block-heading { color: #fff; }
.timeline-section .section-header .tag { color: var(--green); }
.timeline {
  margin-top: 3rem;
}
.timeline__track {
  position: relative;
  gap: 0 !important;
  align-items: flex-start;
}
/* linea orizzontale allineata al centro dei dot (10px → top: 5px) */
.timeline__track::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(163,221,46,.2);
  z-index: 0;
}
.timeline__step {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* dot sul nodo della linea */
.timeline__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(163,221,46,.15);
  z-index: 2;
}
.timeline__num { /* wp:paragraph */
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green);
  margin: 0 0 .6rem !important;
  opacity: .7;
}
.timeline__title { /* wp:heading h3 */
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .6rem !important;
  line-height: 1.3;
}
.timeline__desc { /* wp:paragraph */
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0 !important;
  line-height: 1.6;
}
@media (max-width: 860px) {
  .timeline__track { flex-direction: column !important; }
  .timeline__track::before { display: none; }
  .timeline__step { flex-direction: row; align-items: flex-start; gap: 1.25rem; padding: 1.25rem 0 1.25rem 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .timeline__step::before { top: 1.25rem; left: 0; transform: none; }
  .timeline__step:last-child { border-bottom: none; }
}

/* ━━━━ COMPLIANCE CARDS ━━━━ */
.compliance-section {
  background: var(--bg);
  padding: 5rem 0;
}
.compliance-cards-grid {
  gap: 1rem !important;
  flex-wrap: wrap !important;
}
.compliance-cards-grid > .wp-block-column {
  flex: 0 0 calc(25% - 0.75rem) !important;
  max-width: calc(25% - 0.75rem) !important;
  min-width: 0 !important;
}
@media (max-width: 780px) {
  .compliance-cards-grid > .wp-block-column {
    flex: 0 0 calc(50% - 0.5rem) !important;
    max-width: calc(50% - 0.5rem) !important;
  }
}
@media (max-width: 520px) {
  .compliance-cards-grid > .wp-block-column {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
.compliance-card {
  background: var(--surface, #e8ebe4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.compliance-card__icon {
  color: var(--green);
  margin-bottom: .25rem;
}
.compliance-card .wp-block-heading { /* titolo */
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.compliance-card .wp-block-paragraph { /* desc */
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
.compliance-card__link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: .03em;
  margin-top: .5rem;
}
.compliance-card__link:hover { text-decoration: underline; }

/* ━━━━ ABOUT INTRO ━━━━ */
.about-intro-section {
  background: var(--bg);
  padding: 5rem 0 4rem;
}
.about-manifesto-quote {
  border-left: 3px solid var(--green);
  padding-left: 1.5rem;
  margin: 2rem 0 3rem;
  max-width: 680px;
}
.about-manifesto-quote .wp-block-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-light, #4a5568);
  margin: 0;
}
.about-svc-grid {
  gap: 0 !important;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.about-svc-card {
  padding: 1.75rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.about-svc-card:last-child { border-right: none; }
.about-svc-num { /* wp:paragraph */
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green);
  margin: 0 0 .25rem !important;
}
.about-svc-card .wp-block-heading {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.about-svc-card .wp-block-paragraph {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .about-svc-grid { flex-direction: column !important; }
  .about-svc-card { border-right: none; border-bottom: 1px solid var(--border); }
  .about-svc-card:last-child { border-bottom: none; }
}

/* Tag label come wp:paragraph — WP aggiunge .wp-block-paragraph */
p.tag, .wp-block-paragraph.tag {
  display: inline-block;
  /* eredita gli stili .tag esistenti */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHI SIAMO — home page, corporate editorial layout
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Centro il wrap editoriale */
.about-intro-section .wrap {
  max-width: 860px;
}

/* Heading principale più impattante */
.about-intro-section > .wp-block-group > .wp-block-heading,
.about-intro-section .wrap > .wp-block-heading {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0;
}

/* Corpo testo */
.about-intro-section .wrap > .wp-block-paragraph:not(.tag) {
  font-size: 1rem;
  color: var(--ink);
  opacity: .7;
  line-height: 1.75;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* ── Tre pillars ── */
.chi-siamo__pillars.wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin-top: 3rem !important;
  padding-top: 0;
}
.chi-siamo__pillar.wp-block-column {
  padding: 0 2rem 0 0;
  border-top: 2px solid var(--green);
  padding-top: 1.25rem;
  margin-right: 2rem;
  flex: unset !important;
  min-width: unset !important;
}
.chi-siamo__pillar.wp-block-column:last-child {
  padding-right: 0;
  margin-right: 0;
}
/* Icone via CSS ::before (stroke SVG — stesso stile del tema) */
.chi-siamo__pillar::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background: center/contain no-repeat;
  margin-bottom: .85rem;
}
/* 1 — Wrench: indipendenza OEM */
.chi-siamo__pillar:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* 2 — Clock: presidio H24 */
.chi-siamo__pillar:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M12 6v6l4 2' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* 3 — Award: certificazione GWO */
.chi-siamo__pillar:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='8' r='6' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M15.5 14.5L17 22l-5-3-5 3 1.5-7.5' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.chi-siamo__pillar .wp-block-heading {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 .45rem !important;
}
.chi-siamo__pillar .wp-block-paragraph {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 !important;
}

/* CTA dopo i pillars */
.about-intro-section .wrap > .wp-block-buttons {
  margin-top: 2.75rem !important;
}

@media (max-width: 640px) {
  .about-intro-section .wrap { max-width: 100%; }
  .chi-siamo__pillars.wp-block-columns {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }
  .chi-siamo__pillar.wp-block-column {
    padding-right: 0;
    margin-right: 0;
    border-top: 2px solid var(--green);
    border-left: none;
  }
}

/* ━━━━ SERVICE SECTION HEADER ("Le nostre linee di business") ━━━━ */
.svc-header-section {
  background: var(--white);
  padding: 5rem 0 3.5rem;     /* padding-bottom contiene il margin dell'heading ed evita margin-collapse */
  border-top: 1px solid var(--border);  /* netto stacco da Chi siamo */
}
.svc-header-section .wp-block-group.wrap {
  max-width: 1600px;           /* allineato alle sezioni servizio */
}
.svc-header-section .wp-block-paragraph.tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}
.svc-header-section .wp-block-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-top: 0;
  margin-bottom: 0;           /* rimosso: lo spacing lo gestisce il padding-bottom della sezione */
  color: var(--ink);
}

/* svc-intro con wp:columns (fix da wp:media-text) */
.svc-intro__grid {
  gap: 4rem !important;
  align-items: center;
}
.svc-intro__grid.is-stacked-on-mobile {
  flex-wrap: wrap;
}
/* ── Wide sections: stretch wrap beyond default 1280px ── */
.svc-intro .wrap {
  max-width: 1600px;
}
/* ── Equal columns, both wide ── */
@media (min-width: 860px) {
  .svc-intro .svc-intro__grid { grid-template-columns: 1fr 1fr; }
}
.svc-intro__media {
  position: relative;
  background-color: transparent !important;
}
/* Cornice di accento: corta e decisa, come controforma della foto. */
.svc-intro__media::after {
  content: '';
  position: absolute;
  bottom: -1.7rem;
  right: -2rem;
  width: 58%;
  height: 56%;
  border: 2px solid var(--green);
  border-radius: 0;
  opacity: .72;
  pointer-events: none;
  z-index: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.svc-intro__media .wp-block-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: transparent !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
/* Il blocco Immagine applica il radius al solo img: questa variante preserva
   il ritaglio durante lo zoom della foto con soli angoli superiori arrotondati. */
.svc-intro__media .wp-block-image:has(> img[style*="border-bottom-left-radius:0px"][style*="border-bottom-right-radius:0px"]) {
  border-radius: 30px 30px 0 0;
}
.svc-intro__media .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: transparent !important;
  transition: transform .45s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .svc-intro__media .wp-block-image:hover img {
    transform: scale(1.04);
  }
  .svc-intro__media:hover::after {
    transform: translate(.28rem, .22rem);
    opacity: .9;
  }
}
.svc-intro__content .tag { margin-bottom: .75rem; }
.svc-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.svc-intro__tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
}
@media (max-width: 768px) {
  .svc-intro__grid { flex-direction: column !important; }
  .svc-intro__media .wp-block-image { aspect-ratio: 16 / 9; }
}

.page-editable-content figure { margin: 0; }

/* CTA section buttons layout */
.cta-section .wp-block-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}
.cta-section .cta-actions .wp-block-buttons {
  flex-direction: column;
}

/* ── CTA: link testo secondario (es. "Chi siamo →") ── */
.cta-text-link-p {
  margin: 0 !important;
  padding: 0 !important;
}
.cta-text-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}
.cta-text-link:hover { color: rgba(255, 255, 255, .85); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CSS-ONLY ICONS — SVG via ::before
   Replaces wp:html SVG blocks (stripped by
   wp_kses_post). Icons appear via CSS only.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Stat bar icons ── */
.stat-item::before {
  content: '';
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: center/contain no-repeat;
  margin-top: .15rem;
  display: block;
}
/* 1 — shield */
.stat-item:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M14 3L4 7.5v9C4 22.5 8.5 27 14 28c5.5-1 10-5.5 10-11.5v-9L14 3z' stroke='%23a8dd2e' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M9 14l4 4 6-6' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* 2 — clock */
.stat-item:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Ccircle cx='14' cy='14' r='11' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M14 8v6l4 2' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* 3 — certificate */
.stat-item:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M14 2L3 7v10c0 6.5 4.5 11 11 11s11-4.5 11-11V7L14 2z' stroke='%23a8dd2e' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M9.5 14l3.5 3.5 6-6' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* 4 — people */
.stat-item:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Ccircle cx='10' cy='9' r='4' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Ccircle cx='20' cy='9' r='4' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M2 23c0-4 3.6-7 8-7h8c4.4 0 8 3 8 7' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ── Timeline icons (::before on circle) ── */
.timeline__icon-circle::before {
  content: '';
  width: 22px;
  height: 22px;
  display: block;
  background: center/contain no-repeat;
}
/* step 1 — arrow */
.timeline__step:nth-child(1) .timeline__icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* step 2 — document */
.timeline__step:nth-child(2) .timeline__icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect x='5' y='3' width='14' height='18' rx='2' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M8 8h8M8 12h8M8 16h5' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
/* step 3 — checkmark */
.timeline__step:nth-child(3) .timeline__icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l5 5 9-9' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* step 4 — chart */
.timeline__step:nth-child(4) .timeline__icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpolyline points='3,17 8,12 13,15 21,7' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17 7h4v4' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* step 5 — loop/plus */
.timeline__step:nth-child(5) .timeline__icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M12 8v8M8 12h8' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ── Compliance card icons (::before on card) ── */
.compliance-card::before {
  content: '';
  width: 32px;
  height: 32px;
  display: block;
  background: center/contain no-repeat;
  margin-bottom: .5rem;
}
/* card 1 — shield */
.compliance-card:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 4L6 8v10c0 7 5 12 10 13 5-1 10-6 10-13V8L16 4z' stroke='%23a8dd2e' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M11 16l4 4 7-7' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/* card 2 — document */
.compliance-card:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Crect x='6' y='4' width='20' height='24' rx='2' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M10 10h12M10 15h12M10 20h8' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
/* card 3 — lock/privacy */
.compliance-card:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Crect x='4' y='14' width='24' height='14' rx='2' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M10 14v-4a6 6 0 1 1 12 0v4' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='21' r='2' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3C/svg%3E");
}
/* card 4 — whistle/alert */
.compliance-card:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='12' stroke='%23a8dd2e' stroke-width='1.5'/%3E%3Cpath d='M16 10v7' stroke='%23a8dd2e' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='21' r='1' fill='%23a8dd2e'/%3E%3C/svg%3E");
}

/* ── Compliance card link (wp:paragraph > a) ── */
.compliance-card .wp-block-paragraph a,
.compliance-card__link {
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .2s;
  margin-top: auto;
  display: inline-block;
}
.compliance-card .wp-block-paragraph a:hover,
.compliance-card__link:hover {
  color: var(--ink);
}

/* ── svc-card icon (via ::before) ── */
.svc-card__icon {
  color: var(--green);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}


/* ── Timeline icon-circle as wp:group — reset block defaults ── */
.wp-block-group.timeline__icon-circle {
  padding: 0 !important;
  margin: 0 0 1.25rem !important;
}

/* ── Compliance card link paragraph — reset margin ── */
.compliance-card__link-p {
  margin: 0 !important;
  padding: 0 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRANDS SECTION — light & dark variants
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Sezione base (light) ── */
.brands-section {
  padding: 5rem 0;
  background: var(--white);
}

/* ── Sezione dark ── */
.brands-section--dark {
  background: var(--ink);
}

/* ── Header centrato ── */
.brands-header {
  text-align: center;
  margin-bottom: 3rem;
}

.brands-eyebrow {
  display: block;
  font-family: var(--f-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: .75rem !important;
}

.brands-section--dark .brands-eyebrow {
  color: var(--green);
}

.brands-header .wp-block-heading {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 !important;
}

.brands-section--dark .brands-header .wp-block-heading {
  color: var(--white);
}

/* ── Grid loghi (light) ── */
.brands-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  background: transparent;
  max-width: 1280px;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .brands-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ── Singola cella logo — light ── */
.brand-logo {
  background: var(--white) !important;
  border: 1px solid rgba(12, 11, 34, .08);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 148px;
  padding: 2rem !important;
  margin: 0 !important;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}

.brand-logo:hover {
  border-color: rgba(168, 221, 46, .48);
  box-shadow: 0 8px 22px rgba(12, 11, 34, .07);
  transform: translateY(-2px);
}

.brand-logo img {
  height: 72px;
  width: auto;
  max-width: min(180px, 100%);
  object-fit: contain;
  filter: grayscale(1) opacity(.72);
  transition: filter .25s var(--ease);
  display: block;
}

.brand-logo:hover img,
.brand-logo a:focus img {
  filter: grayscale(0) opacity(1);
}

.brand-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ── Grid loghi (dark) ── */
.brands-grid--dark {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  background: transparent !important;
}

/* ── Singola cella logo — dark ── */
.brand-logo--dark {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 8px;
  width: 150px;
  height: 88px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem 1.25rem !important;
  margin: 0 !important;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.brand-logo--dark:hover {
  border-color: var(--green) !important;
  background: rgba(168, 221, 46, .07) !important;
}

.brand-logo--dark img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.4);
  transition: filter .25s var(--ease);
  display: block;
}

.brand-logo--dark:hover img,
.brand-logo--dark a:focus img {
  filter: brightness(0) invert(1) opacity(.9);
}

.brand-logo--dark a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }
  .brand-logo {
    min-height: 112px;
    padding: 1.25rem !important;
  }
  .brand-logo img {
    height: 54px;
    max-width: min(140px, 100%);
  }
  .brands-grid--dark {
    gap: .75rem;
  }
  .brand-logo--dark {
    width: 120px;
    height: 72px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMING SOON — variante card e svc-intro
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── about-svc-card nella sezione Chi siamo ── */
.about-svc-card--coming {
  opacity: .55;
  position: relative;
  pointer-events: none;
}

.about-svc-card--coming::after {
  content: 'Prossimamente';
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(82, 101, 112, .25);
  background: rgba(82, 101, 112, .06);
  padding: .2rem .6rem;
  border-radius: 100px;
}

/* ── svc-intro sezione home ── */
.svc-intro--coming {
  position: relative;
}

.svc-intro--coming .svc-intro__content {
  opacity: .6;
}

.svc-intro--coming .svc-intro__media {
  opacity: .4;
}

.svc-intro--coming .wp-block-buttons {
  pointer-events: none;
  opacity: .4;
}

/* Badge "Prossimamente" sopra il contenuto */
.svc-intro--coming .svc-intro__content::before {
  content: 'Prossimamente';
  display: inline-block;
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(82, 101, 112, .3);
  background: rgba(82, 101, 112, .07);
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SVC-SPLIT — wp:media-text alignfull full-width service sections
   Replaces .svc-intro for the home page service blocks
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Base layout ── */
.wp-block-media-text.alignfull.svc-split {
  min-height: 560px;
  grid-template-columns: 1fr 1fr;
}

/* ── Image side ── */
.svc-split .wp-block-media-text__media {
  position: relative;
  overflow: hidden;
}
.svc-split .wp-block-media-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.svc-split:hover .wp-block-media-text__media img {
  transform: scale(1.04);
}

/* ── Text side (light: gray bg) ── */
.svc-split .wp-block-media-text__content {
  background: var(--bg);
  padding: 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.svc-split .wp-block-media-text__content > * {
  max-width: 480px;
}

/* ── Alt variant (white bg) ── */
.svc-split--alt .wp-block-media-text__content {
  background: var(--white);
}

/* ── Tag ── */
.svc-split .wp-block-media-text__content .tag {
  color: var(--green-dark, #5a8a00);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding: 0;
  background: none;
  border: none;
}

/* ── Heading ── */
.svc-split .wp-block-media-text__content .wp-block-heading {
  color: var(--ink);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

/* ── Body text ── */
.svc-split .wp-block-media-text__content p:not(.tag):not(.svc-intro__tag) {
  color: var(--ink);
  opacity: .65;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

/* ── Pills ── */
.svc-split .svc-intro__tags {
  display: flex !important;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem !important;
  padding: 0 !important;
}
.svc-split .svc-intro__tag {
  background: rgba(0, 0, 0, .05);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, .1);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .3rem .75rem;
  border-radius: 100px;
  margin: 0 !important;
  opacity: .8;
}

/* ── Coming soon variant ── */
.svc-split--coming .wp-block-media-text__media {
  background: var(--bg-alt);
}
.svc-split--coming .wp-block-media-text__content::before {
  content: 'Prossimamente';
  display: inline-block;
  font-family: var(--f-head);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(82, 101, 112, .3);
  background: rgba(82, 101, 112, .07);
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .wp-block-media-text.alignfull.svc-split {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }
  .svc-split .wp-block-media-text__media {
    min-height: 280px;
  }
  .svc-split.has-media-on-the-right {
    grid-template-areas: "media" "content" !important;
  }
  .svc-split .wp-block-media-text__content {
    padding: 2.5rem 1.5rem;
  }
}
