/* ====================================================================
   SCB HP Sections — Standalone V1 Widgets CSS
   Converted from homepage-complete.css — parent scope removed.
   Lipobank brand: #3a4557 | #ffdf00 | #adb4c1 | #ffffff | #f4f6f8
   ==================================================================== */

/* ── RESET & ROOT ─────────────────────────────────────────── */
:root {
  --hp-dark: #3a4557;
  --hp-dark-2: #2f3b4e;
  --hp-dark-3: #252e3b;
  --hp-yellow: #ffdf00;
  --hp-yellow-glow: rgba(255,223,0,0.12);
  --hp-gray: #adb4c1;
  --hp-white: #ffffff;
  --hp-light: #f4f6f8;
  --hp-radius: 16px;
  --hp-ease: cubic-bezier(.4,0,.2,1);
}

.scb-hp-section-wrap {
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}
.scb-hp-section-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.scb-hp-section-wrap img { display: block; max-width: 100%; height: auto; }
.scb-hp-section-wrap ul { list-style: none; }
.scb-hp-section-wrap a { text-decoration: none; color: inherit; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.hp-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}
.hp-container--rel { position: relative; z-index: 2; }

/* ── EYEBROW ────────────────────────────────────────────────── */
.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-dark);
  background: rgba(255,223,0,0.1);
  border: 1px solid rgba(255,223,0,0.3);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 20px;
}
.hp-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-yellow);
  flex-shrink: 0;
}
.hp-eyebrow--light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.hp-eyebrow--light::before {
  background: var(--hp-yellow);
}

/* ── H2 ─────────────────────────────────────────────────────── */
.hp-h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--hp-dark);
  margin-bottom: 20px;
}
.hp-h2--light { color: #fff; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  padding: 13px 28px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .3s var(--hp-ease), color .3s var(--hp-ease), border-color .3s var(--hp-ease), transform .3s var(--hp-ease), box-shadow .3s var(--hp-ease);
  white-space: nowrap;
  line-height: 1;
}
.hp-btn:hover { transform: translateY(-2px); }
.hp-btn--fill { background: var(--hp-yellow); color: var(--hp-dark); border-color: var(--hp-yellow); }
.hp-btn--fill:hover { background: #ffe833; box-shadow: 0 8px 30px rgba(255,223,0,.4); }
.hp-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.hp-btn--ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.6); }
.hp-btn--outline { background: transparent; color: var(--hp-dark); border-color: rgba(58,69,87,.25); }
.hp-btn--outline:hover { background: var(--hp-dark); color: #fff; border-color: var(--hp-dark); }
.hp-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.hp-btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.hp-btn--white {
  background: #fff;
  color: var(--hp-dark);
  border-color: #fff;
}
.hp-btn--white:hover {
  background: #f0f2f6;
  box-shadow: 0 10px 36px rgba(255, 255, 255, 0.12);
}

/* ====================================================================
   SECTION 1 — HERO
   ==================================================================== */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hp-dark);
  overflow: hidden;
}

/* Dot grid bg */
.hp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Yellow glow top-right */
.hp-hero__glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,223,0,.13) 0%, transparent 65%);
  pointer-events: none;
}

/* Layout split */
.hp-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
  padding: clamp(100px, 12vw, 160px) 0 clamp(80px, 10vw, 120px);
  width: 100%;
}

/* ── Hero copy ── */
.hp-hero__copy { max-width: 620px; }

.hp-hero__h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hp-hero__tl {
  display: block;
  overflow: hidden;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.hp-hero__tl--sm { font-size: clamp(28px, 4vw, 52px); color: rgba(255,255,255,.75); }
.hp-hero__tl--lg { font-size: clamp(48px, 7vw, 88px); color: var(--hp-yellow); }

/* word spans (for GSAP, but visible by default) */
.hp-hero__tl .w { display: inline-block; }

/* ICE accent word */
.hp-ice { color: var(--hp-yellow); }

.hp-hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin-bottom: 36px;
}

.hp-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Hero visual: Orbital ── */
.hp-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Orbital container */
.hp-orb {
  position: relative;
  width: clamp(300px, 35vw, 440px);
  height: clamp(300px, 35vw, 440px);
}

/* Rings — share base */
.hp-orb__r {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
}
.hp-orb__r--1 {
  width: 42%; height: 42%;
  border-color: rgba(255,223,0,.2);
  animation: hp-orb-spin 10s linear infinite;
}
.hp-orb__r--2 {
  width: 68%; height: 68%;
  border-color: rgba(255,255,255,.1);
  animation: hp-orb-spin 16s linear infinite reverse;
}
.hp-orb__r--3 {
  width: 100%; height: 100%;
  border-style: dashed;
  border-color: rgba(255,255,255,.05);
  animation: hp-orb-spin 28s linear infinite;
}
@keyframes hp-orb-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Orbital core (main stat) */
.hp-orb__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: clamp(20px,2vw,32px) clamp(24px,2.5vw,40px);
  text-align: center;
  z-index: 10;
  min-width: 140px;
}
.hp-orb__core strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--hp-yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.hp-orb__core span {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  display: block;
}

/* Satellite nodes */
.hp-orb__node {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  z-index: 10;
  transition: background .3s, border-color .3s;
}
.hp-orb__node:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,223,0,.3);
}
.hp-orb__node--a { top: 8%; right: -4%; }
.hp-orb__node--b { bottom: 8%; left: -4%; }
.hp-orb__node strong {
  display: block;
  font-size: clamp(16px,2vw,22px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hp-orb__node span {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
  display: block;
  max-width: 80px;
}

/* Scroll indicator */
.hp-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.hp-hero__scroll-txt {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.hp-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
  border-radius: 1px;
}
.hp-hero__scroll-line em {
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(255,223,0,.6));
  animation: hp-scroll-line 1.8s ease-in-out infinite;
}
@keyframes hp-scroll-line {
  0%   { transform: translateY(-100%); opacity: 1; }
  100% { transform: translateY(200%);  opacity: 0; }
}

/* ====================================================================
   SECTION 2 — ABOUT (Chi Siamo)
   ==================================================================== */
.hp-about {
  background: var(--hp-light);
  padding: clamp(80px, 10vw, 140px) 0;
}
.hp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* Image column */
.hp-about__media { position: relative; }
.hp-about__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 32px 80px rgba(58,69,87,.18);
}
.hp-about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--hp-ease);
}
.hp-about__img-wrap:hover img { transform: scale(1.04); }
.hp-about__img-wrap--empty {
  background: linear-gradient(135deg, var(--hp-dark) 0%, var(--hp-dark-2) 100%);
}
.hp-about__img-placeholder {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,223,0,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.hp-about__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,69,87,.3) 0%, transparent 50%);
  pointer-events: none;
}

/* Badge (glassmorphism, floats over image) */
.hp-about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--hp-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  min-width: 160px;
}
.hp-about__badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,223,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.hp-about__badge-icon svg {
  width: 18px; height: 18px;
  color: var(--hp-yellow);
}
.hp-about__badge-val {
  display: block;
  font-size: clamp(20px,2.5vw,28px);
  font-weight: 900;
  color: var(--hp-yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hp-about__badge-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* Copy column */
.hp-about__copy {}
.hp-about__body {
  font-size: clamp(15px,1.4vw,17px);
  line-height: 1.8;
  color: rgba(58,69,87,.72);
  margin-bottom: 32px;
}
.hp-about__body p { margin-bottom: 16px; }
.hp-about__body p:last-child { margin-bottom: 0; }

/* ====================================================================
   SECTION 3 — STATS BAND
   ==================================================================== */
.hp-stats {
  background: var(--hp-dark-3);
  padding: clamp(60px, 8vw, 100px) 0;
}
.hp-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(24px,4vw,48px) clamp(16px,2vw,32px);
  position: relative;
}
.hp-stat + .hp-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; height: 70%; width: 1px;
  background: rgba(255,255,255,.08);
}
.hp-stat__val {
  display: block;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--hp-yellow);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.hp-stat__lbl {
  font-size: 13px;
  color: var(--hp-gray);
  line-height: 1.5;
  max-width: 140px;
}

/* ====================================================================
   SECTION 4 — PROCESS / LA METODICA
   ==================================================================== */
.hp-process {
  position: relative;
  background: var(--hp-dark);
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}
.hp-process__bg-img {
  position: absolute; inset: 0; z-index: 0;
  margin: 0;
}
.hp-process__bg-img img {
  width: 100%; height: 100%; object-fit: cover; opacity: .05;
}
.hp-process__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(58,69,87,.97) 0%, rgba(47,59,78,.94) 100%);
}

/* Header */
.hp-process__hd {
  position: relative; z-index: 2;
  margin-bottom: 60px;
  max-width: 640px;
}
.hp-process__intro {
  font-size: clamp(15px,1.4vw,17px);
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-top: 12px;
}

/* Timeline */
.hp-process__timeline {
  position: relative;
  z-index: 2;
  padding-left: 80px;
}
.hp-process__line {
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.hp-process__line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--hp-yellow), rgba(255,223,0,.3));
  transition: height .1s;
}

/* Step */
.hp-process__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hp-process__step:last-child { border-bottom: none; }

.hp-process__dot {
  width: 12px; height: 12px;
  flex-shrink: 0;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--hp-yellow);
  position: absolute;
  left: -68px;
  box-shadow: 0 0 0 4px rgba(255,223,0,.15);
}

.hp-process__step-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
}
.hp-process__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hp-yellow);
  opacity: .6;
  flex-shrink: 0;
  margin-top: 4px;
  min-width: 24px;
}
.hp-process__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.4;
}
.hp-process__body p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* Footer button */
.hp-process__ft {
  position: relative; z-index: 2;
  margin-top: 48px;
}

/* ====================================================================
   SECTION 5 — QUALITÀ
   ==================================================================== */
.hp-quality {
  background: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
}
.hp-quality__hd {
  margin-bottom: 48px;
  max-width: 540px;
}

/* Feature list */
.hp-feat-list { display: flex; flex-direction: column; }
.hp-feat {
  display: grid;
  grid-template-columns: 60px 1fr 36px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(58,69,87,.08);
  cursor: pointer;
  position: relative;
  transition: transform .3s var(--hp-ease), background .3s;
  border-radius: 8px;
  padding-inline: 12px;
}
.hp-feat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--hp-yellow);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s var(--hp-ease);
}
.hp-feat:hover {
  transform: translateX(8px);
  background: rgba(58,69,87,.03);
}
.hp-feat:hover::before { transform: scaleY(1); }

