/*
  ACACIA Theme - main stylesheet
*/

/* ═══════════════════════════════════════════
   SHARED BASE
═══════════════════════════════════════════ */
:root {
  --navy: #1C2F3A;
  --navy-mid: #2A4456;
  --green: #4A7A55;
  --green-light: #6B9E76;
  --green-pale: #EEF4EF;
  --cream: #F7F4EF;
  --warm-white: #FAFAF8;
  --stone: #8A8C85;
  --stone-light: #C8C9C4;
  --text: #1C2F3A;
  --text-mid: #4A5560;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.1; }

/* ── PAGE CONTAINER (non piu SPA, ma classe mantenuta per retrocompat CSS sezioni) ── */
.page { display: block; opacity: 1; }
.page.active { display: block; opacity: 1; }
.page.visible { opacity: 1; }

/* ── SHARED NAV ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  transition: padding 0.3s, box-shadow 0.3s;
  flex-wrap: nowrap;
  gap: 24px;
  min-height: 72px;
}
#main-nav.scrolled {
  padding: 6px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img, .nav-logo-img {
  height: 72px !important; width: auto !important;
  max-width: none;
  transition: height 0.3s; cursor: pointer; display: block;
  border: 0; background: transparent;
}
#main-nav.scrolled .nav-logo img, #main-nav.scrolled .nav-logo-img { height: 60px !important; }

.nav-links {
  display: flex; gap: 22px; list-style: none; align-items: center;
  flex-wrap: nowrap;
  margin: 0; padding: 0;
}
.nav-links li { white-space: nowrap; flex-shrink: 0; }
.nav-links a {
  text-decoration: none; font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-mid); transition: color 0.2s; cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active-link { color: var(--navy); font-weight: 500; }

.nav-switch {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
  padding: 8px 16px; border-radius: 2px;
  border: 1px solid var(--stone-light);
  color: var(--text-mid);
  transition: all 0.2s; background: transparent;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.nav-switch:hover { border-color: var(--navy); color: var(--navy); }
.nav-switch.b2b-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.nav-cta-btn {
  background: var(--green) !important; color: #fff !important;
  padding: 10px 20px; border-radius: 2px; border: none;
  font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s !important; text-decoration: none;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--navy) !important; color: #fff !important; }

/* Breakpoint intermedio: stringo ancora sui laptop più piccoli prima di arrivare al mobile menu */
@media (max-width: 1180px) {
  #main-nav, #main-nav.scrolled { padding-left: 24px; padding-right: 24px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; letter-spacing: 0.05em; }
}

/* ════════════════════════════════════════════
   B2C PAGE STYLES
════════════════════════════════════════════ */

/* utils */
#page-b2c .container { max-width: 1180px; margin: 0 auto; padding: 0 60px; }
#page-b2c .section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
#page-b2c .section-label::after { content: ''; display: block; width: 32px; height: 1px; background: var(--green); }
#page-b2c .section-label.light { color: var(--green-light); }
#page-b2c .section-label.light::after { background: var(--green-light); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── HERO B2C ── */
#page-b2c #b2c-hero {
  min-height: 100vh; position: relative;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 80px; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-bg-grid::after {
  content: ''; position: absolute;
  top: -180px; right: -180px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,122,85,0.16) 0%, transparent 65%);
}
.hero-acacia-bg {
  position: absolute; right: 48px; top: 90px;
  width: 380px; opacity: 0.04; transform: rotate(10deg);
  pointer-events: none;
}
.hero-acacia-bg svg {
  stroke: #fff; fill: none; stroke-width: 1.2;
  stroke-linecap: round; stroke-linejoin: round;
}

.b2c-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 6fr 4fr;
  gap: 60px; align-items: flex-end;
}
.b2c-hero-content { padding: 0 0 80px 60px; }

.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 28px; display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--green-light); }

#page-b2c .hero-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300; color: #fff;
  line-height: 1.06; letter-spacing: -0.01em; margin-bottom: 28px;
}
#page-b2c .hero-title em { font-style: italic; color: var(--green-light); }

