/* ════════════════════════════════════════════════════════════
   Boost4biz — main.css
   FINSTYLE Design System — gemello di boost4biz.blog
   Versione 1.0.0
════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES — identici al blog
───────────────────────────────────────────────────────────── */
:root {
  --primary:         #0F8060;
  --primary-dark:    #0A5C45;
  --primary-darker:  #07332F;
  --primary-mid:     #7FC0A8;
  --primary-light:   #7FC0A8;
  --primary-soft:    #E6F4EE;

  --accent:          #F39422;
  --accent-dark:     #D47817;
  --accent-darker:   #B26012;
  --accent-mid:      #F8B15A;
  --accent-soft:     #FEF3E4;

  --amber:           var(--accent);
  --amber-dark:      var(--accent-dark);
  --teal:            var(--primary);

  --navy:            #1D3D6B;
  --navy-dark:       #0F2647;
  --navy-darker:     #081E37;
  --navy-light:      #6B86AA;
  --navy-soft:       rgba(29, 61, 107, 0.08);

  --bg-main:         #FFFFFF;
  --bg-white:        #FFFFFF;
  --bg-section:      #F5F7FA;
  --bg-section-alt:  #F5F7FA;
  --bg-off:          #F5F7FA;
  --bg-dark:         #0F2647;
  --bg-footer:       #1D3D6B;
  --bg-copyright:    #0F2647;
  --fog:             #EDEFF2;
  --fog-dark:        #D4D9E0;
  --surface:         #FFFFFF;
  --surface-2:       #F5F7FA;

  --text-primary:    #3D4754;
  --text-secondary:  #7A8594;
  --text-tertiary:   #9AA5B3;
  --text-muted:      #7A8594;
  --text-light:      #B7C0CC;
  --text-legal:      #99A3B3;

  --border:          #E2E8EF;
  --border-strong:   #C5CFE0;
  --border-soft:     #F5F7FA;

  --font-display:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:       'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --radius-xs:       4px;
  --radius-sm:       8px;
  --radius:          8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       24px;
  --radius-full:     9999px;
  --radius-pill:     9999px;
  --s1: 4px;  --s2: 8px;   --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px;  --s7: 48px; --s8: 64px; --s9: 96px;

  --shadow-xs:          0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm:          0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md:          0 4px 12px rgba(0, 0, 0, 0.07);
  --shadow-lg:          0 12px 32px rgba(0, 0, 0, 0.10);
  --shadow-xl:          0 24px 48px rgba(0, 0, 0, 0.14);
  --shadow-card:        0 4px 16px rgba(30, 30, 30, 0.10);
  --shadow-card-hover:  0 8px 28px rgba(30, 30, 30, 0.18);
  --shadow-header:      0 1px 0 rgba(15, 23, 33, 0.07);
  --shadow-btn-primary: 0 2px 8px rgba(15, 128, 96, 0.25);
  --shadow-btn-accent:  0 2px 8px rgba(243, 148, 34, 0.30);

  --transition-fast: 150ms ease;
  --transition:      200ms ease;
  --transition-base: 0.2s ease;
  --transition-slow: 300ms ease;

  --container-max:   1240px;
  --container-text:  720px;
  --section-py:      80px;
  --section-py-mob:  56px;

  --header-h:        96px;
  --header-h-mob:    66px;
}