.hp-feat__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(58,69,87,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s;
}
.hp-feat:hover .hp-feat__icon-wrap {
  background: rgba(255,223,0,.12);
}
.hp-feat__icon-wrap svg {
  width: 22px; height: 22px;
  color: var(--hp-dark);
  transition: color .3s;
}
.hp-feat:hover .hp-feat__icon-wrap svg {
  color: var(--hp-dark);
}

.hp-feat__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--hp-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}
.hp-feat__content p {
  font-size: 14px;
  color: rgba(58,69,87,.6);
  line-height: 1.6;
}

.hp-feat__arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(58,69,87,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .3s var(--hp-ease);
}
.hp-feat:hover .hp-feat__arrow {
  background: var(--hp-dark);
  border-color: var(--hp-dark);
  transform: rotate(45deg);
}
.hp-feat__arrow svg {
  width: 14px; height: 14px;
  color: var(--hp-dark);
  transition: color .3s;
}
.hp-feat:hover .hp-feat__arrow svg { color: #fff; }

.hp-quality__ft {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
}

/* ====================================================================
   SECTION 6 — CTA CONTATTI
   ==================================================================== */
.hp-cta {
  position: relative;
  background: var(--hp-dark);
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
  text-align: center;
}
.hp-cta__bg-img {
  position: absolute; inset: 0; z-index: 0;
  margin: 0;
}
.hp-cta__bg-img img {
  width: 100%; height: 100%; object-fit: cover; opacity: .07;
}
.hp-cta__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(58,69,87,.92);
}
.hp-cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,223,0,.12) 0%, transparent 65%);
  z-index: 2; pointer-events: none;
}
.hp-cta__inner {
  position: relative; z-index: 3;
  max-width: 680px;
  margin: 0 auto;
}
.hp-cta .hp-h2--light {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 20px;
}
.hp-cta__body {
  font-size: clamp(15px,1.5vw,18px);
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 40px;
  max-width: 520px;
  margin-inline: auto;
}
.hp-cta__bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, var(--hp-yellow) 30%, var(--hp-yellow) 70%, transparent 100%);
  z-index: 5;
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1024px) {
  .hp-hero__layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hp-hero__copy { max-width: 100%; }
  .hp-hero__btns { justify-content: center; }
  .hp-hero__sub { margin-inline: auto; }
  .hp-about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hp-about__media { max-width: 480px; margin: 0 auto; width: 100%; }
  .hp-stats__row { grid-template-columns: repeat(2, 1fr); }
  .hp-stat:nth-child(3)::before { display: none; }
  .hp-stat:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .hp-stat:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.08);
  }
}
@media (max-width: 768px) {
  .hp-orb { width: 280px; height: 280px; }
  .hp-orb__node--a { top: 4%; right: -2%; }
  .hp-orb__node--b { bottom: 4%; left: -2%; }
  .hp-stats__row { grid-template-columns: 1fr 1fr; }
  .hp-process__timeline { padding-left: 50px; }
  .hp-process__line { left: 10px; }
  .hp-process__dot { left: -40px; }
  .hp-feat { grid-template-columns: 48px 1fr; }
  .hp-feat__arrow { display: none; }
  .hp-about__badge { right: 0; bottom: -10px; }
}
@media (max-width: 480px) {
  .hp-hero__tl--lg { font-size: 40px; }
  .hp-stat__val { font-size: 36px; }
  .hp-stats__row { grid-template-columns: 1fr; }
  .hp-stat + .hp-stat::before { display: none; }
  .hp-stat { border-bottom: 1px solid rgba(255,255,255,.06); }
}

/* ====================================================================
   PREFERS-REDUCED-MOTION
   ==================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hp-orb__r { animation: none; }
  .hp-hero__scroll-line em { animation: none; opacity: .4; height: 100%; }
  .hp-btn:hover { transform: none; }
  .hp-feat:hover { transform: none; }
}

/* ====================================================================
   PAGINA CHI SIAMO — v2 Premium Redesign
   Concept: "Precision Cold" — lusso scientifico italiano
   ==================================================================== */

/* ──────────────────────────────────────────────────────────────────
   SEZIONE 1 — HERO (cs-ih)
   Full viewport · watermark atmosferico · orbital rings + nodi flotanti
   ────────────────────────────────────────────────────────────────── */
.cs-ih {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hp-dark);
  overflow: hidden;
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
}

/* Dot grid di sfondo */
.cs-ih__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Watermark atmosferico "-196°C" gigante */
.cs-ih__bg-temp {
  position: absolute;
  right: -1%;
  bottom: -10%;
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.022);
  pointer-events: none;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

/* Layout 2 colonne */
.cs-ih__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.cs-ih__copy { max-width: 580px; }

/* Titolo: riga piccola in alto */
.cs-ih__h1 {
  display: block;
  margin-bottom: 24px;
}

.cs-ih__h1-sm {
  display: block;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.7;
  overflow: hidden;
}
.cs-ih__h1-sm .w { display: inline-block; }

/* Titolo: riga grande */
.cs-ih__h1-lg {
  display: block;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fff;
  overflow: hidden;
}
.cs-ih__h1-lg .w { display: inline-block; }

.cs-ih__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  color: rgba(255,255,255,0.44);
  max-width: 460px;
  margin-bottom: 40px;
}

.cs-ih__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Visuale orbitale destra */
.cs-ih__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-ih__rings {
  position: relative;
  width: clamp(280px, 34vw, 420px);
  height: clamp(280px, 34vw, 420px);
}

.cs-ih__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}

/* Ring 1 — giallo con dot glowing */
.cs-ih__ring--1 {
  width: 38%; height: 38%;
  border: 1.5px solid rgba(255,223,0,0.35);
  animation: hp-orb-spin 10s linear infinite;
}
.cs-ih__ring--1::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hp-yellow);
  box-shadow: 0 0 14px rgba(255,223,0,0.9), 0 0 30px rgba(255,223,0,0.3);
}

/* Ring 2 — bianco tenue con dot */
.cs-ih__ring--2 {
  width: 68%; height: 68%;
  border: 1px solid rgba(255,255,255,0.07);
  animation: hp-orb-spin 22s linear infinite reverse;
}
.cs-ih__ring--2::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* Ring 3 — tratteggiato esterno */
.cs-ih__ring--3 {
  width: 100%; height: 100%;
  border: 1px dashed rgba(255,255,255,0.04);
  animation: hp-orb-spin 38s linear infinite;
}

/* Core glassmorphism */
.cs-ih__ring-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 28px 36px;
  text-align: center;
  z-index: 10;
  min-width: 148px;
}
.cs-ih__ring-core strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--hp-yellow);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(255,223,0,0.35);
}
.cs-ih__ring-core span {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: block;
}

/* Etichette flotanti intorno ai rings */
.cs-ih__node {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 12px;
  z-index: 12;
  white-space: nowrap;
}
.cs-ih__node--a { top: 6%;  left: 58%; }
.cs-ih__node--b { bottom: 10%; right: 0%; }
.cs-ih__node--c { top: 42%; left: -5%; }

/* ──────────────────────────────────────────────────────────────────
   SEZIONE 2 — PROFILO SOCIETARIO (cs-profilo)
   Design editoriale: numero "01", griglia copy/media, stats row
   ────────────────────────────────────────────────────────────────── */
.cs-profilo {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

/* Riga superiore: eyebrow + numero decorativo 01 */
.cs-profilo__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 52px;
}

.cs-profilo__num {
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: rgba(58,69,87,0.055);
  pointer-events: none;
  user-select: none;
  margin-top: -8px;
}

/* Griglia principale: 55% copy / 45% media */
.cs-profilo__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.cs-profilo__title {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--hp-dark);
  margin-bottom: 22px;
}

.cs-profilo__body {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: rgba(58,69,87,0.62);
  margin-bottom: 32px;
}
.cs-profilo__body p { margin-bottom: 14px; }
.cs-profilo__body p:last-child { margin-bottom: 0; }

/* Immagine */
.cs-profilo__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.cs-profilo__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--hp-ease);
}
.cs-profilo__img-wrap:hover img { transform: scale(1.04); }
.cs-profilo__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(58,69,87,0.1) 100%);
  pointer-events: none;
}

/* Placeholder quando nessuna immagine */
.cs-profilo__img-placeholder {
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: rgba(58,69,87,0.04);
  border: 1px dashed rgba(58,69,87,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-profilo__ph-inner svg {
  width: 72px; height: 72px;
  color: rgba(58,69,87,0.16);
}

/* Stats row: 3 colonne con bordi */
.cs-profilo__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(58,69,87,0.08);
  padding-top: clamp(28px, 3.5vw, 44px);
}

.cs-profilo__stat {
  padding: 0 clamp(24px, 3vw, 44px);
  border-right: 1px solid rgba(58,69,87,0.08);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cs-profilo__stat:first-child { padding-left: 0; }
.cs-profilo__stat:last-child  { border-right: none; }

/* Yellow dot accent sopra ogni stat */
.cs-profilo__stat::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hp-yellow);
  margin-bottom: 6px;
  box-shadow: 0 0 8px rgba(255,223,0,0.5);
}

.cs-profilo__stat-val {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--hp-dark);
  line-height: 1;
}

.cs-profilo__stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(58,69,87,0.45);
  text-transform: uppercase;
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────────────
   SEZIONE 3 — MISSIONE & VISIONE (cs-mv)
   Pannelli orizzontali stacked: side (label+num) · body · icon
   ────────────────────────────────────────────────────────────────── */
.cs-mv {
  background: var(--hp-dark-2);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.cs-mv::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.cs-mv__hd {
  position: relative; z-index: 2;
  max-width: 560px;
  margin-bottom: 56px;
}

/* Pannelli in colonna */
.cs-mv__panels {
  position: relative; z-index: 2;
}

/* Singolo pannello — 3 colonne: side | body | icon */
.cs-mv__panel {
  display: grid;
  grid-template-columns: 160px 1fr 80px;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  padding: clamp(36px, 4.5vw, 56px) 0 clamp(36px, 4.5vw, 56px) clamp(20px, 3vw, 32px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid rgba(255,255,255,0.06);
  transition: border-left-color .35s var(--hp-ease), background .35s var(--hp-ease);
  border-radius: 0 0 0 0;
}
.cs-mv__panel:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
.cs-mv__panel:hover {
  border-left-color: var(--hp-yellow);
  background: rgba(255,255,255,0.018);
}

/* Colonna sinistra: label pill + numero decorativo */
.cs-mv__panel-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-mv__panel-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hp-yellow);
  background: rgba(255,223,0,0.08);
  border: 1px solid rgba(255,223,0,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  width: fit-content;
}

.cs-mv__panel-num {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.055);
  line-height: 1;
  user-select: none;
}

/* Colonna centrale: titolo + testo */
.cs-mv__card-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.022em;
  margin-bottom: 14px;
}