.hero-lead {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.6); font-weight: 300;
  max-width: 500px; margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  text-decoration: none; padding: 16px 36px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.2s, transform 0.2s; cursor: pointer;
}
.btn-primary-hero:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.6);
  text-decoration: none; padding: 16px 28px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-hero:hover { border-color: rgba(255,255,255,0.45); color: #fff; }

/* Hero right: benefit + trust */
.b2c-hero-right {
  align-self: stretch;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-left: 1px solid rgba(255,255,255,0.07);
  padding: 0 60px 80px 60px; gap: 0;
}
.benefit-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(74,122,85,0.15);
  border: 1px solid rgba(107,158,118,0.4);
  border-radius: 100px; padding: 10px 20px;
  margin-bottom: 36px; align-self: flex-start;
}
.benefit-pill-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-light);
}
.benefit-pill-text {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-light);
}
.trust-item {
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-bottom: none; }
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 6px;
}
.trust-num span { color: var(--green-light); }
.trust-label { font-size: 13px; color: rgba(255,255,255,0.48); font-weight: 300; line-height: 1.5; }

/* Hero bottom bar */
.hero-bottom-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hbb-item {
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 12px;
}
.hbb-item:last-child { border-right: none; }
.hbb-icon { width: 28px; height: 28px; flex-shrink: 0; opacity: 0.45; }
.hbb-icon svg { width: 100%; height: 100%; stroke: #fff; fill: none; stroke-width: 1.4; }
.hbb-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; font-weight: 300; }
.hbb-text strong { display: block; color: rgba(255,255,255,0.82); font-weight: 500; font-size: 13px; }

/* ── EMPATIA / MANIFESTO ── */
#b2c-empatia { padding: 120px 0; background: var(--warm-white); position: relative; overflow: hidden; }

.empatia-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 100px; align-items: center;
}
.empatia-left h2 {
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 300; color: var(--navy); line-height: 1.08; margin-bottom: 24px;
}
.empatia-left h2 em { font-style: italic; color: var(--green); }
.empatia-left .intro {
  font-size: 16px; line-height: 1.75; color: var(--text-mid);
  font-weight: 300;
}
.empatia-right { display: flex; flex-direction: column; gap: 0; }
.empatia-row {
  padding: 32px 0; border-bottom: 1px solid var(--stone-light);
  display: flex; gap: 24px; align-items: flex-start;
}
.empatia-row:first-child { border-top: 1px solid var(--stone-light); }
.empatia-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 2px;
  background: var(--green-pale); border: 1px solid rgba(74,122,85,0.2);
  display: flex; align-items: center; justify-content: center;
}
.empatia-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.5; }
.empatia-row-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 6px;
}
.empatia-row-text p { font-size: 14px; line-height: 1.65; color: var(--text-mid); font-weight: 300; }

/* ── BENEFIT SECTION ── */
#b2c-benefit {
  padding: 100px 0; background: var(--navy); position: relative; overflow: hidden;
}
#b2c-benefit::before {
  content: ''; position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,122,85,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.benefit-acacia-deco {
  position: absolute; top: 40px; left: -60px;
  width: 380px; opacity: 0.045; transform: rotate(8deg) scaleX(-1);
  pointer-events: none;
}
.benefit-acacia-deco svg { stroke: #fff; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }

.benefit-inner {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 100px; align-items: center;
  position: relative; z-index: 1;
}
.benefit-left { display: flex; flex-direction: column; gap: 28px; }
.benefit-badge-large {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 110px; height: 110px; border-radius: 50%;
  border: 1px solid rgba(107,158,118,0.5);
  background: rgba(74,122,85,0.1);
  text-align: center; padding: 16px;
}
.benefit-badge-large span {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-light); line-height: 1.4;
}
.benefit-left h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 300; color: #fff; line-height: 1.1;
}
.benefit-left h2 em { font-style: italic; color: var(--green-light); }
.benefit-left p {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.55); font-weight: 300;
}
.benefit-right { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 30px;
  transition: background 0.3s;
}
.benefit-card:hover { background: rgba(255,255,255,0.07); }
.benefit-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; color: #fff;
  margin-bottom: 10px; letter-spacing: 0.02em;
}
.benefit-card p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.48); font-weight: 300; }
.benefit-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; color: rgba(255,255,255,0.12);
  line-height: 1; margin-bottom: 16px;
}