/* ─────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
textarea { resize: vertical; }

.skip-link {
  position: absolute; top: -100%; left: 1.5rem;
  background: var(--primary); color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem; font-weight: 600;
  z-index: 9999; transition: top var(--transition);
}
.skip-link:focus { top: 0; outline: 2px solid var(--primary); }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: var(--radius-sm); }

/* ─────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 80px; }

@media (max-width: 1280px) { .container { padding: 0 40px; } }
@media (max-width: 768px)  { .container { padding: 0 24px; } }

.section { background: var(--bg-white); padding: var(--section-py) 0; border-top: 4px solid var(--fog-dark); }
.section--alt   { background-color: var(--bg-off); border-top: 4px solid var(--fog-dark); padding: var(--section-py) 0; }
.section--white { background-color: var(--bg-white); }

@media (max-width: 768px) {
  .section, .section--alt, .section--white { padding: var(--section-py-mob) 0; }
}

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-feature-settings: 'cv11', 'ss01';
}
h1 { font-size: 2.25rem;  font-weight: 700; letter-spacing: -0.02em; color: var(--primary-dark); }
h2 { font-size: 1.75rem;  font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { line-height: 1.6; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--navy);
  letter-spacing: -0.015em; line-height: 1.2;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2, .section-title { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* ─────────────────────────────────────────────────────────────
   TAGS & BADGES
───────────────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 0.6875rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: var(--radius-full); line-height: 1;
}
.tag--primary { color: var(--primary); border: 1px solid var(--primary-mid); background: var(--primary-soft); }
.tag--accent  { color: var(--accent-dark); border: 1px solid var(--accent-mid); background: var(--accent-soft); }
.tag--amber   { color: var(--accent-dark); border: 1px solid var(--accent-mid); background: var(--accent-soft); }

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 700;
  letter-spacing: 0.01em; line-height: 1;
  height: 48px; padding: 0 28px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast), box-shadow var(--transition-fast),
              transform var(--transition-fast);
  text-decoration: none; white-space: nowrap;
}
.btn svg, .btn [data-lucide] { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: var(--shadow-btn-accent);
}
.btn-primary:hover  { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; pointer-events: none; }

.btn-ghost {
  background: transparent; color: var(--primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background-color: var(--primary-soft); border-color: var(--primary);
  color: var(--primary-dark); transform: translateY(-1px);
}

.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-soft); }

.btn-block { width: 100%; display: flex; justify-content: center; }
.btn-hero  { height: 56px; padding: 0 36px; font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(0,0,0,0.05);
  height: var(--header-h);
  display: flex; align-items: center;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.08); }

.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; width: 100%;
}

.navbar-logo {
  display: inline-flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.navbar-logo:hover { opacity: 0.88; transform: translateY(-1px); }
.navbar-logo-img   { height: 85px; width: auto; max-width: 400px; object-fit: contain; }

.navbar-nav { flex: 1; display: flex; justify-content: flex-end; }

.nav-list { display: flex; align-items: center; gap: 2rem; margin: 0; padding: 0; }

.nav-link {
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 500;
  color: var(--navy); text-decoration: none;
  transition: color var(--transition-fast);
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--primary); }

.navbar-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.navbar-cta { height: 40px; padding: 0 20px; font-size: 0.875rem; }

.hamburger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: transparent; color: var(--navy);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.hamburger:hover { background: var(--bg-section); border-color: var(--border-strong); }
.hamburger [data-lucide] { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(320px, 85vw);
  background: var(--navy); z-index: 1100;
  display: flex; flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1050; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-header .logo-name {
  font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700;
}
.mobile-menu-close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); background: rgba(255,255,255,0.1); color: #fff;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.2); }
.mobile-menu-close [data-lucide] { width: 18px; height: 18px; }

.mobile-nav-list { padding: 1rem 0; flex: 1; }
.mobile-nav-link {
  display: block; padding: 0.875rem 1.5rem;
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.08); color: #fff; }

.mobile-menu-cta { padding: 1.25rem 1.5rem; }

@media (max-width: 1024px) { .nav-list { gap: 1.25rem; } }

@media (max-width: 768px) {
  .site-header { height: var(--header-h-mob); }
  .navbar-logo-img { height: 56px; max-width: 300px; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar-cta { display: none; }
}
@media (max-width: 390px) {
  .navbar-logo-img { height: 50px; max-width: 240px; }
}

/* ─────────────────────────────────────────────────────────────
   FADE-IN ANIMATION
───────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible          { opacity: 1; transform: none; }
.fade-in--delayed         { transition-delay: 0.15s; }

/* ─────────────────────────────────────────────────────────────
   HERO — SEZIONE 1 HOME
───────────────────────────────────────────────────────────── */
.biz-hero {
  background: linear-gradient(160deg, #f0f4f8 0%, #e8f0fb 50%, #dbeafe 100%);
  padding: 80px 0;
}
.biz-hero--sm { padding: 56px 0; }

.biz-hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 4rem;
}