.cs-mv__card-text {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.85;
  color: rgba(255,255,255,0.44);
  max-width: 600px;
}

/* Colonna destra: icona decorativa */
.cs-mv__panel-icon {
  width: 72px; height: 72px;
  opacity: 0.055;
  transition: opacity .35s var(--hp-ease);
  flex-shrink: 0;
}
.cs-mv__panel:hover .cs-mv__panel-icon { opacity: 0.11; }
.cs-mv__panel-icon svg {
  width: 100%; height: 100%;
  color: var(--hp-yellow);
}

/* ──────────────────────────────────────────────────────────────────
   SEZIONE 4 — MODELLO OPERATIVO (cs-model)
   Copy sx + diagramma connessione pubblico↔privato dx
   ────────────────────────────────────────────────────────────────── */
.cs-model {
  background: var(--hp-dark-3);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.cs-model__bg-dot {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Glow giallo angolo in basso a sinistra */
.cs-model::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(rgba(255,223,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Griglia 2 colonne */
.cs-model__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.cs-model__body {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: rgba(255,255,255,0.46);
  margin-bottom: 36px;
}
.cs-model__body p { margin-bottom: 14px; }
.cs-model__body p:last-child { margin-bottom: 0; }

.cs-model__badges {
  display: flex; flex-wrap: wrap;
  gap: 10px; margin-bottom: 36px;
}

.cs-model__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 7px 16px;
  transition: background .25s var(--hp-ease), border-color .25s var(--hp-ease);
}
.cs-model__badge:hover {
  background: rgba(255,223,0,0.1);
  border-color: rgba(255,223,0,0.3);
  color: #fff;
}
.cs-model__badge::before {
  content: '';
  display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--hp-yellow); flex-shrink: 0;
}

.cs-model__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--hp-yellow); text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap .25s var(--hp-ease);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,223,0,0.35);
}
.cs-model__link:hover { gap: 16px; }
.cs-model__link svg {
  width: 16px; height: 16px; flex-shrink: 0;
  transition: transform .25s var(--hp-ease);
}
.cs-model__link:hover svg { transform: translateX(4px); }

/* Diagramma connessione: due nodi collegati verticalmente */
.cs-model__diagram {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-model__diagram-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
}

/* Box nodo */
.cs-model__dnode {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 26px 28px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: border-color .3s var(--hp-ease), background .3s var(--hp-ease);
}
.cs-model__dnode:hover {
  border-color: rgba(255,223,0,0.28);
  background: rgba(255,255,255,0.08);
}
/* Accent bar gialla animata in cima al nodo */
.cs-model__dnode::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--hp-yellow);
  border-radius: 0 0 2px 2px;
  transition: transform .35s var(--hp-ease);
}
.cs-model__dnode:hover::before { transform: translateX(-50%) scaleX(1); }

/* Icona nel box */
.cs-model__dnode-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,223,0,0.1);
  border: 1px solid rgba(255,223,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cs-model__dnode-icon svg {
  width: 22px; height: 22px;
  color: var(--hp-yellow);
}

.cs-model__dnode-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.cs-model__dnode-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* Connettore verticale tra i due nodi */
.cs-model__dconn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0;
  gap: 6px;
  width: 100%;
}

.cs-model__dconn-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom,
    rgba(255,223,0,0.15),
    rgba(255,223,0,0.45),
    rgba(255,223,0,0.15)
  );
}

.cs-model__dconn-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-yellow);
  background: rgba(255,223,0,0.08);
  border: 1px solid rgba(255,223,0,0.2);
  border-radius: 100px;
  padding: 3px 12px;
  white-space: nowrap;
}

/* ──────────────────────────────────────────────────────────────────
   RESPONSIVE — Chi Siamo Page
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Hero */
  .cs-ih__layout    { grid-template-columns: 1fr; gap: 48px; }
  .cs-ih__visual    { display: none; }
  .cs-ih__bg-temp   { display: none; }

  /* Profilo */
  .cs-profilo__grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-profilo__top  { align-items: flex-end; }

  /* Missione/Visione */
  .cs-mv__panel     { grid-template-columns: 120px 1fr; }
  .cs-mv__panel-icon { display: none; }

  /* Modello */
  .cs-model__grid   { grid-template-columns: 1fr; gap: 48px; }
  .cs-model__diagram-inner { flex-direction: row; max-width: 100%; gap: 0; }
  .cs-model__dnode  { flex: 1; }
  .cs-model__dconn  {
    flex-direction: row;
    padding: 0 8px;
    align-items: center;
    gap: 4px;
  }
  .cs-model__dconn-line {
    width: 28px; height: 1px;
    background: linear-gradient(to right,
      rgba(255,223,0,0.15),
      rgba(255,223,0,0.45),
      rgba(255,223,0,0.15)
    );
  }
}

@media (max-width: 768px) {
  /* Profilo stats: stack verticale */
  .cs-profilo__stats { grid-template-columns: 1fr; gap: 0; border-top: none; }
  .cs-profilo__stat  {
    padding: 18px 0;
    border-right: none;
    border-bottom: 1px solid rgba(58,69,87,0.08);
  }
  .cs-profilo__stat:last-child { border-bottom: none; }
  .cs-profilo__num   { font-size: 72px; }

  /* Missione/Visione: pannello verticale */
  .cs-mv__panel      { grid-template-columns: 1fr; gap: 14px; }
  .cs-mv__panel-side { flex-direction: row; align-items: center; gap: 14px; }
  .cs-mv__panel-num  { font-size: 40px; }

  /* Modello: diagram ritorna verticale */
  .cs-model__diagram-inner { flex-direction: column; }
  .cs-model__dconn   { flex-direction: column; padding: 6px 0; gap: 6px; }
  .cs-model__dconn-line {
    width: 1px; height: 28px;
    background: linear-gradient(to bottom,
      rgba(255,223,0,0.15),
      rgba(255,223,0,0.45),
      rgba(255,223,0,0.15)
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-ih__ring--1,
  .cs-ih__ring--2,
  .cs-ih__ring--3 { animation: none; }
}

/* ============================================================================
   CHI SIAMO B — "Cinematic Science"
   Version B: immagini cinematografiche, sfondi animati, atmosfera premium
   Prefix: csb-
   ============================================================================ */

/* ── Keyframes Version B ──────────────────────────────────────────────────── */

@keyframes csb-slow-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes csb-glow-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.12); }
}

@keyframes csb-scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes csb-bg-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes csb-card-bar {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes csb-orb-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── 1. HERO CINEMATOGRAFICO ─────────────────────────────────────────────── */

.csb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hp-dark-3);
}

/* BG Image — slow zoom */
.csb-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.csb-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: csb-slow-zoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
.csb-hero__bg--empty {
  background: linear-gradient(160deg, var(--hp-dark-3) 0%, #1a2230 100%);
}

/* Dark overlay gradient */
.csb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(37, 46, 59, 0.78) 0%,
    rgba(47, 59, 78, 0.55) 50%,
    rgba(37, 46, 59, 0.82) 100%
  );
  z-index: 1;
}

/* Glow decorativi */
.csb-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,223,0,0.10) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  animation: csb-glow-pulse 6s ease-in-out infinite;
  top: -100px;
  right: -100px;
}
.csb-hero__glow--b {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,223,0,0.06) 0%, transparent 70%);
  bottom: -80px;
  left: 5%;
  top: auto;
  right: auto;
  animation-delay: -3s;
}

/* Content */
.csb-hero .hp-container {
  position: relative;
  z-index: 3;
  padding-top: 140px;
  padding-bottom: 140px;
}

.csb-hero__content {
  max-width: 760px;
}

/* H1 */
.csb-hero__h1 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.csb-hero__h1-line {
  display: block;
}
.csb-hero__h1-accent {
  color: var(--hp-yellow);
  text-shadow: 0 0 40px rgba(255,223,0,0.35);
}

/* Subtitle */
.csb-hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 40px;
}

/* Buttons row */
.csb-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Scroll indicator */
.csb-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.csb-hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.csb-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.csb-hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hp-yellow);
  animation: csb-scroll-line 2s ease-in-out infinite;
}

/* ── 2. PROFILO SOCIETARIO ───────────────────────────────────────────────── */

.csb-profilo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: var(--hp-dark-2);
  overflow: hidden;
}

/* Content — lato sinistro */
.csb-profilo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 110px) clamp(40px, 6vw, 80px) clamp(60px, 8vw, 110px) clamp(24px, 6vw, 80px);
  gap: 28px;
}

.csb-profilo__title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.025em;
}

.csb-profilo__body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
.csb-profilo__body p { margin: 0 0 14px; }
.csb-profilo__body p:last-child { margin-bottom: 0; }

/* Stats row */
.csb-profilo__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.csb-profilo__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.csb-profilo__stat-val {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--hp-yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.csb-profilo__stat-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Media — lato destro */
.csb-profilo__media {
  position: relative;
  overflow: hidden;
}
.csb-profilo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--hp-ease);
}
.csb-profilo:hover .csb-profilo__media img {
  transform: scale(1.03);
}
/* Gradient fade verso sinistra */
.csb-profilo__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--hp-dark-2) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}

/* ── 3. MISSIONE & VISIONE — CARDS CON IMMAGINE BG ──────────────────────── */

.csb-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.csb-card {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--hp-dark-3);
  cursor: default;
}

/* BG image */
.csb-card__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.csb-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--hp-ease);
  will-change: transform;
}
.csb-card:hover .csb-card__bg img {
  transform: scale(1.06);
}

/* Overlay gradiente dal basso */
.csb-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(37,46,59,0.96) 0%,
    rgba(37,46,59,0.60) 45%,
    rgba(37,46,59,0.10) 100%
  );
  z-index: 1;
  transition: background 0.4s var(--hp-ease);
}
.csb-card:hover .csb-card__overlay {
  background: linear-gradient(
    to top,
    rgba(37,46,59,0.98) 0%,
    rgba(37,46,59,0.70) 50%,
    rgba(37,46,59,0.20) 100%
  );
}

/* Yellow bar bottom — animates in on hover */
.csb-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hp-yellow);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--hp-ease);
}
.csb-card:hover .csb-card__bar {
  transform: scaleX(1);
}

/* Content inner */
.csb-card__inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 4vw, 56px);
  width: 100%;
  transform: translateY(8px);
  transition: transform 0.4s var(--hp-ease);
}
.csb-card:hover .csb-card__inner {
  transform: translateY(0);
}

.csb-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.csb-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--hp-yellow);
  opacity: 0.8;
}
.csb-card__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.csb-card__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.csb-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 400px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s 0.05s var(--hp-ease), transform 0.4s 0.05s var(--hp-ease);
}
.csb-card:hover .csb-card__text {
  opacity: 1;
  transform: translateY(0);
}