/* ── PROCESS ── */
#b2c-process { padding: 120px 0; background: var(--cream); }
.process-header {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; margin-bottom: 72px; align-items: end;
}
.process-header h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300; color: var(--navy); line-height: 1.1;
}
.process-header p {
  font-size: 16px; line-height: 1.75; color: var(--text-mid); font-weight: 300;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--stone-light); z-index: 0;
}
.proc-step { padding: 0 28px; position: relative; z-index: 1; }
.proc-step + .proc-step { border-left: 1px solid var(--stone-light); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 1px solid var(--stone-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--stone); font-weight: 300;
  margin-bottom: 28px; transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.proc-step:hover .step-num {
  background: var(--green-pale); border-color: var(--green-light); color: var(--green);
}
.proc-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 10px;
}
.proc-step p { font-size: 13px; line-height: 1.65; color: var(--text-mid); font-weight: 300; }

/* ── LOCATIONS + MAP ── */
#b2c-locations { padding: 120px 0; background: var(--warm-white); }
.locations-header { margin-bottom: 64px; }
.locations-header h2 {
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300; color: var(--navy); line-height: 1.1; margin-bottom: 16px;
}
.locations-header p {
  font-size: 16px; line-height: 1.7; color: var(--text-mid);
  font-weight: 300; max-width: 580px;
}
.locations-layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start;
}
.locations-cards { display: flex; flex-direction: column; gap: 2px; }
.loc-card {
  background: var(--cream); padding: 36px 32px;
  border: 1px solid var(--stone-light);
  cursor: pointer; transition: background 0.25s, box-shadow 0.25s;
  position: relative;
}
.loc-card:hover, .loc-card.active {
  background: var(--green-pale); border-color: var(--green-light);
}
.loc-card.active::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px; background: var(--green);
}
.loc-logo-ph {
  width: 100px; height: 40px;
  background: rgba(74,122,85,0.08);
  border: 1px dashed var(--stone-light);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 16px;
}
.loc-card h3 { font-size: 24px; font-weight: 300; color: var(--navy); margin-bottom: 6px; }
.loc-zone {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.loc-zone::before { content: ''; display: block; width: 14px; height: 1px; background: var(--stone-light); }
.loc-card p { font-size: 13px; line-height: 1.6; color: var(--text-mid); font-weight: 300; }
.loc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green); text-decoration: none;
  margin-top: 14px; transition: gap 0.2s;
}
.loc-link:hover { gap: 12px; }

.loc-card.future {
  border: 1px dashed var(--stone-light); background: transparent;
  display: flex; align-items: center; gap: 16px;
  cursor: default;
}
.loc-card.future:hover { background: transparent; border-color: var(--stone-light); }
.future-plus {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--stone-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.future-plus svg { width: 16px; height: 16px; stroke: var(--stone); fill: none; stroke-width: 1.5; }
.loc-card.future p { font-size: 13px; color: var(--stone); margin: 0; }

/* Map container */
.map-container {
  position: sticky; top: 100px;
  height: 560px; border-radius: 2px;
  overflow: hidden; border: 1px solid var(--stone-light);
  box-shadow: 0 4px 24px rgba(28,47,58,0.08);
}
#sede-map { width: 100%; height: 100%; }

/* Leaflet custom marker */
.acacia-marker {
  background: var(--navy); color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  border: 2px solid var(--green-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
}
.acacia-marker.highlight {
  background: var(--green); border-color: #fff;
  transform: scale(1.15);
}
.leaflet-popup-content-wrapper {
  border-radius: 2px !important;
  box-shadow: 0 4px 20px rgba(28,47,58,0.15) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.map-popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 4px;
}
.map-popup-zone {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 8px;
}
.map-popup-link {
  font-size: 12px; color: var(--green); font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
}

/* ── B2B CTA STRIP ── */
#b2c-b2bcta {
  background: var(--navy); padding: 96px 0;
  position: relative; overflow: hidden;
}
#b2c-b2bcta::before {
  content: ''; position: absolute;
  top: -180px; left: -180px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,122,85,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.b2bcta-inner {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.b2bcta-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 22px; display: flex; align-items: center; gap: 12px;
}
.b2bcta-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--green-light); }
.b2bcta-left h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300; color: #fff; line-height: 1.12; margin-bottom: 18px;
}
.b2bcta-left h2 em { font-style: italic; color: var(--green-light); }
.b2bcta-left p {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.52); font-weight: 300; max-width: 480px;
}
.b2bcta-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 40px;
}
.b2bcta-right-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 18px;
}
.b2bcta-points {
  list-style: none; margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.b2bcta-points li {
  font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.72);
  font-weight: 300; display: flex; gap: 10px; align-items: flex-start;
}
.b2bcta-points li::before { content: '→'; color: var(--green-light); flex-shrink: 0; margin-top: 1px; }
.btn-b2bcta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: #fff; border: none;
  width: 100%; padding: 16px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: background 0.2s;
}
.btn-b2bcta:hover { background: var(--green-light); }