.biz-hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--navy); background: rgba(29,61,107,0.08);
  border: 1px solid rgba(29,61,107,0.15);
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.biz-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 1.25rem;
}
.biz-hero-h1-accent { color: var(--primary-dark); }

.biz-hero-sub {
  font-size: 1.125rem; line-height: 1.65;
  color: var(--text-secondary); margin-bottom: 2rem;
}

.biz-hero-cta-group {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 1rem;
}

.biz-hero-microcopy {
  font-size: 0.875rem; color: var(--text-tertiary);
  font-weight: 500; letter-spacing: 0.02em;
}

/* Dashboard (riutilizzata dal blog) */
.biz-hero-visual { display: flex; justify-content: center; }

.dashboard-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 420px;
}
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.dashboard-title { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.dashboard-badge {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary); background: var(--primary-soft);
  border: 1px solid var(--primary-mid);
  padding: 2px 10px; border-radius: var(--radius-full);
}
.dashboard-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1.25rem; }
.dashboard-kpi { text-align: center; padding: 0.625rem 0.25rem; border: 1px solid var(--fog); border-radius: var(--radius); }
.dashboard-kpi-value { display: block; font-size: 1.25rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.25rem; }
.dashboard-kpi-label { display: block; font-size: 0.6875rem; color: var(--text-muted); line-height: 1.2; }
.dashboard-chart-area { margin-bottom: 1rem; }
.dashboard-chart-label { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.dashboard-chart { width: 100%; height: 80px; }
.dashboard-processes { margin-top: 0.75rem; }
.process-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.process-name { font-size: 0.75rem; color: var(--text-secondary); width: 110px; flex-shrink: 0; }
.process-bar-wrap { flex: 1; height: 6px; background: var(--fog); border-radius: 3px; overflow: hidden; }
.process-bar { height: 100%; border-radius: 3px; }
.process-pct { font-size: 0.75rem; font-weight: 600; color: var(--navy); width: 30px; text-align: right; flex-shrink: 0; }

/* Product intro hero */
.prod-intro-inner { max-width: 760px; }
.prod-intro-h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.prod-intro-sub { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.65; }

@media (max-width: 1024px) {
  .biz-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .biz-hero-visual { display: none; }
}
@media (max-width: 768px) {
  .biz-hero { padding: 56px 0; }
  .biz-hero-h1 { font-size: 1.875rem; }
  .biz-hero-cta-group { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────────────────────
   SEZIONE SINTOMI — SEZIONE 2
───────────────────────────────────────────────────────────── */
.biz-sintomi-inner { max-width: 760px; margin: 0 auto; }
.biz-sintomi-header { margin-bottom: 2.5rem; }

.biz-sintomi-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }

.biz-sintomi-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  font-size: 1rem; line-height: 1.6; color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.biz-sintomi-item:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow-md);
}

.biz-sintomi-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); border-radius: var(--radius);
  color: var(--primary);
}
.biz-sintomi-icon [data-lucide] { width: 18px; height: 18px; }

.biz-sintomi-chiusura {
  text-align: center;
  font-size: 1.0625rem; line-height: 1.65;
  color: var(--text-secondary);
  padding: 2rem;
  background: var(--navy-soft); border-radius: var(--radius-lg);
  border: 1px solid rgba(29,61,107,0.12);
}

/* ─────────────────────────────────────────────────────────────
   SEZIONE NEGAZIONE — SEZIONE 3
───────────────────────────────────────────────────────────── */
.biz-negazione-header { margin-bottom: 3rem; }