/* No-image fallback */
.csb-card--no-img {
  background: var(--hp-dark-2);
}
.csb-card--no-img:nth-child(2) {
  background: var(--hp-dark-3);
}

/* Separator line between cards */
.csb-cards .csb-card + .csb-card {
  border-left: 1px solid rgba(255,255,255,0.04);
}

/* ── 4. MODELLO OPERATIVO — ANIMATED GRADIENT BG ────────────────────────── */

.csb-model {
  position: relative;
  background: var(--hp-dark-3);
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) 0;
}

/* Animated gradient mesh background */
.csb-model::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,223,0,0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(47,59,78,0.8) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, rgba(255,223,0,0.05) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: csb-bg-shift 12s ease-in-out infinite;
  z-index: 0;
}

/* Dot grid texture */
.csb-model__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
  pointer-events: none;
}

/* Container z-index above bg */
.csb-model .hp-container {
  position: relative;
  z-index: 1;
}

/* Stats row */
.csb-model__stats {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: clamp(48px, 6vw, 72px);
}
.csb-model__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.csb-model__stat-val {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--hp-yellow);
  letter-spacing: -0.03em;
  line-height: 1;
}
.csb-model__stat-lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Content grid: copy + visual */
.csb-model__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* Copy */
.csb-model__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.csb-model__body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
.csb-model__body p { margin: 0 0 14px; }
.csb-model__body p:last-child { margin-bottom: 0; }

/* Badges */
.csb-model__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Link con freccia */
.csb-model__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hp-yellow);
  text-decoration: none;
  transition: gap 0.3s var(--hp-ease);
}
.csb-model__link:hover { gap: 14px; }
.csb-model__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Orbital visual (riusa pattern ring) */
.csb-model__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.csb-model__orb {
  position: relative;
  width: 320px;
  height: 320px;
}

.csb-model__orb-r {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,223,0,0.12);
  transform: translate(-50%, -50%);
}
.csb-model__orb-r--1 {
  width: 100%;
  height: 100%;
  animation: csb-orb-spin 18s linear infinite;
  border-color: rgba(255,223,0,0.15);
  border-style: dashed;
}
.csb-model__orb-r--2 {
  width: 68%;
  height: 68%;
  animation: csb-orb-spin 12s linear infinite reverse;
  border-color: rgba(255,223,0,0.10);
}
.csb-model__orb-r--3 {
  width: 38%;
  height: 38%;
  animation: csb-orb-spin 8s linear infinite;
  border-color: rgba(255,223,0,0.20);
}

/* Glowing dot on ring 1 */
.csb-model__orb-r--1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--hp-yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,223,0,0.7), 0 0 24px rgba(255,223,0,0.3);
}

/* Core */
.csb-model__orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,223,0,0.06);
  border: 1px solid rgba(255,223,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 40px rgba(255,223,0,0.08),
    inset 0 0 20px rgba(255,223,0,0.04);
}
.csb-model__orb-core strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--hp-yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.csb-model__orb-core span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ── CSB — RESPONSIVE ──────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .csb-profilo {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .csb-model__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .csb-model__visual {
    order: -1;
  }
  .csb-model__orb {
    width: 240px;
    height: 240px;
  }
  .csb-model__orb-core {
    width: 86px;
    height: 86px;
  }
  .csb-model__orb-core strong { font-size: 15px; }
}

@media (max-width: 768px) {
  /* Hero */
  .csb-hero .hp-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .csb-hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Profilo: stack verticale */
  .csb-profilo {
    grid-template-columns: 1fr;
  }
  .csb-profilo__media {
    min-height: 340px;
  }
  .csb-profilo__media::before {
    background: linear-gradient(to bottom, var(--hp-dark-2) 0%, transparent 30%);
  }
  .csb-profilo__stats {
    gap: 24px;
  }

  /* Cards: stack verticale */
  .csb-cards {
    grid-template-columns: 1fr;
  }
  .csb-cards .csb-card + .csb-card {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .csb-card {
    min-height: 60vw;
  }
  .csb-card__text {
    opacity: 1;
    transform: none;
  }

  /* Model */
  .csb-model__stats {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .csb-hero__bg img    { animation: none; }
  .csb-hero__glow      { animation: none; }
  .csb-hero__scroll-line::after { animation: none; }
  .csb-model::before   { animation: none; }
  .csb-model__orb-r    { animation: none; }
  .csb-card__bg img    { transition: none; }
}

/* ============================================================================
   PAGINE — CSS globale per tutte le pagine interne (5 pagine × 2 versioni)
   Versione A "Precision Cold" + Versione B "Cinematic Science"
   ============================================================================ */

/* ── Shared Version A Hero — dark fullscreen ─────────────────────────────── */

.met-hero,
.srv-hero,
.par-hero,
.qlt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hp-dark-3);
}

/* Contatti hero è semi-height */
.cnt-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hp-dark-3);
}

/* Container nei heroes Version A */
.met-hero .hp-container,
.srv-hero .hp-container,
.par-hero .hp-container,
.qlt-hero .hp-container,
.cnt-hero .hp-container {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 120px;
}

/* H1 comune Version A */
.met-hero__h1,
.srv-hero__h1,
.par-hero__h1,
.qlt-hero__h1,
.cnt-hero__h1 {
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Sottotitolo comune Version A */
.met-hero__sub,
.srv-hero__sub,
.par-hero__sub,
.qlt-hero__sub,
.cnt-hero__sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin-bottom: 36px;
}

/* Watermark gigante — tutti i heroes */
.met-hero__wm,
.srv-hero__wm,
.par-hero__wm,
.qlt-hero__wm,
.cnt-hero__wm {
  position: absolute;
  right: -1%;
  bottom: -5%;
  font-size: clamp(120px, 22vw, 300px);
  font-weight: 900;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.06em;
}

/* ── Shared Version B Hero — cinematic ───────────────────────────────────── */

.metb-hero,
.srvb-hero,
.parb-hero,
.qltb-hero,
.cntb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hp-dark-3);
}

.cntb-hero { min-height: 80vh; }

/* BG image container */
.metb-hero__bg,
.srvb-hero__bg,
.parb-hero__bg,
.qltb-hero__bg,
.cntb-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.metb-hero__bg img,
.srvb-hero__bg img,
.parb-hero__bg img,
.qltb-hero__bg img,
.cntb-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: csb-slow-zoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

/* Overlay cinematografico */
.metb-hero__overlay,
.srvb-hero__overlay,
.parb-hero__overlay,
.qltb-hero__overlay,
.cntb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(37,46,59,0.80) 0%,
    rgba(47,59,78,0.55) 50%,
    rgba(37,46,59,0.85) 100%
  );
  z-index: 1;
}

/* Glow decorativi Version B */
.metb-hero__glow,
.srvb-hero__glow,
.parb-hero__glow,
.qltb-hero__glow,
.cntb-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,223,0,0.09) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  animation: csb-glow-pulse 6s ease-in-out infinite;
  top: -100px;
  right: -100px;
}
.metb-hero__glow--b,
.srvb-hero__glow--b,
.parb-hero__glow--b,
.qltb-hero__glow--b,
.cntb-hero__glow--b {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: 5%;
  top: auto;
  right: auto;
  animation-delay: -3s;
}

/* Container Version B heroes */
.metb-hero .hp-container,
.srvb-hero .hp-container,
.parb-hero .hp-container,
.qltb-hero .hp-container,
.cntb-hero .hp-container {
  position: relative;
  z-index: 3;
  padding-top: 140px;
  padding-bottom: 140px;
}

/* H1 Version B */
.metb-hero__h1,
.srvb-hero__h1,
.parb-hero__h1,
.qltb-hero__h1,
.cntb-hero__h1 {
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Riga accent gialla */
.metb-hero__h1-accent,
.srvb-hero__h1-accent,
.parb-hero__h1-accent,
.qltb-hero__h1-accent,
.cntb-hero__h1-accent {
  color: var(--hp-yellow);
  text-shadow: 0 0 40px rgba(255,223,0,0.30);
}

/* Sottotitolo Version B */
.metb-hero__sub,
.srvb-hero__sub,
.parb-hero__sub,
.qltb-hero__sub,
.cntb-hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 40px;
}

/* Buttons row Version B */
.metb-hero__btns,
.srvb-hero__btns,
.parb-hero__btns,
.qltb-hero__btns,
.cntb-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.met-hero__overlay, .srv-hero__overlay, .par-hero__overlay, .qlt-hero__overlay, .cnt-hero__overlay,
.metb-hero__overlay, .srvb-hero__overlay, .parb-hero__overlay, .qltb-hero__overlay, .cntb-hero__overlay {
  position: absolute;
  inset: 0;
}

.met-hero__scroll, .srv-hero__scroll, .par-hero__scroll, .qlt-hero__scroll, .cnt-hero__scroll,
.metb-hero__scroll, .srvb-hero__scroll, .parb-hero__scroll, .qltb-hero__scroll, .cntb-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.met-hero__scroll span, .srv-hero__scroll span, .par-hero__scroll span, .qlt-hero__scroll span, .cnt-hero__scroll span,
.metb-hero__scroll span, .srvb-hero__scroll span, .parb-hero__scroll span, .qltb-hero__scroll span, .cntb-hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.met-hero__scroll-line, .srv-hero__scroll-line, .par-hero__scroll-line, .qlt-hero__scroll-line, .cnt-hero__scroll-line,
.metb-hero__scroll-line, .srvb-hero__scroll-line, .parb-hero__scroll-line, .qltb-hero__scroll-line, .cntb-hero__scroll-line {
  width: 1px;
  height: 48px;
  border-radius: 1px;
  background: rgba(255,255,255,.2);
  overflow: hidden;
}
.met-hero__scroll-line::after, .srv-hero__scroll-line::after, .par-hero__scroll-line::after, .qlt-hero__scroll-line::after, .cnt-hero__scroll-line::after,
.metb-hero__scroll-line::after, .srvb-hero__scroll-line::after, .parb-hero__scroll-line::after, .qltb-hero__scroll-line::after, .cntb-hero__scroll-line::after {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(255,223,0,.7));
  animation: hp-scroll-line 1.8s ease-in-out infinite;
}

/* ── Sezioni bianche / dark alternati — shared ───────────────────────────── */

/* Sezioni bianche Version A */
.met-gmp,
.par-banca,
.par-vantaggi,
.qlt-gmp,
.qlt-traccia,
.cnt-form {
  background: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
}

/* Sezioni scure Version A */
.srv-stats,
.srv-proc,
.srv-feat,
.srv-showcase,
.srv-qualita,
.par-factory,
.qlt-cappa,
.qlt-normativa,
.cnt-info {
  background: var(--hp-dark-2);
  padding: clamp(72px, 9vw, 120px) 0;
}