/* ── FOOTER B2C ── */
#page-b2c footer {
  background: #111C24; padding: 48px 60px 36px;
}
#page-b2c .footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px;
}
#page-b2c .footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
#page-b2c .footer-logo img, #page-b2c .footer-logo-img {
  height: 64px !important; width: auto !important; max-width: none;
  opacity: 0.9; display: block; border: 0;
}
#page-b2c .footer-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: rgba(255,255,255,0.7);
  text-align: center; display: block; margin-bottom: 6px;
}
#page-b2c .footer-email {
  font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; display: block; text-align: center;
  transition: color 0.2s;
}
#page-b2c .footer-email:hover { color: rgba(255,255,255,0.7); }
#page-b2c .footer-links-col {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
#page-b2c .footer-links-col a {
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s; cursor: pointer;
}
#page-b2c .footer-links-col a:hover { color: rgba(255,255,255,0.65); }
#page-b2c .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
#page-b2c .footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }


/* ════════════════════════════════════════════
   B2B PAGE STYLES (scoped to #page-b2b)
   Injected from existing mockup, prefixed
════════════════════════════════════════════ */

  :root {
    --navy: #1C2F3A;
    --navy-mid: #2A4456;
    --green: #4A7A55;
    --green-light: #6B9E76;
    --green-pale: #EEF4EF;
    --cream: #F7F4EF;
    --warm-white: #FAFAF8;
    --stone: #8A8C85;
    --stone-light: #C8C9C4;
    --text: #1C2F3A;
    --text-mid: #4A5560;
    --gold-accent: #C9A96E;
  }

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

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

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── TYPOGRAPHY ─── */
  .serif { font-family: 'Cormorant Garamond', Georgia, serif; }

  h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.1; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 12px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s, box-shadow 0.3s;
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  }

  nav.scrolled {
    padding: 8px 60px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }

  /* Logo: color version visible by default, white hidden */
  .logo-color { display: block; }
  .logo-white { display: none; }

  .nav-logo img {
    height: 58px;
    width: auto;
    transition: height 0.3s;
  }

  nav.scrolled .nav-logo img {
    height: 48px;
  }

  /* Nav always on light background */
  nav {
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--navy); }

  .nav-cta {
    background: var(--navy) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 2px;
    border: none;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--green) !important; color: #fff !important; }

  /* ─── HERO ─── */
  #b2b-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 180px 80px 80px 80px; /* ← modificato da 120px */
    position: relative;
    overflow: hidden;
  }

  .hero-left::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,122,85,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,122,85,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 500;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--green-light);
  }

  .hero-title {
    font-size: clamp(40px, 4.5vw, 68px);
    font-weight: 300;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }

  .hero-title em {
    font-style: italic;
    color: var(--green-light);
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    max-width: 380px;
    margin-bottom: 52px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

  .hero-right {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 180px 80px 80px; /* ← modificato da 120px */
    position: relative;
  }

  .hero-right-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 420px;
  }

  .hero-stat {
    padding: 36px 0;
    border-bottom: 1px solid var(--stone-light);
  }

  .hero-stat:last-child { border-bottom: none; }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
  }

  .hero-stat-num span { color: var(--green); }

  .hero-stat-label {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 400;
    line-height: 1.5;
  }

  .benefit-badge {
    position: absolute;
    top: 100px;
    right: 40px;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    border-radius: 50%;
    width: 96px; height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
  }

  .benefit-badge-text {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    line-height: 1.3;
  }

  /* ─── SECTIONS ─── */
  section { position: relative; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--green);
  }

  /* ─── WHAT IS ─── */
  #b2b-what {
    padding: 120px 0;
    background: var(--warm-white);
  }

  .what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .what-left h2 {
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.12;
    margin-bottom: 28px;
    color: var(--navy);
  }

  .what-left p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 16px;
    font-weight: 300;
  }

  .what-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
  }

  .split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .split-col {
    padding: 32px;
    border: 1px solid var(--stone-light);
  }

  .split-col:first-child {
    border-right: none;
    background: var(--navy);
    color: #fff;
  }

  .split-col:last-child {
    background: var(--green-pale);
  }

  .split-col-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.7;
  }

  .split-col:first-child .split-col-label { color: rgba(255,255,255,0.6); }
  .split-col:last-child .split-col-label { color: var(--green); }

  .split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .split-list li {
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .split-col:first-child .split-list li { color: rgba(255,255,255,0.85); }
  .split-col:last-child .split-list li { color: var(--text-mid); }

  .split-list li::before {
    content: '—';
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 1px;
    opacity: 0.5;
  }

  /* ─── WHY ─── */
  #b2b-why {
    padding: 120px 0;
    background: var(--navy);
    overflow: hidden;
  }

  #b2b-why .section-label { color: var(--green-light); }
  #b2b-why .section-label::after { background: var(--green-light); }

  .why-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 100px;
    align-items: center;
  }

  .why-left h2 {
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 300;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 28px;
  }

  .why-left p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    margin-bottom: 14px;
  }

  .why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 36px 32px;
    transition: background 0.3s;
  }

  .why-card:hover { background: rgba(255,255,255,0.07); }

  .why-card-icon {
    width: 36px; height: 36px;
    margin-bottom: 20px;
    opacity: 0.6;
  }

  .why-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
  }

  .why-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
  }

  /* ─── MODEL ─── */
  #b2b-model {
    padding: 120px 0;
    background: var(--cream);
  }

  .model-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: end;
  }

  .model-header h2 {
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.1;
  }

  .model-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
    max-width: 600px;
  }

  .hub-schema {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hub-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .hub-step {
    padding: 40px 32px;
    border: 1px solid var(--stone-light);
    border-right: none;
    position: relative;
    background: #fff;
    transition: background 0.3s;
  }

  .hub-step:last-child { border-right: 1px solid var(--stone-light); }

  .hub-step:hover { background: var(--green-pale); }

  .hub-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--stone-light);
    line-height: 1;
    margin-bottom: 16px;
  }

  .hub-step h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }

  .hub-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-mid);
    font-weight: 300;
  }

  .hub-connector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 2px;
    margin: 0;
  }

  .hub-connector-seg {
    background: var(--stone-light);
  }

  .hub-connector-seg:nth-child(2) { background: var(--green-light); }

  .hub-center {
    margin-top: 40px;
    background: var(--navy);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hub-center-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 8px;
  }

  .hub-center h3 {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
  }

  .hub-center-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 100px;
  }

  /* ─── VALUES ─── */
  #b2b-values {
    padding: 120px 0;
    background: var(--warm-white);
  }

  .values-header {
    max-width: 640px;
    margin-bottom: 72px;
  }

  .values-header h2 {
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .values-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .value-card {
    padding: 48px 40px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .value-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s;
  }

  .value-card:hover::before { background: var(--green); }

  .value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--stone);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
  }

  .value-card h3 {
    font-size: 26px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-mid);
    font-weight: 300;
  }

  .benefit-statement {
    margin-top: 72px;
    border: 1px solid var(--stone-light);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
    background: var(--cream);
  }

  .benefit-statement-left h3 {
    font-size: 36px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
  }

  .benefit-statement-right p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 12px;
  }

  /* ─── QUALITY ─── */
  #b2b-quality {
    padding: 120px 0;
    background: var(--green-pale);
  }

  .quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .quality-left h2 {
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 28px;
  }

  .quality-left p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 14px;
  }

  .quality-right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .quality-row {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(74,122,85,0.2);
    align-items: flex-start;
  }

  .quality-row:first-child { border-top: 1px solid rgba(74,122,85,0.2); }

  .quality-icon {
    width: 40px; height: 40px;
    background: var(--green);
    border-radius: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quality-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.5; }

  .quality-row-text h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .quality-row-text p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-mid);
    font-weight: 300;
    margin: 0;
  }

  /* ─── STAKEHOLDERS ─── */
  #b2b-stakeholders {
    padding: 120px 0;
    background: var(--warm-white);
  }

  .stakeholders-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
  }

  .stakeholders-header h2 {
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .stakeholders-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
  }

  .audience-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 72px;
  }

  .audience-card {
    padding: 56px 52px;
    background: var(--cream);
    position: relative;
  }

  .audience-card.primary { background: var(--navy); }

  .audience-card-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--stone);
  }

  .audience-card.primary .audience-card-tag { color: var(--green-light); }

  .audience-card h3 {
    font-size: 28px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .audience-card.primary h3 { color: #fff; }

  .audience-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 28px;
  }

  .audience-card.primary p { color: rgba(255,255,255,0.6); }

  .audience-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--green);
    transition: gap 0.2s;
  }

  .audience-card.primary .audience-card-cta { color: var(--green-light); }

  .audience-card-cta:hover { gap: 14px; }

  /* ─── CONTACT ─── */
  #b2b-contact {
    padding: 120px 0;
    background: var(--navy);
  }

  #b2b-contact .section-label { color: var(--green-light); }
  #b2b-contact .section-label::after { background: var(--green-light); }

  .contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 100px;
    align-items: start;
  }

  .contact-left h2 {
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 300;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 24px;
  }

  .contact-left p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    margin-bottom: 40px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .contact-info-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    min-width: 60px;
    padding-top: 2px;
  }

  .contact-info-val {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-field label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 14px 18px;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: rgba(255,255,255,0.2);
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--green-light);
  }

  .form-field select option { background: var(--navy); }

  .form-field textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
  }

  .form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    max-width: 260px;
    line-height: 1.5;
  }

  .btn-submit {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .btn-submit:hover { background: var(--green-light); }

  /* ─── FOOTER ─── */
  footer {
    background: #111C24;
    padding: 48px 60px 40px;
  }

  .footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-logo img, .footer-logo-img { height: 64px !important; width: auto !important; max-width: none; opacity: 0.9; display: block; border: 0; }

  .footer-legal {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-align: right;
    line-height: 1.6;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.6); }

  /* ─── DIVIDER ─── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone-light), transparent);
    margin: 0;
  }

  /* ─── DECORATIVE ACACIA ─── */
  .acacia-deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: opacity 1.4s ease 0.4s;
  }

  .acacia-deco.visible { opacity: 1; }

  .acacia-deco svg {
    display: block;
  }

  /* positions per section */
  .hero-left .acacia-deco {
    top: 60px; right: -20px;
    width: 340px;
    opacity: 0.04;
    transform: rotate(15deg);
    transition: none;
  }

  .hero-right .acacia-deco {
    bottom: 20px; left: 10px;
    width: 200px;
    opacity: 0.06;
    transform: rotate(-20deg) scaleX(-1);
    transition: none;
  }

  #b2b-why .acacia-deco {
    bottom: -40px; right: -60px;
    width: 480px;
    transform: rotate(25deg);
  }

  #b2b-why .acacia-deco svg path,
  #b2b-why .acacia-deco svg ellipse,
  #b2b-why .acacia-deco svg line {
    stroke: #fff;
    fill: none;
  }

  #b2b-values .acacia-deco {
    top: 60px; right: -80px;
    width: 400px;
    transform: rotate(-10deg);
  }

  #b2b-values .acacia-deco svg path,
  #b2b-values .acacia-deco svg ellipse,
  #b2b-values .acacia-deco svg line {
    stroke: var(--green);
    fill: none;
  }

  #b2b-quality .acacia-deco {
    top: 40px; left: -60px;
    width: 360px;
    transform: rotate(5deg) scaleX(-1);
  }

  #b2b-quality .acacia-deco svg path,
  #b2b-quality .acacia-deco svg ellipse,
  #b2b-quality .acacia-deco svg line {
    stroke: var(--green);
    fill: none;
  }

  #b2b-contact .acacia-deco {
    top: 80px; right: -40px;
    width: 420px;
    transform: rotate(-15deg);
  }

  #b2b-contact .acacia-deco svg path,
  #b2b-contact .acacia-deco svg ellipse,
  #b2b-contact .acacia-deco svg line {
    stroke: #fff;
    fill: none;
  }

  /* section-level opacity caps */
  #b2b-why .acacia-deco.visible      { opacity: 0.05; }
  #b2b-values .acacia-deco.visible   { opacity: 0.06; }
  #b2b-quality .acacia-deco.visible  { opacity: 0.07; }
  #b2b-contact .acacia-deco.visible  { opacity: 0.05; }

  /* ─── ANIMATIONS ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }

    #b2b-hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 100px 32px 60px; }
    .hero-right { padding: 60px 32px; }
    .hero-stat-num { font-size: 40px; }

    .container { padding: 0 32px; }

    .what-grid,
    .why-grid,
    .quality-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .split-block { grid-template-columns: 1fr; }
    .split-col:first-child { border-right: 1px solid var(--stone-light); border-bottom: none; }

    .hub-steps { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .audience-cards { grid-template-columns: 1fr; }
    .model-header { grid-template-columns: 1fr; gap: 24px; }
    .benefit-statement { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
    .why-right { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top, .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
    .footer-legal { text-align: left; }
    .hub-center { flex-direction: column; align-items: flex-start; }
    #b2b-why, #b2b-what, #b2b-model, #b2b-values, #b2b-quality, #b2b-stakeholders, #b2b-contact { padding: 80px 0; }
  }


/* Override nav/footer inside b2b page wrapper — nav is shared */
#page-b2b nav { display: none !important; }