.biz-negazione-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.biz-neg-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.biz-neg-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.biz-neg-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); border-radius: var(--radius-md);
  color: var(--primary); margin-bottom: 1.25rem;
}
.biz-neg-icon [data-lucide] { width: 24px; height: 24px; }

.biz-neg-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.875rem; }
.biz-neg-contro { font-size: 0.9375rem; color: var(--text-secondary); margin-bottom: 0.875rem; line-height: 1.6; padding-bottom: 0.875rem; border-bottom: 1px dashed var(--border); }
.biz-neg-pro    { font-size: 0.9375rem; color: var(--primary-dark); font-weight: 600; line-height: 1.6; }

@media (max-width: 900px) { .biz-negazione-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ─────────────────────────────────────────────────────────────
   SEZIONE METODO (PROVA) — SEZIONE 4
───────────────────────────────────────────────────────────── */
.biz-metodo-header { text-align: center; margin-bottom: 3rem; }
.biz-metodo-subtitle { font-size: 1rem; color: var(--text-secondary); margin-top: 0.75rem; line-height: 1.65; }

.biz-metodo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 2rem;
}

.biz-metodo-step {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.biz-metodo-step:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }

.biz-metodo-step-header { margin-bottom: 1rem; }

.biz-metodo-num {
  display: block; font-family: var(--font-heading);
  font-size: 1.375rem; font-weight: 800; color: var(--accent);
  margin-bottom: 0.25rem;
}
.biz-metodo-label { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); }
.biz-metodo-desc  { font-size: 0.9375rem; line-height: 1.65; color: var(--text-secondary); }

.biz-metodo-nota {
  text-align: center; font-size: 0.9rem; color: var(--text-muted);
  font-style: italic; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) { .biz-metodo-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ─────────────────────────────────────────────────────────────
   SEZIONE FILTRO — SEZIONE 5
───────────────────────────────────────────────────────────── */
.biz-filtro-header { margin-bottom: 3rem; }

.biz-filtro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}

.biz-filtro-col {
  border-radius: var(--radius-lg); padding: 2rem;
}
.biz-filtro-col--si { background: var(--primary-soft); border: 1.5px solid var(--primary-mid); }
.biz-filtro-col--no { background: #fff; border: 1.5px solid var(--border); }

.biz-filtro-col-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.biz-filtro-col-icon [data-lucide] { width: 24px; height: 24px; }
.biz-filtro-col--si .biz-filtro-col-icon { color: var(--primary); }
.biz-filtro-col--no .biz-filtro-col-icon { color: var(--text-secondary); }

.biz-filtro-col-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); }

.biz-filtro-list { display: flex; flex-direction: column; gap: 1rem; }
.biz-filtro-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; line-height: 1.55; }

.biz-check { color: var(--primary); font-size: 1rem; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.biz-cross  { color: var(--text-muted); font-size: 1rem; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 768px) { .biz-filtro-grid { grid-template-columns: 1fr; gap: 1.25rem; } }

/* ─────────────────────────────────────────────────────────────
   CTA BANNER — SEZIONE 6
───────────────────────────────────────────────────────────── */
.biz-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #082040 100%);
  padding: 72px 0;
}
.biz-cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.biz-cta-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.015em; }
.biz-cta-sub   { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.biz-cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; flex-shrink: 0; }
.biz-cta-micro { font-size: 0.875rem; color: rgba(255,255,255,0.65); text-align: right; line-height: 1.5; }

@media (max-width: 768px) {
  .biz-cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .biz-cta-action { align-items: flex-start; width: 100%; }
  .biz-cta-action .btn { width: 100%; }
  .biz-cta-micro { text-align: left; }
}

/* ─────────────────────────────────────────────────────────────
   CREDIBILITÀ — SEZIONE 7
───────────────────────────────────────────────────────────── */
.biz-credibilita-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.biz-cred-numeri {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-bottom: 3rem;
}