/* ============================================================================
   LA METODICA — Version A (met-) — REDESIGN
   Concept: atmospheric hero + glass feature cards + vertical tabs + 3D GMP card
   ============================================================================ */

/* ── Keyframes atmosferici ── */
@keyframes met-atm-float-1 {
  0%, 100% { transform: translateX(0) translateY(0) scale(1);    opacity: 0.45; }
  33%       { transform: translateX(2%) translateY(-2%) scale(1.03); opacity: 0.65; }
  66%       { transform: translateX(-1%) translateY(1%) scale(0.98); opacity: 0.38; }
}
@keyframes met-atm-float-2 {
  0%, 100% { transform: translateX(0) scale(1);   opacity: 0.30; }
  50%       { transform: translateX(-3%) scale(1.06); opacity: 0.50; }
}
@keyframes met-atm-float-3 {
  0%, 100% { transform: translateY(0) rotate(0deg);  opacity: 0.18; }
  50%       { transform: translateY(-4%) rotate(4deg); opacity: 0.32; }
}
@keyframes met-spin {
  to { transform: rotate(360deg); }
}

/* ── Hero atmosferico ── */
.met-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hp-dark-3);
}

/* Layer atmosferici */
.met-hero__atm {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.met-hero__atm--1 {
  width: 900px; height: 540px;
  top: -120px; right: -120px;
  background: radial-gradient(ellipse, rgba(255,223,0,0.08) 0%, transparent 65%);
  animation: met-atm-float-1 11s ease-in-out infinite;
}
.met-hero__atm--2 {
  width: 700px; height: 700px;
  bottom: -200px; left: -150px;
  background: radial-gradient(ellipse, rgba(47,59,78,0.90) 0%, transparent 70%);
  animation: met-atm-float-2 15s ease-in-out infinite;
}
.met-hero__atm--3 {
  width: 500px; height: 500px;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,223,0,0.05) 0%, transparent 60%);
  animation: met-atm-float-3 20s ease-in-out infinite;
}

/* Grid texture */
.met-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
  pointer-events: none;
}

/* Watermark temperatura */
.met-hero__temp-wm {
  position: absolute;
  right: 2%;
  bottom: 4%;
  font-size: clamp(72px, 13vw, 170px);
  font-weight: 900;
  color: rgba(255,255,255,0.022);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.met-hero .hp-container {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 120px;
}

.met-hero__content { max-width: 720px; }

.met-hero__h1 {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.met-hero__h1-line  { display: block; }
.met-hero__h1-accent {
  color: var(--hp-yellow);
  text-shadow: 0 0 36px rgba(255,223,0,0.28);
}

.met-hero__sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.72;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  margin-bottom: 36px;
}

.met-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Scroll indicator */
.met-hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.met-hero__scroll span {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.met-hero__scroll-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.12);
  position: relative; overflow: hidden;
}
.met-hero__scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--hp-yellow);
  animation: csb-scroll-line 2s ease-in-out infinite;
}

/* ── Bio: dark background + glass feature cards ── */
.met-bio {
  background: var(--hp-dark-2);
  padding: clamp(80px, 10vw, 130px) 0;
}

.met-bio__hd  { max-width: 640px; margin-bottom: 52px; }
.met-bio__intro {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.62); margin-top: 16px;
}

/* 2x3 grid of glass cards (5 items — last row has offset) */
.met-bio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Glass Feature Card */
.met-feat-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color .35s var(--hp-ease), background .35s var(--hp-ease), transform .35s var(--hp-ease);
}

/* Shimmer line on hover */
.met-feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 55%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,223,0,0.7), transparent);
  transition: left .65s var(--hp-ease);
}

.met-feat-card:hover {
  border-color: rgba(255,223,0,0.28);
  background: rgba(255,223,0,0.04);
  transform: translateY(-4px);
}
.met-feat-card:hover::after { left: 150%; }

.met-feat-card__num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--hp-yellow); opacity: 0.7; margin-bottom: 12px;
}
.met-feat-card__title {
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.met-feat-card__text {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.58); margin: 0;
}

/* ── Process: Vertical Tabs ── */
.met-process {
  background: var(--hp-dark-3);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative; overflow: hidden;
}
.met-process::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none; z-index: 0;
}
.met-process .hp-container { position: relative; z-index: 1; }

.met-process__hd   { margin-bottom: 52px; }
.met-process__intro {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.60); max-width: 560px; margin-top: 14px;
}

/* Tabs layout */
.met-process__tabs {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

/* Tab list (left column) */
.met-process__tablist {
  display: flex; flex-direction: column; gap: 0;
  position: sticky; top: 100px;
}

.met-process__tab {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 18px 14px;
  background: transparent;
  border: none;
  border-left: 2px solid rgba(255,255,255,0.05);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-left-color .3s var(--hp-ease), background .3s var(--hp-ease);
}
.met-process__tab:hover {
  background: rgba(255,255,255,0.02);
  border-left-color: rgba(255,223,0,0.3);
}
.met-process__tab.is-active {
  border-left-color: var(--hp-yellow);
  background: rgba(255,223,0,0.04);
}

.met-process__tab-num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
  transition: color .3s var(--hp-ease);
}
.met-process__tab:hover .met-process__tab-num,
.met-process__tab.is-active .met-process__tab-num {
  color: var(--hp-yellow);
}

.met-process__tab-title {
  font-size: 13px; font-weight: 600; line-height: 1.35;
  color: rgba(255,255,255,0.50);
  transition: color .3s var(--hp-ease);
}
.met-process__tab.is-active .met-process__tab-title { color: #fff; }

.met-process__tab-arrow {
  font-size: 13px;
  color: var(--hp-yellow);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
  font-style: normal;
}
.met-process__tab.is-active .met-process__tab-arrow {
  opacity: 1; transform: translateX(0);
}

/* Content panels (right column) */
.met-process__panels { position: relative; min-height: 340px; }

.met-process__panel {
  display: none;
  opacity: 0;
}
.met-process__panel.is-active {
  display: block;
  opacity: 1;
}

/* Yellow accent bar before panel */
.met-process__panel::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--hp-yellow);
  box-shadow: 0 0 10px rgba(255,223,0,0.45);
  margin-bottom: 28px;
}

/* Large ghosted number */
.met-process__panel-num {
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 900;
  color: rgba(255,223,0,0.055);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: -16px;
  user-select: none;
  pointer-events: none;
}

.met-process__panel-title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}

.met-process__panel-text {
  font-size: 15px; line-height: 1.82;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0;
}

/* ── GMP: white bg + 3D glass card ── */
.met-gmp {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}

.met-gmp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.met-gmp__copy { display: flex; flex-direction: column; gap: 20px; }
.met-gmp__text { font-size: 15px; line-height: 1.75; color: #555; }
.met-gmp__text p { margin: 0 0 14px; }
.met-gmp__text p:last-child { margin-bottom: 0; }
.met-gmp__badges { display: flex; flex-wrap: wrap; gap: 10px; }

/* 3D Glass Card */
.met-gmp__card-wrap { perspective: 900px; }

.met-gmp__card {
  position: relative;
  background: linear-gradient(140deg, var(--hp-dark-3) 0%, var(--hp-dark-2) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,223,0,0.14);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  transform-style: preserve-3d;
  transition: transform .4s var(--hp-ease), box-shadow .4s var(--hp-ease);
  box-shadow: 0 20px 60px rgba(37,46,59,0.3);
  overflow: hidden;
  will-change: transform;
}

/* Inner glass shine */
.met-gmp__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

/* Rotating glow ring */
.met-gmp__card-orb {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,223,0,0.10) 0%, transparent 70%);
  pointer-events: none;
  animation: csb-glow-pulse 5s ease-in-out infinite;
}

.met-gmp__card-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; color: #fff;
  margin-bottom: 14px; letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.met-gmp__card-text {
  font-size: 14px; line-height: 1.78;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.met-gmp__card-badges { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }

/* ============================================================================
   LA METODICA — Version B (metb-)
   Cinematic Science: split-dark bio with numbered glass cards,
   stacked sticky process cards (GSAP scrub), cinematic GMP full-bleed.
   ============================================================================ */

/* ── Bio Split Dark ─────────────────────────────────────────────────────────── */
.metb-bio {
  background: var(--hp-dark-3);
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.metb-bio__title { margin: 12px 0 18px; }

.metb-bio__intro {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Numbered feature cards column */
.metb-bio__col-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metb-bio__card {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 20px 22px;
  overflow: hidden;
  transition: background .3s var(--hp-ease), border-color .3s var(--hp-ease);
}
.metb-bio__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,223,0,0.5), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.metb-bio__card:hover { background: rgba(255,223,0,0.04); border-color: rgba(255,223,0,0.18); }
.metb-bio__card:hover::before { opacity: 1; }

.metb-bio__card-num {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,223,0,0.22);
  letter-spacing: -0.04em;
  min-width: 36px;
  padding-top: 2px;
}

.metb-bio__card-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.metb-bio__card-text  { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.52); margin: 0; }

/* ── Process: Stacked Sticky Glass Cards ────────────────────────────────────── */
.metb-process {
  position: relative;
  background: var(--hp-dark-2);
  overflow: hidden;
}

.metb-process__intro-wrap {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.metb-process__title { margin: 12px 0 16px; }

.metb-process__intro {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}

/* Stack container */
.metb-process__stack {
  padding-bottom: clamp(72px, 9vw, 120px);
}

/* Each sticky wrapper */
.metb-process__sticky {
  position: sticky;
  top: 80px;
  padding: 0 clamp(20px, 5vw, 80px);
  margin-bottom: 24px;
}

/* Glass card */
.metb-process__card {
  max-width: 880px;
  margin-inline: auto;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  overflow: hidden;
  transform-origin: center top;
  will-change: transform;
}

/* Per-card accent top border fading as they stack */
.metb-process__card--1 { border-top: 2px solid rgba(255,223,0,0.55); }
.metb-process__card--2 { border-top: 2px solid rgba(255,223,0,0.42); }
.metb-process__card--3 { border-top: 2px solid rgba(255,223,0,0.30); }
.metb-process__card--4 { border-top: 2px solid rgba(255,223,0,0.20); }
.metb-process__card--5 { border-top: 2px solid rgba(255,223,0,0.12); }
.metb-process__card--6 { border-top: 2px solid rgba(255,223,0,0.07); }

.metb-process__card-inner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0;
  align-items: center;
  padding: 36px 40px 36px 0;
}

.metb-process__card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,223,0,0.18);
  letter-spacing: -0.05em;
  line-height: 1;
}