/* ── MOBILE ── */
@media (max-width: 900px) {
  #main-nav { padding: 10px 20px; }
  .nav-links { display: none; }
  #page-b2c .container { padding: 0 20px; }
  .b2c-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .b2c-hero-content { padding: 0 20px 40px; }
  .b2c-hero-right {
    border-left: none; border-top: 1px solid rgba(255,255,255,0.07);
    padding: 40px 20px;
  }
  .hero-bottom-bar { grid-template-columns: 1fr 1fr; }
  .hero-acacia-bg { display: none; }
  .empatia-grid, .benefit-inner, .process-header,
  .locations-layout, .b2bcta-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefit-right { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .map-container { position: static; height: 360px; }
  #b2c-empatia, #b2c-benefit, #b2c-process, #b2c-locations, #b2c-b2bcta { padding: 72px 0; }
  #page-b2c footer { padding: 40px 20px 28px; }
  #page-b2c .footer-top { flex-direction: column; gap: 24px; align-items: center; }
  #page-b2c .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  #page-b2c .footer-links-col { align-items: center; }
}

/* ═══════════════════════════════════════════
   NEW: P.IVA GATE FORM (B2B access)
═══════════════════════════════════════════ */
.piva-gate {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.piva-gate-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 6px;
}
.piva-gate-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.piva-gate input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 13px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.piva-gate input::placeholder {
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}
.piva-gate input:focus {
  border-color: var(--green-light);
  background: rgba(255,255,255,0.06);
}
.piva-gate input:invalid:not(:placeholder-shown) {
  border-color: rgba(200,120,120,0.45);
}
.piva-gate .btn-b2bcta {
  margin-top: 4px;
}
.piva-gate-err {
  font-size: 12px;
  color: #d98a8a;
  min-height: 16px;
  line-height: 1.4;
  display: none;
}
.piva-gate-err.visible { display: block; }
.piva-gate-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .piva-gate-fields { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   NEW: SINGLE LOCATION card (replaces multi-sede)
═══════════════════════════════════════════ */
.loc-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid rgba(74,122,85,0.25);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
  font-weight: 500;
}
.loc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.1;
}
.loc-card .loc-zone {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--stone-light);
}
.loc-info-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: baseline;
}
.loc-info-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  padding-top: 2px;
}
.loc-info-val {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
}
.loc-info-val a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
.loc-info-val a:hover { color: var(--navy); }

.loc-card.future p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--stone);
  font-weight: 300;
  margin: 0;
}
.loc-card.future p strong {
  display: block;
  color: var(--navy);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.loc-card.future p em {
  font-style: italic;
  color: var(--green);
}

/* ═══════════════════════════════════════════
   NEW: B2B gate success/feedback
═══════════════════════════════════════════ */
.piva-gate.submitting input,
.piva-gate.submitting button {
  opacity: 0.55;
  pointer-events: none;
}
/* ── FOOTER LINKS global (copre B2B e qualsiasi contesto non #page-b2c) ── */
footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: rgba(255,255,255,0.65); }

.footer-links-col a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 12px;
  cursor: pointer;
}
.footer-links-col a:hover { color: rgba(255,255,255,0.65); }

.footer-copy a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-copy a:hover { color: rgba(255,255,255,0.65); }