.biz-cred-num {
  flex: 1; text-align: center; padding: 1.5rem 1rem;
}

.biz-cred-sep {
  width: 1px; height: 80px; background: var(--border); flex-shrink: 0;
}

.biz-cred-val  { display: block; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--navy); font-family: var(--font-display); line-height: 1; }
.biz-cred-unit { display: block; font-size: 0.875rem; font-weight: 600; color: var(--primary); margin: 0.25rem 0; text-transform: uppercase; letter-spacing: 0.05em; }
.biz-cred-desc { display: block; font-size: 0.875rem; color: var(--text-muted); line-height: 1.4; }

.biz-cred-firma {
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.8;
}
.biz-cred-firma a { color: var(--primary); font-weight: 500; }
.biz-cred-firma a:hover { color: var(--primary-dark); text-decoration: underline; }

@media (max-width: 768px) {
  .biz-cred-numeri { flex-direction: column; gap: 0; }
  .biz-cred-sep { width: 80px; height: 1px; }
}

/* ─────────────────────────────────────────────────────────────
   SEZIONE CONTATTI (nel footer)
───────────────────────────────────────────────────────────── */
.contatti-section {
  background: linear-gradient(160deg, #f0f4f8 0%, #e8f0fb 50%, #dbeafe 100%);
  padding: var(--section-py) 0;
  border-top: 4px solid var(--fog-dark);
}

.contatti-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: flex-start;
}

.contatti-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: var(--navy); margin: 1rem 0; }
.contatti-sub   { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 2rem; }

.contatti-details { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.contatti-detail-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: var(--text-primary); }
.contatti-detail-item [data-lucide] { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.contatti-direct { display: flex; flex-direction: column; gap: 0.5rem; }
.contatti-contact-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--navy);
  transition: color var(--transition-fast);
}
.contatti-contact-link:hover { color: var(--primary); }
.contatti-contact-link [data-lucide] { width: 16px; height: 16px; flex-shrink: 0; }

/* Form */
.contatti-form-wrap {
  background: var(--bg-white); border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contatti-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }

.form-input {
  font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--text-primary); background: var(--bg-main);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 0 0.875rem; height: 44px; width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,128,96,0.12); }