.metb-process__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.metb-process__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin: 0;
  max-width: 560px;
}

.metb-process__card-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,223,0,0.65);
  background: rgba(255,223,0,0.08);
  border: 1px solid rgba(255,223,0,0.15);
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}

/* ── GMP Cinematic Full-Bleed ────────────────────────────────────────────────── */
.metb-gmp {
  position: relative;
  background: var(--hp-dark-3);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.metb-gmp__bg { position: absolute; inset: 0; overflow: hidden; }
.metb-gmp__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
  animation: csb-slow-zoom 22s ease-in-out infinite alternate;
}
.metb-gmp__bg--empty {
  background: linear-gradient(135deg, var(--hp-dark-3) 0%, var(--hp-dark-2) 100%);
}
.metb-gmp__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(37,46,59,0.97) 0%,
    rgba(37,46,59,0.82) 55%,
    rgba(37,46,59,0.55) 100%
  );
  z-index: 1;
}
.metb-gmp .hp-container { position: relative; z-index: 2; }
.metb-gmp__inner { max-width: 620px; }
.metb-gmp__title { margin: 12px 0 16px; }
.metb-gmp__body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.metb-gmp__body p { margin: 0 0 14px; }
.metb-gmp__body p:last-child { margin-bottom: 0; }
.metb-gmp__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.metb-gmp__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-yellow);
  background: rgba(255,223,0,0.08);
  border: 1px solid rgba(255,223,0,0.2);
  border-radius: 4px;
  padding: 6px 14px;
}

/* ============================================================================
   ATTIVITÀ E SERVIZI — Version A (srv-)
   ============================================================================ */

/* Hero Attività: fullscreen, testo centrato; alone centrale come mockup; foto solo come sfondo opzionale */
.srv-hero__atm {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.srv-hero__atm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.srv-hero .srv-hero__overlay {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 68% 58% at 50% 44%, rgba(255, 255, 255, 0.09) 0%, transparent 58%),
    linear-gradient(180deg, rgba(26, 32, 44, 0.25) 0%, rgba(26, 32, 44, 0.88) 100%);
}
.srv-hero.srv-hero--has-atm .srv-hero__overlay {
  background:
    radial-gradient(ellipse 68% 58% at 50% 44%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, rgba(26, 32, 44, 0.65) 0%, rgba(26, 32, 44, 0.94) 100%);
}
.srv-hero .srv-hero__wm { z-index: 1; }
.srv-hero .hp-container {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.srv-hero__content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.srv-hero__content--center .srv-hero__h1 {
  align-items: center;
}
.srv-hero__content--center .srv-hero__sub {
  margin-left: auto;
  margin-right: auto;
}
.srv-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.srv-hero__content--center .srv-hero__btns {
  justify-content: center;
}

/* Intro editoriale bianca + immagine (riferimento Chi siamo) */
.srv-photo-intro {
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.srv-photo-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(85vh, 920px);
  align-items: stretch;
}
.srv-photo-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 120px) clamp(32px, 6vw, 80px);
  max-width: 640px;
}
.srv-photo-intro__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(58, 69, 87, 0.45);
  margin: 0 0 16px;
}
.srv-photo-intro__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--hp-dark);
  line-height: 1.1;
  margin: 0 0 24px;
}
.srv-photo-intro__body {
  font-size: 15px;
  line-height: 1.75;
  color: #666;
}
.srv-photo-intro__body p { margin: 0 0 16px; }
.srv-photo-intro__body p:last-child { margin-bottom: 0; }
.srv-photo-intro__media {
  margin: 0;
  position: relative;
  min-height: 320px;
  background: #e8eaef;
}
.srv-photo-intro__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .srv-photo-intro__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .srv-photo-intro__media {
    order: -1;
    min-height: min(48vh, 360px);
    max-height: 50vh;
  }
}

/* ── Attività ref: processo ── */
.srv-proc {
  background: var(--hp-dark-3);
  padding: clamp(72px, 9vw, 120px) 0;
}
.srv-proc__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.srv-proc__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hp-yellow);
  margin: 0 0 16px;
}
.srv-proc__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.12;
  margin: 0;
}
.srv-proc__steps {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
  position: relative;
}
.srv-proc__steps::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0.55em;
  bottom: 0.55em;
  width: 2px;
  background: linear-gradient(180deg, var(--hp-yellow) 0%, rgba(255, 223, 0, 0.12) 100%);
  border-radius: 2px;
}
.srv-proc__step {
  position: relative;
  padding: 0 0 32px 36px;
}
.srv-proc__step:last-child { padding-bottom: 0; }
.srv-proc__dot {
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hp-yellow);
  box-shadow: 0 0 0 4px rgba(255, 223, 0, 0.2);
}
.srv-proc__step-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.srv-proc__step-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

/* CTA metodica (banda più chiara) */
.srv-mid-cta {
  background: #343f52;
  padding: clamp(56px, 8vw, 96px) 0;
}
.srv-mid-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.srv-mid-cta__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.srv-mid-cta__sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 28px;
}

/* Immagine cinematografica */
.srv-cinema {
  margin: 0;
  position: relative;
  width: 100%;
  min-height: min(52vh, 560px);
  max-height: 72vh;
  overflow: hidden;
  background: #1a202c;
}
.srv-cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: inherit;
}

/* Griglia 3 feature */
.srv-feat {
  background: var(--hp-dark-2);
  padding: clamp(72px, 9vw, 110px) 0;
}
.srv-feat__head {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}
.srv-feat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.srv-feat__item { text-align: left; }
.srv-feat__icon {
  display: block;
  font-size: 22px;
  color: var(--hp-yellow);
  margin-bottom: 18px;
  line-height: 1;
}
.srv-feat__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.srv-feat__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

/* Showcase: 2 card + fascia */
.srv-showcase {
  background: var(--hp-dark-3);
  padding: clamp(72px, 9vw, 120px) 0;
}
.srv-showcase__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.srv-showcase__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 12px;
}
.srv-showcase__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.03em;
}
.srv-showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.srv-scard {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}
.srv-scard__media {
  aspect-ratio: 16 / 10;
  background: #2a3444;
  overflow: hidden;
}
.srv-scard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.srv-scard__ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #3a4556 0%, #252e3d 100%);
}
.srv-scard__body { padding: 24px 26px 28px; }
.srv-scard__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--hp-dark);
  margin: 0 0 10px;
}
.srv-scard__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: #5c6573;
  margin: 0 0 16px;
}
.srv-scard__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--hp-yellow);
  padding-bottom: 2px;
  transition: color .25s var(--hp-ease), border-color .25s;
}
.srv-scard__more:hover {
  color: var(--hp-yellow);
  border-color: var(--hp-yellow);
}

.srv-showwide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(32px, 5vw, 48px) clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(47, 59, 78, 0.92) 0%, rgba(26, 32, 44, 0.98) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.srv-showwide__copy {
  flex: 1;
  min-width: min(100%, 360px);
}
.srv-showwide__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.srv-showwide__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
}
.srv-showwide__viz {
  position: relative;
  width: min(200px, 38vw);
  height: min(200px, 38vw);
  flex-shrink: 0;
}
.srv-showwide__ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 223, 0, 0.35);
  border-radius: 50%;
  animation: srv-ref-spin 26s linear infinite;
}
.srv-showwide__ring--2 {
  inset: 18%;
  border-color: rgba(255, 255, 255, 0.12);
  animation-direction: reverse;
  animation-duration: 19s;
}
.srv-showwide__core {
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 223, 0, 0.45), rgba(26, 32, 44, 0.95));
  box-shadow: 0 0 40px rgba(255, 223, 0, 0.12);
}
@keyframes srv-ref-spin {
  to { transform: rotate(360deg); }
}

/* Stats band */
.srv-stats { text-align: center; }
.srv-stats__grid { display: flex; justify-content: center; gap: clamp(32px, 6vw, 80px); flex-wrap: wrap; }
.srv-stat { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.srv-stat__val { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--hp-yellow); letter-spacing: -0.03em; line-height: 1; }
.srv-stat__lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }

.srv-stats--ref .srv-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 16px;
  max-width: 1040px;
  margin: 0 auto;
  flex-wrap: unset;
}
.srv-stats--ref .srv-stat {
  position: relative;
  padding: 8px 16px;
}
.srv-stats--ref .srv-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* Link qualità */
.srv-qualita { position: relative; overflow: hidden; }
.srv-qualita__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
}
.srv-qualita__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.srv-qualita__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(37, 46, 59, 0.94) 0%, rgba(47, 59, 78, 0.9) 50%, rgba(26, 32, 44, 0.93) 100%);
  z-index: 1;
  pointer-events: none;
}
.srv-qualita__container { position: relative; z-index: 2; }
.srv-qualita__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.srv-qualita__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.62); margin: 16px 0 28px; }
.srv-qualita__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--hp-yellow); text-decoration: none;
  transition: gap .3s var(--hp-ease);
}
.srv-qualita__link:hover { gap: 14px; }
.srv-qualita__link svg { width: 16px; height: 16px; }

/* ============================================================================
   ATTIVITÀ E SERVIZI — Version B (srvb-)
   ============================================================================ */

.srvb-servizi { background: var(--hp-dark-3); padding: clamp(72px, 9vw, 120px) 0; }
.srvb-servizi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.srvb-servizi__head { margin-bottom: 16px; }
.srvb-servizi__title { margin-bottom: 0; }

.srvb-serv-card {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--hp-dark-2);
  border-radius: 4px;
}
.srvb-serv-card__bg { position: absolute; inset: 0; overflow: hidden; }
.srvb-serv-card__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--hp-ease); }
.srvb-serv-card:hover .srvb-serv-card__bg img { transform: scale(1.06); }
.srvb-serv-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,46,59,0.96) 0%, rgba(37,46,59,0.50) 50%, rgba(37,46,59,0.10) 100%);
  z-index: 1;
}
.srvb-serv-card__bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--hp-yellow); z-index: 3;
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--hp-ease);
}
.srvb-serv-card:hover .srvb-serv-card__bar { transform: scaleX(1); }
.srvb-serv-card__inner { position: relative; z-index: 2; padding: 28px; width: 100%; }
.srvb-serv-card__icon { font-size: 28px; display: block; margin-bottom: 10px; }
.srvb-serv-card__num { font-size: 10px; letter-spacing: 0.15em; color: rgba(255,223,0,0.7); margin-bottom: 6px; font-weight: 700; }
.srvb-serv-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.srvb-serv-card__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.srvb-serv-card__text {
  font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.60);
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--hp-ease), transform .4s var(--hp-ease);
}
.srvb-serv-card:hover .srvb-serv-card__text { opacity: 1; transform: none; }

