/*
Theme Name: Final Notice
Theme URI: https://www.finalnotice.pro
Author: Oxygen S.r.l.
Author URI: https://www.ox2.it
Description: Tema ufficiale Final Notice — piattaforma AI per il recupero crediti B2B automatizzato.
Version: 1.0.0
License: Proprietary
Text Domain: final-notice
*/

/* ============================================================
   FONTS — Cabinet Grotesk + Satoshi (Fontshare)
   ============================================================ */
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800,900&f[]=satoshi@400,500,700&display=swap');

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

:root {
  --teal: #01696f;
  --teal-light: #22d3b2;
  --navy: #0a1628;
  --navy-mid: #0f2040;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Satoshi', system-ui, sans-serif;
  background-color: #ffffff;
  color: #0a1628;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fafa;
  color: #01696f;
  border: 1px solid #ccf0f1;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #01696f;
  color: #fff;
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
}
.btn-primary:hover { opacity: 0.9; transform: scale(1.02); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.gradient-hero { background: linear-gradient(135deg, #0a1628 0%, #0f2040 40%, #014a4f 100%); }
.bg-dots {
  background-image: radial-gradient(circle, rgba(1,105,111,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.aos {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.aos.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#fn-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s, box-shadow 0.3s;
}
#fn-navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-bottom: 1px solid #f1f5f9;
}
.fn-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
}
.fn-logo {
  display: flex;
  align-items: center;
}
.fn-logo img {
  height: 72px;
  width: auto;
}

.fn-nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) {
  .fn-nav-links { display: flex; }
}
.fn-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s;
}
.fn-nav-links a:hover { color: #111827; }

.fn-nav-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .fn-nav-cta { display: flex; }
}
.fn-nav-accedi {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s;
}
.fn-nav-accedi:hover { color: #111827; }

.fn-nav-demo {
  background: #01696f;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.fn-nav-demo:hover { background: #015a5f; }

.fn-hamburger {
  display: flex;
  background: none;
  border: none;
  color: #111827;
  padding: 0.5rem;
}
@media (min-width: 768px) { .fn-hamburger { display: none; } }

.fn-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.fn-mobile-menu.open { display: flex; }
.fn-mobile-menu a {
  color: #374151;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}
.fn-mobile-demo {
  margin-top: 0.5rem;
  text-align: center;
  background: #01696f;
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg-dots {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.3;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 10;
  padding: 6rem 1.5rem;
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }
.hero-badge span { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; }
.hero-h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-h1 span { color: #22d3b2; }
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}
.hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.hero-stat-val {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #22d3b2;
}
.hero-stat-label { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-left: 0.5rem; }
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}

/* Dashboard mockup */
.dashboard-wrap {
  display: none;
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .dashboard-wrap { display: block; } }
.dashboard-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  opacity: 0.25;
  filter: blur(40px);
  background: radial-gradient(ellipse, #01696f 0%, transparent 70%);
  pointer-events: none;
}
.dashboard-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  background: rgba(15,32,64,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.db-dots { display: flex; gap: 0.375rem; }
.db-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.db-title { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-left: 0.5rem; }
.db-status { margin-left: auto; display: flex; align-items: center; gap: 0.375rem; }
.db-status-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #4ade80; animation: pulse-dot 2s infinite; }
.db-status span { color: #4ade80; font-size: 0.75rem; }
.db-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.75rem; padding: 1.25rem; }
.db-kpi {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  padding: 0.75rem;
}
.db-kpi-label { color: rgba(255,255,255,0.5); font-size: 0.7rem; margin-bottom: 0.375rem; }
.db-kpi-val { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; color: #fff; font-size: 0.9rem; }
.db-kpi-delta { font-size: 0.7rem; color: #4ade80; margin-top: 0.375rem; }
.db-chart-area { padding: 0 1.25rem 0.5rem; }
.db-chart-title { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-bottom: 0.75rem; }
.db-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 5rem; }
.db-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.db-bar-label { color: rgba(255,255,255,0.4); font-size: 0.65rem; }
.db-bar-val { color: rgba(255,255,255,0.4); font-size: 0.65rem; }
.db-bar { width: 100%; border-radius: 3px 3px 0 0; min-height: 4px; }
.db-activity { padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); }
.db-act-title { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-bottom: 0.75rem; }
.db-act-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.db-act-left { display: flex; align-items: center; gap: 0.5rem; }
.db-act-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; flex-shrink: 0; }
.db-act-client { color: rgba(255,255,255,0.7); font-size: 0.75rem; }
.db-act-action { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-left: 0.25rem; }
.db-act-time { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
.db-badge-left, .db-badge-right {
  position: absolute;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.db-badge-left { left: -1rem; top: 4rem; }
.db-badge-right { right: -1rem; bottom: 5rem; }
.db-badge-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.db-badge-title { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; color: #111827; font-size: 0.75rem; }
.db-badge-sub { color: #6b7280; font-size: 0.7rem; }

/* ============================================================
   PAIN SECTION
   ============================================================ */
#pain { padding: 6rem 0; background: #fff; }
.pain-header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 4rem; }
.badge-red {
  display: inline-flex;
  align-items: center;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fee2e2;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.pain-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: #111827; margin-bottom: 1.5rem; }
.pain-header h2 span { color: #ef4444; }
.pain-header p { color: #6b7280; font-size: 1.125rem; }
.pain-grid { display: grid; gap: 1.25rem; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .pain-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(3,1fr); } }
.pain-card {
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
  background: #f9fafb;
  transition: all 0.3s;
}
.pain-card:hover { background: #fff; border-color: #fee2e2; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.pain-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.pain-icon svg { width: 1.25rem; height: 1.25rem; color: #ef4444; }
.pain-card h3 { font-size: 1.125rem; color: #111827; margin-bottom: 0.5rem; }
.pain-card p { color: #6b7280; font-size: 0.875rem; line-height: 1.6; }
.pain-conclusion {
  border-radius: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 100%);
  border: 1px solid rgba(239,68,68,0.3);
}
@media (min-width: 768px) { .pain-conclusion { grid-column: span 2; } }
@media (min-width: 1024px) { .pain-conclusion { grid-column: auto; } }
.pain-conclusion p { color: #fff; }
.pain-conclusion .pain-result { color: #f87171; font-weight: 700; }
.pain-conclusion .pain-headline { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; font-size: 1.25rem; line-height: 1.3; margin: 0.5rem 0 0.75rem; }
.pain-conclusion .pain-sub { color: rgba(255,255,255,0.5); font-size: 0.875rem; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
#solution {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 50%, #012f32 100%);
}
.solution-inner { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .solution-inner { grid-template-columns: 1fr 1fr; } }
.solution-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}
.solution-left h2 { font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 1.5rem; }
.solution-left h2 span { color: #22d3b2; }
.solution-left p { color: rgba(255,255,255,0.7); font-size: 1.125rem; line-height: 1.6; margin-bottom: 2rem; }
.solution-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.solution-pillar {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1rem;
}
.solution-pillar-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(1,105,111,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.solution-pillar-icon svg { width: 1.0625rem; height: 1.0625rem; color: #22d3b2; }
.solution-pillar-title { color: #fff; font-weight: 600; font-size: 0.875rem; }
.solution-pillar-sub { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 0.125rem; }
.solution-flow { space-y: 1rem; }
.flow-item { display: flex; gap: 1rem; margin-bottom: 1rem; position: relative; }
.flow-connector {
  position: absolute;
  left: 1.375rem; top: 3rem; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, rgba(1,105,111,0.4), transparent);
}
.flow-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(1,105,111,0.25);
  border: 1px solid rgba(1,105,111,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
}
.flow-icon svg { width: 1.125rem; height: 1.125rem; color: #22d3b2; }
.flow-content {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.flow-content-title { color: #fff; font-weight: 600; font-size: 0.9375rem; }
.flow-content-sub { color: rgba(255,255,255,0.5); font-size: 0.8125rem; margin-top: 0.125rem; }
.flow-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#come-funziona { padding: 6rem 0; background: #fff; }
.hiw-header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 4rem; }
.hiw-header h2 { font-size: clamp(2rem,4vw,3rem); color: #111827; margin-bottom: 1rem; }
.hiw-header h2 span { color: #01696f; }
.hiw-header p { color: #6b7280; font-size: 1.125rem; }
.hiw-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .hiw-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .hiw-grid { grid-template-columns: repeat(4,1fr); } }
.hiw-card {
  position: relative;
  height: 100%;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  transition: all 0.3s;
}
.hiw-card:hover { background: #fff; border-color: #ccf0f1; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.hiw-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.hiw-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: #f0fafa;
  display: flex; align-items: center; justify-content: center;
}
.hiw-icon svg { width: 1.375rem; height: 1.375rem; color: #01696f; }
.hiw-step-num { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 900; font-size: 1.875rem; color: #ccf0f1; }
.hiw-card h3 { font-size: 1.125rem; color: #111827; margin-bottom: 0.75rem; }
.hiw-card p { color: #6b7280; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.hiw-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.hiw-tag { font-size: 0.75rem; font-weight: 500; padding: 0.125rem 0.5rem; border-radius: 9999px; background: #f0fafa; color: #01696f; }

/* ============================================================
   FEATURES
   ============================================================ */
#features { padding: 6rem 0; background: #f8fafc; }
.feat-header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 4rem; }
.feat-header h2 { font-size: clamp(2rem,4vw,3rem); color: #111827; margin-bottom: 1rem; }
.feat-header h2 span { color: #01696f; }
.feat-header p { color: #6b7280; font-size: 1.125rem; }
.feat-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(3,1fr); } }
.feat-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
  transition: all 0.3s;
}
.feat-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.feat-icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feat-icon svg { width: 1.375rem; height: 1.375rem; }
.feat-highlight {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.feat-card h3 { font-size: 1.25rem; color: #111827; margin-bottom: 0.75rem; }
.feat-card p { color: #6b7280; font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   BENEFITS
   ============================================================ */
#benefici { padding: 6rem 0; background: #fff; }
.ben-inner { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .ben-inner { grid-template-columns: 1fr 1fr; } }
.ben-left h2 { font-size: clamp(2rem,4vw,3rem); color: #111827; margin-bottom: 1.5rem; }
.ben-left h2 span { color: #01696f; }
.ben-left p { color: #6b7280; font-size: 1.125rem; line-height: 1.6; margin-bottom: 2rem; }
.ben-list { display: flex; flex-direction: column; gap: 1rem; }
.ben-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  transition: all 0.2s;
}
.ben-item:hover { background: #fff; border-color: #e5e7eb; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.ben-item-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ben-item-icon svg { width: 1.125rem; height: 1.125rem; }
.ben-item-body { flex: 1; }
.ben-item-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ben-item-title { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; color: #111827; font-size: 1rem; }
.ben-metric { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; font-size: 1.125rem; flex-shrink: 0; }
.ben-metric-label { font-size: 0.75rem; color: #9ca3af; margin-top: 0.125rem; text-align: right; }
.ben-item-desc { color: #6b7280; font-size: 0.875rem; line-height: 1.6; margin-top: 0.25rem; }

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
#roi { padding: 6rem 0; background: #fff; }
.roi-header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 4rem; }
.roi-header h2 { font-size: clamp(2rem,4vw,3rem); color: #111827; margin-bottom: 1rem; }
.roi-header h2 span { color: #01696f; }
.roi-header p { color: #6b7280; font-size: 1.125rem; }
.roi-top { display: grid; gap: 2rem; align-items: start; margin-bottom: 2rem; }
@media (min-width: 1024px) { .roi-top { grid-template-columns: 2fr 3fr; } }
.roi-sliders {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.75rem;
}
@media (min-width: 1024px) { .roi-sliders { position: sticky; top: 7rem; } }
.roi-sliders h3 { font-size: 1.125rem; color: #111827; margin-bottom: 0.25rem; }
.roi-sliders .roi-sliders-sub { color: #9ca3af; font-size: 0.875rem; margin-bottom: 1.75rem; }
.slider-group { margin-bottom: 1.75rem; }
.slider-group:last-child { margin-bottom: 0; }
.slider-label-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; }
.slider-label { color: #4b5563; font-size: 0.875rem; font-weight: 500; }
.slider-val { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; color: #111827; font-size: 1rem; }
.slider-range-row { display: flex; justify-content: space-between; font-size: 0.75rem; color: #9ca3af; margin-top: 0.25rem; }
input[type='range'] { -webkit-appearance: none; appearance: none; width: 100%; height: 0.5rem; border-radius: 9999px; outline: none; cursor: pointer; }
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: #01696f;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(1,105,111,0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}
input[type='range']::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type='range']::-moz-range-thumb {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: #01696f;
  border: 3px solid #fff;
  cursor: pointer;
}
.roi-cards { display: grid; gap: 1rem; }
@media (min-width: 640px) { .roi-cards { grid-template-columns: repeat(2,1fr); } }
.pillar-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.pillar-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.pillar-head { padding: 1.25rem; }
.pillar-head-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.pillar-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 1.0625rem; height: 1.0625rem; }
.pillar-label { color: #6b7280; font-size: 0.75rem; font-weight: 500; }
.pillar-val { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 900; font-size: 1.25rem; color: #111827; line-height: 1; margin-top: 0.125rem; }
.pillar-desc { color: #6b7280; font-size: 0.75rem; line-height: 1.5; }
.pillar-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem; font-weight: 600;
  width: 100%;
  border: none; border-top: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
  transition: opacity 0.2s;
}
.pillar-toggle:hover { opacity: 0.85; }
.pillar-formula { border-top: none; }
.pillar-formula-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.pillar-formula-row:last-child { border-bottom: none; }
.pillar-formula-lhs { font-size: 0.75rem; color: #6b7280; line-height: 1.4; }
.pillar-formula-lhs.note { font-style: italic; color: #9ca3af; }
.pillar-formula-lhs.highlight { font-weight: 600; color: #374151; }
.pillar-formula-eq { font-family: monospace; font-size: 0.7rem; color: #9ca3af; margin-top: 0.125rem; }
.pillar-formula-rhs { font-family: monospace; font-size: 0.75rem; text-align: right; white-space: nowrap; flex-shrink: 0; color: #9ca3af; }
.pillar-formula-rhs.highlight { font-weight: 700; }

/* ROI Summary table */
.roi-summary {
  border-radius: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #0a1628 0%, #012f32 100%);
  border: 1px solid rgba(1,105,111,0.4);
}
.roi-summary-title { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.roi-cashflow-row {
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(217,119,6,0.05));
  border: 1px solid rgba(217,119,6,0.3);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.roi-cashflow-badges { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; flex-wrap: wrap; }
.roi-cashflow-badge {
  font-size: 0.75rem; font-weight: 700;
  padding: 0.125rem 0.5rem; border-radius: 9999px;
  background: rgba(217,119,6,0.2); color: #f59e0b;
}
.roi-cashflow-note { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.roi-cashflow-title { color: #fff; font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; font-size: 1.125rem; }
.roi-cashflow-formula { color: rgba(255,255,255,0.4); font-family: monospace; font-size: 0.75rem; margin-top: 0.25rem; }
.roi-cashflow-val { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 900; font-size: 2.5rem; color: #f59e0b; flex-shrink: 0; }
.roi-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .roi-breakdown { grid-template-columns: repeat(4,1fr); } }
.roi-breakdown-col {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.25rem;
  background: rgba(10,22,40,0.6);
}
.roi-breakdown-col.total-col { background: rgba(34,211,178,0.08); }
.roi-breakdown-label { font-size: 0.75rem; margin-bottom: 0.75rem; }
.roi-breakdown-label .plus { font-family: monospace; font-weight: 700; color: #22d3b2; margin-right: 0.25rem; }
.roi-breakdown-label.total { color: #fff; font-weight: 600; }
.roi-breakdown-label.not-total { color: rgba(255,255,255,0.5); }
.roi-breakdown-val { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 900; font-size: 1.5rem; color: #22d3b2; }
.roi-breakdown-sub { font-family: monospace; font-size: 0.7rem; margin-top: 0.75rem; color: rgba(255,255,255,0.2); }
.roi-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.roi-payback { display: flex; align-items: center; gap: 1rem; }
.roi-payback-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.roi-payback-val { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 900; font-size: 1.875rem; color: #fff; }
.roi-payback-note { color: rgba(255,255,255,0.2); font-size: 0.75rem; max-width: 20rem; line-height: 1.5; }
.roi-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0; }
.roi-cta-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #01696f; color: #fff;
  font-weight: 600; padding: 0.75rem 1.5rem;
  border-radius: 0.75rem; font-size: 0.875rem;
  transition: opacity 0.2s; white-space: nowrap;
}
.roi-cta-primary:hover { opacity: 0.9; }
.roi-cta-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d1d5db;
  font-weight: 600; padding: 0.75rem 1.5rem;
  border-radius: 0.75rem; font-size: 0.875rem;
  white-space: nowrap;
}

/* ============================================================
   TARGET
   ============================================================ */
#target { padding: 6rem 0; background: #f8fafc; }
.target-header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 4rem; }
.target-header h2 { font-size: clamp(2rem,4vw,3rem); color: #111827; margin-bottom: 1rem; }
.target-header h2 span { color: #01696f; }
.target-header p { color: #6b7280; font-size: 1.125rem; }
.target-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .target-grid { grid-template-columns: repeat(2,1fr); } }
.target-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  padding: 1.75rem;
  transition: all 0.3s;
}
.target-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.target-card-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.target-icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.target-icon svg { width: 1.375rem; height: 1.375rem; }
.target-card-title { font-size: 1.25rem; color: #111827; }
.target-card-sub { font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; }
.target-card p { color: #6b7280; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.target-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.target-tag { font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.target-cta { margin-top: 3rem; text-align: center; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
#social-proof { padding: 6rem 0; background: #fff; }
.sp-header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 4rem; }
.sp-header h2 { font-size: clamp(2rem,4vw,3rem); color: #111827; margin-bottom: 1rem; }
.sp-header h2 span { color: #01696f; }
.sp-header p { color: #6b7280; font-size: 1.125rem; }
.sp-grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .sp-grid { grid-template-columns: repeat(3,1fr); } }
.sp-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.sp-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.sp-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.sp-star { color: #f59e0b; font-size: 1rem; }
.sp-quote { color: #374151; font-size: 1rem; line-height: 1.6; font-style: italic; flex: 1; margin-bottom: 1.5rem; }
.sp-metric-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid #f3f4f6; margin-bottom: 1.25rem; }
.sp-metric-val { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 900; font-size: 1.5rem; }
.sp-metric-sub { color: #9ca3af; font-size: 0.75rem; margin-top: 0.125rem; }
.sp-sector { font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.sp-author { display: flex; align-items: center; gap: 0.75rem; }
.sp-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Cabinet Grotesk',sans-serif;
  font-weight: 700; font-size: 0.875rem;
  flex-shrink: 0;
}
.sp-author-name { font-weight: 600; color: #111827; font-size: 0.875rem; }
.sp-author-role { color: #9ca3af; font-size: 0.75rem; }
.sp-stats {
  border-radius: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #0a1628, #012f32);
  border: 1px solid rgba(1,105,111,0.3);
}
.sp-stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .sp-stats-grid { grid-template-columns: repeat(4,1fr); } }
.sp-stat-val { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 900; font-size: 1.875rem; color: #22d3b2; margin-bottom: 0.25rem; }
.sp-stat-label { color: #fff; font-weight: 600; font-size: 0.875rem; }
.sp-stat-sub { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 0.125rem; }

/* ============================================================
   TRUST
   ============================================================ */
#trust { padding: 5rem 0; background: #f8fafc; }
.trust-inner { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .trust-inner { grid-template-columns: 2fr 3fr; } }
.trust-left h2 { font-size: clamp(1.75rem,3vw,2.5rem); color: #111827; margin-bottom: 1rem; }
.trust-left h2 span { color: #01696f; }
.trust-left p { color: #6b7280; font-size: 1rem; line-height: 1.6; }
.trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.trust-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  padding: 1.25rem;
  transition: all 0.2s;
}
.trust-card:hover { border-color: #ccf0f1; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.trust-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: #f0fafa;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.trust-icon svg { width: 1.1875rem; height: 1.1875rem; color: #01696f; }
.trust-card h3 { font-size: 1rem; color: #111827; margin-bottom: 0.5rem; }
.trust-card p { color: #6b7280; font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   FINAL CTA / DEMO FORM
   ============================================================ */
#demo {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 40%, #014a4f 100%);
}
.demo-inner { display: grid; gap: 3rem; align-items: center; position: relative; z-index: 10; }
@media (min-width: 1024px) { .demo-inner { grid-template-columns: 1fr 1fr; } }
.demo-left h2 { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 900; font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 1.5rem; }
.demo-left p { color: rgba(255,255,255,0.7); font-size: 1.25rem; line-height: 1.6; margin-bottom: 2rem; }
.demo-checks { list-style: none; margin-bottom: 2.5rem; }
.demo-checks li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.demo-check-icon { color: #22d3b2; font-size: 1.125rem; flex-shrink: 0; }
.demo-checks span { color: rgba(255,255,255,0.8); font-size: 1rem; }
.demo-expert { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.demo-expert:hover { color: #fff; }
.demo-form-wrap {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.75rem;
}
.demo-form-title { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; color: #fff; font-size: 1.25rem; margin-bottom: 0.5rem; }
.demo-form-sub { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-input, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.875rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus { border-color: rgba(1,105,111,0.6); }
.form-select { appearance: none; -webkit-appearance: none; }
.form-select option { background: #0f2040; color: #fff; }
.form-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #01696f;
  color: #fff;
  font-weight: 700; padding: 1rem;
  border-radius: 0.75rem; font-size: 1rem;
  border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { opacity: 0.9; transform: scale(1.01); }
.form-submit:disabled { opacity: 0.6; transform: none; cursor: default; }
.form-note { color: rgba(255,255,255,0.3); font-size: 0.75rem; text-align: center; margin-top: 0.75rem; }
.form-success {
  text-align: center;
  padding: 2.5rem;
  display: none;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(34,211,178,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}
.form-success h3 { color: #fff; font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p { color: rgba(255,255,255,0.6); }
.form-error { color: #f87171; font-size: 0.75rem; margin-bottom: 0.75rem; }
.form-actual { display: block; }
.form-actual.hide { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
#contatto { background: #030712; color: #fff; }
.footer-inner { padding: 4rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand-logo { display: flex; align-items: center; margin-bottom: 1.25rem; }
.footer-brand-desc { color: #6b7280; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 18rem; }
.footer-contact-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-contact-icon { color: #6b7280; font-size: 0.9375rem; }
.footer-contact-row a { color: #9ca3af; font-size: 0.875rem; transition: color 0.2s; }
.footer-contact-row a:hover { color: #fff; }
.footer-col-title { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a, .footer-links button {
  color: #9ca3af; font-size: 0.875rem;
  background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-cta-strip {
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
  background: linear-gradient(135deg, #012f32, #01484e);
  border: 1px solid rgba(1,105,111,0.4);
}
.footer-cta-strip h3 { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; color: #fff; font-size: 1.125rem; }
.footer-cta-strip p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.125rem; }
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #01696f; color: #fff;
  font-weight: 600; padding: 0.75rem 1.5rem;
  border-radius: 0.75rem; font-size: 0.875rem;
  white-space: nowrap; transition: opacity 0.2s;
  flex-shrink: 0;
}
.footer-cta-btn:hover { opacity: 0.9; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
}
.footer-copy { color: #4b5563; font-size: 0.75rem; }
.footer-bottom-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-bottom-links a, .footer-bottom-links button {
  color: #4b5563; font-size: 0.75rem;
  background: none; border: none; cursor: pointer;
  font-family: inherit; transition: color 0.2s;
}
.footer-bottom-links a:hover, .footer-bottom-links button:hover { color: #d1d5db; }

/* ============================================================
   PRIVACY POLICY MODAL
   ============================================================ */
#privacy-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 2rem 1rem;
  align-items: flex-start;
  justify-content: center;
}
#privacy-overlay.open { display: flex; }
.privacy-modal {
  background: #fff;
  border-radius: 1rem;
  width: 100%; max-width: 48rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  position: relative;
}
.privacy-header {
  position: sticky; top: 0;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid #f3f4f6;
  z-index: 10;
}
.privacy-header-left { display: flex; align-items: center; gap: 0.75rem; }
.privacy-header-icon {
  width: 2rem; height: 2rem;
  background: #01696f;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; font-size: 0.75rem;
}
.privacy-header h1 { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; color: #111827; font-size: 1.25rem; }
.privacy-close {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: #f3f4f6;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #4b5563;
  transition: background 0.2s;
}
.privacy-close:hover { background: #e5e7eb; }
.privacy-body { padding: 2rem; font-size: 0.875rem; color: #4b5563; line-height: 1.6; }
.privacy-date { color: #9ca3af; font-size: 0.75rem; margin-bottom: 1.5rem; }
.privacy-body section { margin-bottom: 1.5rem; }
.privacy-body h2 { font-family: 'Cabinet Grotesk',sans-serif; font-weight: 700; color: #111827; font-size: 1.125rem; margin-bottom: 0.5rem; }
.privacy-body p { margin-bottom: 0.75rem; }
.privacy-body ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.privacy-body ul li { margin-bottom: 0.25rem; }
.privacy-body strong { color: #374151; font-weight: 600; }
.privacy-box {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
.privacy-box p { margin-bottom: 0.25rem; }
.privacy-box strong { color: #111827; }
.privacy-box .semibold { font-weight: 600; color: #1f2937; }
.privacy-teal { color: #01696f; }
.privacy-teal:hover { text-decoration: underline; }
.privacy-footer { color: #9ca3af; font-size: 0.75rem; border-top: 1px solid #f3f4f6; padding-top: 1rem; margin-top: 1rem; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .db-kpis { grid-template-columns: repeat(2,1fr); }
  .roi-breakdown { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #01696f; border-radius: 3px; }