.form-input.has-error { border-color: #E02020; }
.form-input::placeholder { color: var(--text-light); }

.form-textarea { height: 110px; padding: 0.75rem 0.875rem; resize: vertical; }
.form-select   { appearance: none; cursor: pointer; }

.form-error { font-size: 0.8125rem; color: #E02020; min-height: 1.2em; }
.form-error-global {
  background: #fff5f5; border: 1px solid #fca5a5; border-radius: var(--radius-sm);
  padding: 0.875rem 1rem; font-size: 0.9rem; color: #991b1b;
}
.form-success {
  background: var(--primary-soft); border: 1px solid var(--primary-mid);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--primary-dark);
}
.form-success [data-lucide] { width: 20px; height: 20px; flex-shrink: 0; }
.form-success-text { font-size: 0.9375rem; font-weight: 500; }
.form-microcopy { text-align: center; font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.5rem; }

@media (max-width: 1024px) { .contatti-grid { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 600px)  { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .contatti-section { padding: var(--section-py-mob) 0; } }

/* ─────────────────────────────────────────────────────────────
   ANCHOR BAR — PAGINA PRODOTTI
───────────────────────────────────────────────────────────── */
.prod-anchor-bar {
  position: sticky; top: var(--header-h); z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.prod-anchor-bar-inner {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.prod-anchor-bar-inner::-webkit-scrollbar { display: none; }

.prod-anchor-link {
  display: inline-flex; align-items: center; height: 52px;
  padding: 0 1.25rem; white-space: nowrap;
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
}
.prod-anchor-link:hover  { color: var(--navy); }
.prod-anchor-link.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

@media (max-width: 768px) {
  .prod-anchor-bar { top: var(--header-h-mob); }
  .prod-anchor-link { padding: 0 0.875rem; font-size: 0.8125rem; }
}

/* ─────────────────────────────────────────────────────────────
   PRODOTTI — SEZIONI
───────────────────────────────────────────────────────────── */
.prod-section { scroll-margin-top: calc(var(--header-h) + 60px); }

@media (max-width: 768px) {
  .prod-section { scroll-margin-top: calc(var(--header-h-mob) + 60px); }
}

.prod-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: flex-start;
}
.prod-card--featured {
  background: linear-gradient(135deg, #f0fdf4 0%, #e6f4ee 100%);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius-xl); padding: 3rem;
  gap: 3rem;
}

.prod-label {
  display: inline-block;
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 0.75rem;
}
.prod-label--featured { color: var(--primary-dark); }

.prod-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
.prod-desc  { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 1.75rem; }

.prod-per-chi { background: var(--surface-2); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; }
.prod-per-chi-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 0.5rem; }
.prod-per-chi p { font-size: 0.9375rem; line-height: 1.65; color: var(--text-primary); }

.prod-include { margin-bottom: 1.5rem; }
.prod-include-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 0.875rem; }
.prod-include-list { display: flex; flex-direction: column; gap: 0.625rem; }
.prod-include-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9375rem; line-height: 1.55; color: var(--text-primary);
}
.prod-include-list li span:first-child { color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.prod-livelli { display: flex; flex-direction: column; gap: 0.75rem; }
.prod-livello {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.875rem 1rem;
  display: grid; grid-template-rows: auto auto auto;
}
.prod-livello-tag   { font-size: 0.8125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.prod-livello-desc  { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.prod-livello-price { font-size: 0.8125rem; font-weight: 600; color: var(--primary); }

.prod-contratto { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.prod-impegno   { margin-bottom: 1.25rem; }
.prod-impegno p { font-size: 0.9375rem; color: var(--text-primary); line-height: 1.6; }

.prod-prezzo { margin-bottom: 1.5rem; padding: 1.25rem; background: var(--surface-2); border-radius: var(--radius-md); }
.prod-prezzo-val  { display: block; font-size: 2rem; font-weight: 800; color: var(--navy); font-family: var(--font-display); margin-bottom: 0.25rem; }
.prod-prezzo-note { display: block; font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

.prod-microcopy { text-align: center; font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.5; }

@media (max-width: 900px) {
  .prod-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .prod-card--featured { padding: 2rem; }
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-footer); color: rgba(255,255,255,0.80);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1.5fr 2fr;
  gap: 3rem; padding-bottom: 3rem;
}

.footer-logo { width: 200px; height: auto; margin-bottom: 0.875rem; }
.footer-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.70); line-height: 1.5; margin-bottom: 1.25rem; }
.footer-linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.70); font-weight: 500;
  transition: color var(--transition-fast);
}
.footer-linkedin:hover { color: var(--primary-light); }

.footer-col-title { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; }

.footer-nav-list { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav-list a { font-size: 0.9375rem; color: rgba(255,255,255,0.75); transition: color var(--transition-fast); }
.footer-nav-list a:hover { color: #fff; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-contact-list li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; color: rgba(255,255,255,0.75); }
.footer-contact-list [data-lucide] { width: 16px; height: 16px; color: var(--primary-light); flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.75); transition: color var(--transition-fast); }
.footer-contact-list a:hover { color: #fff; }

.footer-cta-block { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-cta-micro { font-size: 0.8125rem; color: rgba(255,255,255,0.50); }

.footer-piva { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--bg-copyright);
  margin: 0 -80px; padding: 1.5rem 80px;
}
.footer-copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-privacy { font-size: 0.8125rem; color: rgba(255,255,255,0.45); transition: color var(--transition-fast); }
.footer-privacy:hover { color: rgba(255,255,255,0.80); }

@media (max-width: 1280px) {
  .footer-bottom { margin: 0 -40px; padding: 1.5rem 40px; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; margin: 0 -24px; padding: 1.5rem 24px; }
}