/* Stats Version B */
.srvb-stats { position: relative; background: var(--hp-dark-3); padding: clamp(72px, 9vw, 120px) 0; overflow: hidden; }
.srvb-stats__bg-mesh {
  position: absolute; inset: -50%;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,223,0,0.06) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: csb-bg-shift 12s ease-in-out infinite; z-index: 0;
}
.srvb-stats .hp-container { position: relative; z-index: 1; }
.srvb-stats__grid { display: flex; justify-content: center; gap: clamp(40px, 7vw, 100px); flex-wrap: wrap; }
.srvb-stat { text-align: center; display: flex; flex-direction: column; gap: 8px; }
.srvb-stat__val { font-size: clamp(36px, 5vw, 64px); font-weight: 900; color: var(--hp-yellow); letter-spacing: -0.03em; line-height: 1; }
.srvb-stat__lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* Qualità Version B */
.srvb-qualita {
  position: relative; background: var(--hp-dark-2);
  padding: clamp(72px, 9vw, 120px) 0; overflow: hidden; text-align: center;
}
.srvb-qualita__bg-shift {
  position: absolute; inset: -50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,223,0,0.05) 0%, transparent 60%);
  background-size: 200% 200%;
  animation: csb-bg-shift 15s ease-in-out infinite; z-index: 0;
}
.srvb-qualita .hp-container { position: relative; z-index: 1; }
.srvb-qualita__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.62); max-width: 600px; margin: 16px auto 28px; }
.srvb-qualita__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.srvb-qualita__overlay { position: absolute; inset: 0; z-index: 0; background: rgba(37,46,59,.45); }
.srvb-qualita__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hp-yellow);
}

/* ============================================================================
   PARTNERSHIP — Version A (par-)
   ============================================================================ */

/* Banca: split bianco */
.par-banca__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 80px); align-items: start; margin-top: 40px; }
.par-banca__copy { display: flex; flex-direction: column; gap: 20px; }
.par-banca__num { font-size: clamp(80px, 12vw, 160px); font-weight: 900; color: rgba(58,69,87,0.05); line-height: 1; user-select: none; margin-bottom: -20px; }
.par-banca__text { font-size: 15px; line-height: 1.75; color: #555; }
.par-banca__text p { margin: 0 0 14px; }
.par-banca__text p:last-child { margin-bottom: 0; }
.par-banca__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.par-banca__media { position: relative; overflow: hidden; border-radius: 4px; min-height: 400px; background: rgba(58,69,87,0.08); }
.par-banca__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--hp-ease); }
.par-banca:hover .par-banca__media img { transform: scale(1.03); }

/* Factory: feature list dark */
.par-factory__intro { font-size: 15px; color: rgba(255,255,255,0.60); max-width: 560px; margin: 16px 0 48px; line-height: 1.7; }
.par-factory__list { display: flex; flex-direction: column; gap: 0; max-width: 760px; }
.par-factory__item { display: grid; grid-template-columns: 48px 1fr; gap: 24px; align-items: start; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.par-factory__item:last-child { border-bottom: none; }
.par-factory__item-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,223,0,0.07); border: 1px solid rgba(255,223,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--hp-yellow); letter-spacing: 0.08em; flex-shrink: 0;
}
.par-factory__item-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.par-factory__item-text { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.55); margin: 0; }

/* Vantaggi: 2x2 grid bianca */
.par-vantaggi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.par-vantaggio {
  background: #fff;
  border: 1px solid rgba(58,69,87,0.10); border-left: 3px solid transparent;
  border-radius: 2px; padding: 32px 28px;
  transition: border-left-color .3s var(--hp-ease), box-shadow .3s var(--hp-ease);
}
.par-vantaggio:hover { border-left-color: var(--hp-yellow); box-shadow: 0 8px 32px rgba(58,69,87,0.10); }
.par-vantaggio__num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: rgba(58,69,87,0.25); margin-bottom: 10px; }
.par-vantaggio__title { font-size: 17px; font-weight: 700; color: var(--hp-dark); margin-bottom: 10px; }
.par-vantaggio__text { font-size: 14px; line-height: 1.7; color: #666; margin: 0; }

/* ============================================================================
   PARTNERSHIP — Version B (parb-)
   ============================================================================ */

.parb-banca { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; background: var(--hp-dark-2); overflow: hidden; }
.parb-banca__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 110px) clamp(40px, 6vw, 80px); gap: 24px; position: relative; z-index: 2; }
.parb-banca__title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.2; }
.parb-banca__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.65); }
.parb-banca__text p { margin: 0 0 14px; }
.parb-banca__text p:last-child { margin-bottom: 0; }
.parb-banca__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.parb-banca__media { position: relative; overflow: hidden; }
.parb-banca__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--hp-ease); }
.parb-banca:hover .parb-banca__media img { transform: scale(1.04); }
.parb-banca__gradient { position: absolute; inset: 0; background: linear-gradient(to right, var(--hp-dark-2) 0%, transparent 40%); z-index: 1; pointer-events: none; }
.parb-banca__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.parb-banca__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.parb-banca__overlay { position: absolute; inset: 0; z-index: 1; background: rgba(37,46,59,.55); }

.parb-factory { position: relative; background: var(--hp-dark-3); padding: clamp(72px, 9vw, 120px) 0; overflow: hidden; }
.parb-factory__mesh {
  position: absolute; inset: -50%;
  background: radial-gradient(ellipse at 25% 50%, rgba(255,223,0,0.06) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: csb-bg-shift 14s ease-in-out infinite; z-index: 0;
}
.parb-factory__mesh-b {
  position: absolute; inset: -50%;
  background: radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.05) 0%, transparent 55%);
  background-size: 200% 200%;
  animation: csb-bg-shift 18s ease-in-out infinite reverse;
  z-index: 0;
}
.parb-factory__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.parb-factory__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.parb-factory__overlay { position: absolute; inset: 0; z-index: 0; background: rgba(37,46,59,.55); }
.parb-factory .hp-container { position: relative; z-index: 1; }
.parb-factory__intro { font-size: 15px; color: rgba(255,255,255,0.60); max-width: 560px; margin: 16px 0 48px; line-height: 1.7; }
.parb-factory__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.parb-feat-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 28px 22px;
  transition: background .3s var(--hp-ease), border-color .3s var(--hp-ease), transform .3s var(--hp-ease);
}
.parb-feat-card:hover { background: rgba(255,223,0,0.04); border-color: rgba(255,223,0,0.2); transform: translateY(-4px); }
.parb-feat-card__num { font-size: 28px; font-weight: 900; color: rgba(255,223,0,0.2); line-height: 1; margin-bottom: 12px; letter-spacing: -0.03em; }
.parb-feat-card__title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.parb-feat-card__text { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.55); margin: 0; }

.parb-vantaggi { background: var(--hp-dark-2); padding: clamp(72px, 9vw, 120px) 0; }
.parb-vantaggi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.parb-vcard {
  position: relative; min-height: 280px; overflow: hidden; border-radius: 4px;
  background: var(--hp-dark-3); border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 30px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: border-color .3s var(--hp-ease);
}
.parb-vcard:hover { border-color: rgba(255,223,0,0.3); }
.parb-vcard__bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--hp-yellow); transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s var(--hp-ease);
}
.parb-vcard:hover .parb-vcard__bar { transform: scaleY(1); }
.parb-vcard__num { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,223,0,0.6); margin-bottom: 10px; }
.parb-vcard__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.parb-vcard__text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.60); margin: 0; }
.parb-vcard__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37,46,59,.88) 0%, rgba(37,46,59,.2) 100%); z-index: 1; }
.parb-vcard__inner { position: relative; z-index: 2; }
.parb-vcard__meta { margin-bottom: 6px; }

/* ============================================================================
   QUALITÀ E CONFORMITÀ — Version A (qlt-)
   ============================================================================ */

.qlt-gmp__intro { font-size: 15px; color: #555; max-width: 640px; margin: 16px 0 48px; line-height: 1.7; }
.qlt-gmp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.qlt-gmp-card {
  border: 1px solid rgba(58,69,87,0.12); border-radius: 4px;
  padding: 40px 36px; background: #fff;
  transition: box-shadow .3s var(--hp-ease), border-color .3s var(--hp-ease);
}
.qlt-gmp-card:hover { box-shadow: 0 12px 40px rgba(58,69,87,0.10); border-color: rgba(255,223,0,0.25); }
.qlt-gmp-card--b { border-top: 3px solid var(--hp-yellow); }
.qlt-gmp-card__label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hp-yellow); background: rgba(255,223,0,0.08);
  border: 1px solid rgba(255,223,0,0.2); border-radius: 2px;
  padding: 4px 10px; margin-bottom: 16px;
}
.qlt-gmp-card__title { font-size: 20px; font-weight: 700; color: var(--hp-dark); margin-bottom: 12px; letter-spacing: -0.01em; }
.qlt-gmp-card__text { font-size: 14px; line-height: 1.7; color: #666; margin: 0; }

/* Cappa: 3 feature dark */
.qlt-cappa__intro { font-size: 15px; color: rgba(255,255,255,0.60); max-width: 560px; margin: 16px 0 48px; line-height: 1.7; }
.qlt-cappa__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.qlt-cappa__feat {
  border-left: 2px solid rgba(255,223,0,0.15); padding-left: 24px;
  transition: border-left-color .3s var(--hp-ease);
}
.qlt-cappa__feat:hover { border-left-color: var(--hp-yellow); }
.qlt-cappa__feat-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--hp-yellow); opacity: 0.7; margin-bottom: 10px; }
.qlt-cappa__feat-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.qlt-cappa__feat-text { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.55); margin: 0; }

/* Tracciabilità: split */
.qlt-traccia__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 80px); align-items: start; margin-top: 40px; }
.qlt-traccia__text { font-size: 15px; line-height: 1.75; color: #555; }
.qlt-traccia__text p { margin: 0 0 14px; }
.qlt-traccia__text p:last-child { margin-bottom: 0; }
.qlt-traccia__list { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; }
.qlt-traccia__item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(58,69,87,0.08);
  font-size: 14px; color: var(--hp-dark); line-height: 1.5;
}
.qlt-traccia__item:last-child { border-bottom: none; }
.qlt-traccia__item-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,223,0,0.12); border: 1.5px solid rgba(255,223,0,0.5);
  flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--hp-yellow); font-weight: 700;
}

/* Conformità normativa */
.qlt-normativa__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.qlt-normativa__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.62); margin: 16px 0 36px; }
.qlt-normativa__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============================================================================
   QUALITÀ E CONFORMITÀ — Version B (qltb-)
   ============================================================================ */

.qltb-gmp { display: block; min-height: 65vh; background: var(--hp-dark-3); }
.qltb-gmp__header { padding-top: 42px; }
.qltb-gmp__cards { display: grid; grid-template-columns: 1fr 1fr; }
.qltb-gmp-card {
  position: relative; min-height: 65vh; overflow: hidden;
  display: flex; align-items: flex-end; background: var(--hp-dark-2);
  padding: clamp(36px, 4vw, 56px);
}
.qltb-gmp-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,46,59,0.97) 0%, rgba(37,46,59,0.50) 60%, rgba(37,46,59,0.15) 100%);
  z-index: 1;
}
.qltb-gmp-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--hp-yellow); z-index: 3; }
.qltb-gmp-card__inner { position: relative; z-index: 2; }
.qltb-gmp-card__label { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--hp-yellow); margin-bottom: 12px; }
.qltb-gmp-card__title { font-size: clamp(18px, 2vw, 26px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.qltb-gmp-card__text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 0; }

.qltb-cappa { position: relative; background: var(--hp-dark-2); padding: clamp(72px, 9vw, 120px) 0; overflow: hidden; }
.qltb-cappa__mesh {
  position: absolute; inset: -50%;
  background: radial-gradient(ellipse at 40% 50%, rgba(255,223,0,0.05) 0%, transparent 55%);
  background-size: 200% 200%;
  animation: csb-bg-shift 16s ease-in-out infinite; z-index: 0;
}
.qltb-cappa .hp-container { position: relative; z-index: 1; }
.qltb-cappa__intro { font-size: 15px; color: rgba(255,255,255,0.60); max-width: 560px; margin: 16px 0 48px; line-height: 1.7; }
.qltb-cappa__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.qltb-cappa__feat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 30px 24px; backdrop-filter: blur(12px);
  transition: background .3s var(--hp-ease), border-color .3s var(--hp-ease);
}
.qltb-cappa__feat:hover { background: rgba(255,223,0,0.05); border-color: rgba(255,223,0,0.2); }
.qltb-cappa__feat-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--hp-yellow); opacity: 0.7; margin-bottom: 10px; }
.qltb-cappa__feat-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.qltb-cappa__feat-text { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.55); margin: 0; }

.qltb-traccia { background: var(--hp-dark-3); padding: clamp(72px, 9vw, 120px) 0; }
.qltb-traccia__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 80px); align-items: start; margin-top: 40px; }
.qltb-traccia__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.65); }
.qltb-traccia__text p { margin: 0 0 14px; }
.qltb-traccia__text p:last-child { margin-bottom: 0; }
.qltb-traccia__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.qltb-traccia__item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.qltb-traccia__item:last-child { border-bottom: none; }
.qltb-traccia__item-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hp-yellow); box-shadow: 0 0 8px rgba(255,223,0,0.5);
  flex-shrink: 0; margin-top: 5px;
}

.qltb-normativa { position: relative; background: var(--hp-dark-2); padding: clamp(72px, 9vw, 120px) 0; overflow: hidden; text-align: center; }
.qltb-normativa__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,223,0,0.06) 0%, transparent 70%);
  animation: csb-glow-pulse 7s ease-in-out infinite; z-index: 0;
}
.qltb-normativa .hp-container { position: relative; z-index: 1; }
.qltb-normativa__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.62); max-width: 600px; margin: 16px auto 36px; }
.qltb-normativa__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ============================================================================
   CONTATTI — Version A (cnt-)
   ============================================================================ */

.cnt-form__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(48px, 6vw, 80px); align-items: start; margin-top: 40px; }
.cnt-form__copy { display: flex; flex-direction: column; gap: 20px; }
.cnt-form__intro { font-size: 15px; line-height: 1.7; color: #666; }
.cnt-form__meta { display: flex; flex-direction: column; gap: 12px; padding-top: 12px; border-top: 1px solid rgba(58,69,87,0.08); }
.cnt-form__meta-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--hp-dark); }
.cnt-form__meta-item svg { width: 16px; height: 16px; color: var(--hp-yellow); flex-shrink: 0; }
.cnt-form__wrap {
  background: #fff; border: 1px solid rgba(58,69,87,0.10);
  border-radius: 4px; padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(58,69,87,0.06);
}

.cnt-info__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.cnt-info__col { display: flex; flex-direction: column; gap: 16px; }
.cnt-info__col-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hp-yellow); opacity: 0.8; }
.cnt-info__col-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cnt-info__col-line { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.cnt-info__col-link { font-size: 14px; color: var(--hp-yellow); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s var(--hp-ease); }
.cnt-info__col-link:hover { gap: 10px; }

.cnt-cta-email {
  display: inline-block; font-size: 16px; font-weight: 600;
  color: var(--hp-yellow); text-decoration: none;
  border-bottom: 1px solid rgba(255,223,0,0.3); padding-bottom: 3px;
  transition: border-color .3s var(--hp-ease), opacity .3s var(--hp-ease);
}
.cnt-cta-email:hover { border-color: var(--hp-yellow); opacity: 0.85; }

/* ============================================================================
   CONTATTI — Version B (cntb-)
   ============================================================================ */

.cntb-form { background: var(--hp-dark-2); padding: clamp(72px, 9vw, 120px) 0; }
.cntb-form__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(48px, 6vw, 80px); align-items: start; margin-top: 40px; }
.cntb-form__copy { display: flex; flex-direction: column; gap: 20px; }
.cntb-form__intro { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.62); }
.cntb-form__meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.70);
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cntb-form__meta-item svg { width: 16px; height: 16px; color: var(--hp-yellow); flex-shrink: 0; }
.cntb-form__glass {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 36px 32px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}

.cntb-info { position: relative; background: var(--hp-dark-3); padding: clamp(72px, 9vw, 120px) 0; overflow: hidden; }
.cntb-info__mesh {
  position: absolute; inset: -50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,223,0,0.05) 0%, transparent 55%);
  background-size: 200% 200%;
  animation: csb-bg-shift 14s ease-in-out infinite; z-index: 0;
}
.cntb-info .hp-container { position: relative; z-index: 1; }
.cntb-info__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cntb-info-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 32px 26px; backdrop-filter: blur(12px);
  transition: border-color .3s var(--hp-ease), background .3s var(--hp-ease);
}
.cntb-info-card:hover { border-color: rgba(255,223,0,0.2); background: rgba(255,223,0,0.03); }
.cntb-info-card__icon { margin-bottom: 16px; color: var(--hp-yellow); }
.cntb-info-card__icon svg { width: 24px; height: 24px; }
.cntb-info-card__label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,223,0,0.7); margin-bottom: 12px; }
.cntb-info-card__title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cntb-info-card__line { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.cntb-info-card__link { font-size: 14px; color: var(--hp-yellow); text-decoration: none; }
.cntb-info-card__link:hover { text-decoration: underline; }

/* ============================================================================
   RESPONSIVE — tutte le pagine interne
   ============================================================================ */

@media (max-width: 1024px) {
  .met-bio__grid        { grid-template-columns: 1fr; }
  .met-gmp__grid        { grid-template-columns: 1fr; }
  .metb-bio             { grid-template-columns: 1fr; }
  .metb-process__card-inner { grid-template-columns: 60px 1fr auto; }
  .srv-proc__grid       { grid-template-columns: 1fr; }
  .srv-feat__grid       { grid-template-columns: 1fr 1fr; }
  .srv-stats--ref .srv-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .srvb-servizi__grid   { grid-template-columns: 1fr 1fr; }
  .par-banca__grid      { grid-template-columns: 1fr; }
  .parb-banca           { grid-template-columns: 1fr; }
  .parb-factory__grid   { grid-template-columns: 1fr 1fr; }
  .parb-vantaggi__grid  { grid-template-columns: 1fr; }
  .qlt-cappa__features  { grid-template-columns: 1fr 1fr; }
  .qlt-traccia__grid    { grid-template-columns: 1fr; }
  .qltb-gmp__cards      { grid-template-columns: 1fr; }
  .qltb-cappa__features { grid-template-columns: 1fr 1fr; }
  .qltb-traccia__grid   { grid-template-columns: 1fr; }
  .cnt-form__grid       { grid-template-columns: 1fr; }
  .cnt-info__grid       { grid-template-columns: 1fr 1fr; }
  .cntb-form__grid      { grid-template-columns: 1fr; }
  .cntb-info__grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .met-hero .hp-container,
  .srv-hero .hp-container,
  .par-hero .hp-container,
  .qlt-hero .hp-container,
  .cnt-hero .hp-container  { padding-top: 100px; padding-bottom: 80px; }

  .metb-hero .hp-container,
  .srvb-hero .hp-container,
  .parb-hero .hp-container,
  .qltb-hero .hp-container,
  .cntb-hero .hp-container { padding-top: 100px; padding-bottom: 100px; }

  .metb-process__card-inner { grid-template-columns: 56px 1fr; }
  .metb-process__card-badge { display: none; }
  .metb-process__sticky     { top: 60px; }
  .srv-showcase__row       { grid-template-columns: 1fr; }
  .srv-feat__grid          { grid-template-columns: 1fr; }
  .srv-stats--ref .srv-stats__grid { grid-template-columns: 1fr 1fr; }
  .srv-stats--ref .srv-stat::after { display: none; }
  .srv-showwide            { flex-direction: column; text-align: center; }
  .srv-showwide__viz       { margin: 8px auto 0; }
  .srvb-servizi__grid      { grid-template-columns: 1fr; }
  .srvb-serv-card          { min-height: 50vw; }
  .srvb-serv-card__text    { opacity: 1; transform: none; }
  .par-vantaggi__grid      { grid-template-columns: 1fr; }
  .parb-factory__grid      { grid-template-columns: 1fr; }
  .qlt-gmp__grid           { grid-template-columns: 1fr; }
  .qlt-cappa__features     { grid-template-columns: 1fr; }
  .qltb-gmp__cards         { grid-template-columns: 1fr; }
  .qltb-cappa__features    { grid-template-columns: 1fr; }
  .cnt-info__grid          { grid-template-columns: 1fr; }
  .cntb-info__grid         { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .metb-hero__bg img, .srvb-hero__bg img,
  .parb-hero__bg img, .qltb-hero__bg img,
  .cntb-hero__bg img    { animation: none; }

  .metb-hero__glow, .srvb-hero__glow,
  .parb-hero__glow, .qltb-hero__glow,
  .cntb-hero__glow      { animation: none; }

  .srvb-stats__bg-mesh,
  .srvb-qualita__bg-shift, .parb-factory__mesh,
  .qltb-cappa__mesh, .qltb-normativa__glow,
  .cntb-info__mesh      { animation: none; }

  .srv-showwide__ring   { animation: none; }
}

