/* ============================================================
   Sensora — Main site (tema allineato a proposta.html)
   Font: Inter (corpo) + Outfit (titoli) — caricare da Google Fonts
   ============================================================ */

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

:root {
  /* Proposta / dark */
  --bg-deep: #08111f;
  --bg-soft: #0f1c31;
  --text: #eff6ff;
  --text-body: #c5d4ea;
  --accent: #22c55e;
  --accent-2: #38bdf8;
  --border-glass: rgba(148, 163, 184, 0.18);
  --surface: rgba(15, 28, 49, 0.74);
  --surface-strong: rgba(18, 32, 56, 0.92);
  --shadow-theme: 0 30px 80px rgba(0, 0, 0, 0.35);

  /* Brand (legacy names → palette scura) */
  --blue: #38bdf8;
  --blue-d: #0ea5e9;
  --blue-l: #7dd3fc;
  --blue-xl: rgba(56, 189, 248, 0.14);
  --green: #22c55e;
  --gold: #fbbf24;
  --terra: #fb923c;

  --dark: #0f172a;
  --charcoal: #c5d4ea;
  --cream: #0f1c31;
  --ice: rgba(15, 28, 49, 0.45);
  --ice2: rgba(17, 31, 55, 0.72);
  --white: var(--surface-strong);
  --border: rgba(56, 189, 248, 0.12);
  --border-n: rgba(148, 163, 184, 0.2);

  --muted: #aab8cf;
  --muted-l: #94a3b8;

  --ok: #4ade80;
  --ok-bg: rgba(34, 197, 94, 0.12);
  --warn: #fb923c;
  --warn-bg: rgba(251, 146, 60, 0.12);

  --max-w: 1140px;
  --nav-h: 68px;
  --radius: 1.25rem;
  --radius-md: 1.125rem;
  --radius-xl: 1.75rem;
  --radius-sm: 0.75rem;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
  --panel-bg: linear-gradient(165deg, rgba(22, 38, 62, 0.92) 0%, rgba(10, 20, 36, 0.96) 100%);
  --panel-border: rgba(148, 163, 184, 0.14);
  --panel-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 901px) {
  :root {
    --nav-h: 82px;
  }
}

body.nav-scroll-lock { overflow: hidden; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #030810;
  min-height: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
  background-color: #050b14;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(56, 189, 248, 0.16), transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.12), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.1), transparent 28%),
    radial-gradient(ellipse at 50% 100%, rgba(15, 80, 120, 0.12), transparent 55%),
    linear-gradient(180deg, #040a12 0%, #0a1526 42%, #060d18 100%);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 700;
}
h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.65rem); font-weight: 600; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 600; letter-spacing: -0.02em; }
p  { color: var(--muted); font-weight: 400; line-height: 1.75; }
em { font-style: italic; color: var(--accent-2); }
a  { color: var(--accent-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-l); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── Section labels ── */
.label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-2);
  margin-bottom: 0.75rem;
}
.label-terra { color: var(--terra); }
.label-green { color: var(--accent); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: 999px;
  font-family: 'Outfit', system-ui, sans-serif; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s, border-color .2s;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e16;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #052e16;
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-glass);
}
.btn-outline:hover {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.08);
  color: var(--text);
}
.btn-dark {
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--border-glass);
}
.btn-dark:hover { background: rgba(24, 44, 78, 0.95); color: #fff; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── Navigation ── */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2.5rem;
  background: rgba(6, 12, 22, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-glass);
  transition: box-shadow .2s, background .2s, transform .25s;
  overflow: visible;
}
.main-nav.scrolled {
  background: rgba(5, 10, 20, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

@media (min-width: 901px) {
  .main-nav {
    top: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 40px));
    height: auto;
    min-height: 54px;
    padding: 0.5rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.35) inset,
      var(--panel-inset),
      0 24px 56px rgba(0, 0, 0, 0.45);
  }
  .main-nav.scrolled {
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.35) inset,
      var(--panel-inset),
      0 28px 64px rgba(0, 0, 0, 0.5);
  }
}
.nav-logo {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0;
  z-index: 2;
}
.nav-logo-dot { color: var(--accent); }
.nav-menu {
  display: flex; align-items: center; gap: 0.15rem;
  margin: 0 auto; list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.85rem; border-radius: 0.6rem;
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--text); background: rgba(56, 189, 248, 0.08); }

.nav-dd { z-index: 1; }
.nav-dd.is-open { z-index: 220; }
.nav-dd-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.85rem; border-radius: 0.6rem;
  font-family: inherit; font-size: 0.9rem; font-weight: 500;
  color: var(--muted); background: transparent; border: none; cursor: pointer;
  white-space: nowrap;
  transition: color .2s, background .2s, box-shadow .2s;
}
.nav-dd-btn:hover { color: var(--text); background: rgba(56, 189, 248, 0.08); }
.nav-dd.is-open .nav-dd-btn {
  color: var(--text);
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.2);
}
.nav-dd-chevron {
  width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5;
  transition: transform .22s ease;
  flex-shrink: 0;
}
.nav-dd.is-open .nav-dd-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 288px;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.45rem;
  background: var(--surface-strong);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-theme);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-dd.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.62rem 0.85rem; border-radius: 0.45rem;
  font-size: 0.875rem; font-weight: 400; color: var(--text-body);
  text-decoration: none; transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: rgba(56, 189, 248, 0.1); color: var(--text); }
.nav-dropdown a.active {
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
  font-weight: 600;
}
.nav-dropdown a span { font-size: 1.05rem; flex-shrink: 0; line-height: 1; }
.nav-dropdown-title {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted-l);
  padding: 0.45rem 0.85rem 0.2rem;
}
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; z-index: 2; }

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 150;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(4, 10, 20, 0.65);
  cursor: pointer;
}
.main-nav.is-mobile-open .nav-scrim { display: block; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.45rem;
  margin-left: 0.25rem;
  color: var(--text);
  border-radius: 0.45rem;
  z-index: 2;
}
.nav-hamburger:hover { background: rgba(56, 189, 248, 0.1); }
.nav-hamburger svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; transition: color .2s; }
.main-nav.is-mobile-open .nav-hamburger { color: var(--accent-2); background: rgba(56, 189, 248, 0.12); }

/* ── Hero (pagine interne) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(56, 189, 248, 0.12), transparent 55%),
    linear-gradient(165deg, rgba(15, 28, 49, 0.5) 0%, rgba(8, 17, 31, 0.2) 100%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-2);
  background: rgba(56, 189, 248, 0.1);
  padding: 0.35rem 0.9rem; border-radius: 2rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100%{ opacity:1; transform:scale(1) }
  50%{ opacity:0.3; transform:scale(0.6) }
}
.hero-sub { font-size: 1.1rem; color: var(--muted); font-weight: 400; max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── Homepage hero & sezioni ── */
.hero-home {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 2.5rem) 2.5rem 4.5rem;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 100%; overflow: hidden; position: relative;
  /* Sfondo proprio: evita “buchi” bianchi se il body non copre (Safari, overscroll) */
  background-color: #050b14;
  background-image:
    radial-gradient(circle at 85% 25%, rgba(56, 189, 248, 0.12), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(34, 197, 94, 0.1), transparent 40%),
    linear-gradient(180deg, #040a12 0%, #0a1526 50%, #050b14 100%);
}
.hero-home::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 70% 35%, rgba(56, 189, 248, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute; bottom: -20%; left: -15%;
  width: 55%; height: 70%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}
.hero-home .hero-eyebrow {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #a7f3d0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.hero-home .hero-eyebrow::before {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.hero-home h1 {
  font-size: clamp(2.45rem, 5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.hero-home h1 em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(120deg, #7dd3fc 0%, #4ade80 55%, #6ee7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-home .hero-sub {
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 34rem;
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}
.hero-stats > div {
  padding: 1rem 0.65rem;
  border-radius: var(--radius-md);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-inset);
  text-align: center;
  transition: transform .2s, border-color .2s;
}
.hero-stats > div:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.25);
}
.stat-n {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stat-l {
  font-size: 0.72rem;
  color: var(--muted-l);
  font-weight: 500;
  margin-top: 0.35rem;
  line-height: 1.35;
}

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.dash-mockup {
  width: 100%; max-width: 480px;
  background: linear-gradient(165deg, #0c1828 0%, #060d16 100%);
  border-radius: var(--radius-xl);
  padding: 1.65rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow:
    var(--panel-inset),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 40px -12px rgba(56, 189, 248, 0.15);
  position: relative;
}
.dash-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.dash-title { font-size: 0.7rem; color: rgba(255,255,255,.35); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.dash-live { display: flex; align-items: center; gap: 0.3rem; font-size: 0.65rem; color: #6EC97A; font-weight: 600; }
.dash-live::before { content:''; width:6px; height:6px; border-radius:50%; background:#6EC97A; animation: blink 1.5s infinite; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; margin-bottom: 0.75rem; }
.metric {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 0.65rem; padding: 0.75rem;
}
.metric-l { font-size: 0.6rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.3rem; }
.metric-v { font-size: 1.15rem; font-weight: 600; color: #fff; }
.metric-v.ok { color: #6EC97A; }
.metric-v.warm { color: #E8C060; }
.room-rows { display: flex; flex-direction: column; gap: 0.4rem; }
.room-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04); border-radius: 0.45rem; padding: 0.45rem 0.7rem;
}
.room-name { font-size: 0.72rem; color: rgba(255,255,255,.6); }
.room-badge { font-size: 0.6rem; padding: 0.12rem 0.5rem; border-radius: 1rem; font-weight: 500; }
.b-occ { background: rgba(110,201,122,.15); color: #6EC97A; }
.b-free { background: rgba(255,255,255,.07); color: rgba(255,255,255,.3); }
.b-check { background: rgba(232,192,96,.15); color: #E8C060; }
.dash-label { text-align: center; margin-top: 1rem; font-size: 0.65rem; color: rgba(255,255,255,.2); letter-spacing: 0.05em; }
.float-pill {
  position: absolute;
  z-index: 2;
  background: rgba(14, 26, 46, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 2rem;
  padding: 0.5rem 1.1rem; font-size: 0.78rem; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.float-pill::before { content:''; width:7px; height:7px; border-radius:50%; background: var(--accent); flex-shrink:0; }
.fp1 { top: -0.75rem; right: -1.5rem; animation: float1 3s ease-in-out infinite; }
.fp2 { bottom: 1.25rem; left: -2rem; animation: float2 3.5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* Fascia blog / alternate: sempre scura (niente dipendenza da var in inline) */
.section-band-muted {
  background: linear-gradient(180deg, rgba(6, 14, 28, 0.92) 0%, rgba(4, 10, 20, 0.75) 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.06);
}

.products-section {
  background: transparent;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.product-card {
  display: flex; gap: 1.35rem; align-items: flex-start;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  padding: 1.65rem 1.5rem;
  text-decoration: none; color: inherit;
  transition: transform .22s ease, border-color .22s, box-shadow .22s;
  position: relative; overflow: hidden;
  box-shadow: var(--panel-inset), 0 16px 48px rgba(0, 0, 0, 0.22);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 10% 0%, rgba(56, 189, 248, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.product-card:hover::before { opacity: 1; }
.product-card::after {
  content: ''; position: absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: var(--panel-inset), 0 28px 64px rgba(0, 0, 0, 0.35);
  color: inherit;
}
.product-card:hover::after { transform: scaleX(1); }
.prod-icon {
  width: 54px; height: 54px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.prod-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.prod-body h3 { font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--text); }
.prod-body p  { font-size: 0.82rem; margin-bottom: 0.75rem; }
.prod-link { font-size: 0.8rem; font-weight: 600; color: var(--accent-2); display: flex; align-items: center; gap: 0.3rem; }
.prod-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.pi-blue   { background: rgba(56, 189, 248, 0.12); color: var(--accent-2); }
.pi-green  { background: rgba(34, 197, 94, 0.12); color: var(--accent); }
.pi-gold   { background: rgba(251, 191, 36, 0.12); color: var(--gold); }
.pi-terra  { background: rgba(251, 146, 60, 0.12); color: var(--terra); }
.pi-purple { background: rgba(167, 139, 250, 0.15); color: #a78bfa; }

.cases-section {
  background: linear-gradient(180deg, rgba(5, 12, 24, 0.5) 0%, rgba(8, 17, 31, 0.25) 50%, transparent 100%);
}
.case-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s;
  box-shadow: var(--panel-inset), 0 16px 48px rgba(0, 0, 0, 0.2);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--panel-inset), 0 28px 64px rgba(0, 0, 0, 0.35);
}
.case-img {
  height: 180px;
  background: linear-gradient(160deg, rgba(30, 58, 95, 0.35), rgba(12, 24, 42, 0.8));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.case-body { padding: 1.5rem; }
.case-type { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 0.5rem; }
.case-body h4 { font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; }
.case-body p  { font-size: 0.82rem; }
.case-metrics {
  display: flex; gap: 1.25rem; margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}
.case-metric-n {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--text);
}
.case-metric-l { font-size: 0.72rem; color: var(--muted); }

.testimonials-section { background: transparent; }
.testi-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  box-shadow: var(--panel-inset), 0 12px 40px rgba(0, 0, 0, 0.18);
}
.testi-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 0.85rem; }
.testi-text { font-size: 0.9rem; color: var(--text-body); font-style: italic; line-height: 1.7; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 600; color: var(--accent-2); flex-shrink: 0;
}
.testi-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.testi-role { font-size: 0.75rem; color: var(--muted); font-weight: 400; }

.cta-band {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 197, 94, 0.08), transparent 55%),
    linear-gradient(165deg, rgba(10, 22, 40, 0.97) 0%, rgba(5, 10, 20, 0.99) 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding: clamp(4rem, 8vw, 5.5rem) 2rem;
  text-align: center;
}
.cta-band h2 { color: var(--text); margin-bottom: 0.75rem; }
.cta-band p  { color: var(--muted); font-weight: 400; max-width: 520px; margin: 0 auto 2.5rem; }

.logos-strip {
  background: rgba(4, 10, 20, 0.45);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  padding: 2.25rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-item {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Integrazioni / schede (pagine prodotto) */
.integration-card {
  display: flex; align-items: center; gap: 0.85rem;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: border-color .2s;
  box-shadow: var(--panel-inset);
}
.integration-card:hover { border-color: rgba(56, 189, 248, 0.35); }
.int-icon { font-size: 1.75rem; flex-shrink: 0; }
.int-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.int-desc { font-size: 0.75rem; color: var(--muted); font-weight: 400; }

/* ── Cards ── */
.card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
  box-shadow: var(--panel-inset), 0 12px 40px rgba(0, 0, 0, 0.15);
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: var(--panel-inset), 0 24px 56px rgba(0, 0, 0, 0.28);
}
.card-accent::before {
  content: ''; position: absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.card-accent:hover::before { transform: scaleX(1); }
.card-icon {
  width: 46px; height: 46px; border-radius: 0.75rem;
  background: rgba(56, 189, 248, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--accent-2); fill: none; stroke-width: 1.5; }
.card h4 { color: var(--text); margin-bottom: 0.5rem; }
.card p  { font-size: 0.875rem; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.products-section .grid-2 { gap: 1.35rem 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 4rem); }
.section-header .label { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { max-width: 38rem; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

/* ── Feature list ── */
.feat-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.feat-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.feat-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(56, 189, 248, 0.1); border: 1.5px solid var(--accent-2);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.feat-check svg { width: 10px; height: 10px; stroke: var(--accent-2); fill: none; stroke-width: 2.5; }
.feat-item strong { font-size: 0.875rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 0.1rem; }
.feat-item span   { font-size: 0.82rem; color: var(--muted); font-weight: 400; line-height: 1.55; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 500;
  background: var(--ice2); color: var(--accent-2);
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.9rem; border-radius: 2rem;
}
.badge svg { width: 13px; height: 13px; stroke: var(--accent-2); fill: none; stroke-width: 2; }
.badge-green { background: var(--ok-bg); color: var(--ok); border-color: rgba(74, 222, 128, 0.25); }
.badge-warn  { background: var(--warn-bg); color: var(--warn); border-color: rgba(251, 146, 60, 0.25); }

/* ── Pills / Status ── */
.pill {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.75rem; border-radius: 2rem;
}
.pill-blue  { background: rgba(56, 189, 248, 0.12); color: var(--accent-2); }
.pill-green { background: var(--ok-bg); color: var(--ok); }
.pill-warn  { background: var(--warn-bg); color: var(--warn); }
.pill-dark  { background: rgba(15, 23, 42, 0.5); color: var(--text); }

/* ── How it works steps ── */
.steps-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.steps-row::after {
  content: ''; position: absolute;
  top: 1.35rem; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--border-glass); z-index: 0;
}
.step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(145deg, #38bdf8, #0ea5e9);
  color: #042f4a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.12), 0 8px 24px rgba(14, 116, 144, 0.35);
}
.step h4 { color: var(--text); margin-bottom: 0.4rem; }
.step p  { font-size: 0.82rem; }

/* ── Pricing cards ── */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius); padding: 2rem 1.75rem; text-align: center;
  transition: transform .2s;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.featured {
  background: linear-gradient(165deg, rgba(18, 32, 56, 0.95), rgba(8, 17, 31, 0.98));
  border-color: rgba(56, 189, 248, 0.35);
}
.price-plan {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.price-card.featured .price-plan { color: rgba(255,255,255,.45); }
.price-amount {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--text);
}
.price-card.featured .price-amount { color: var(--accent-2); }
.price-period { font-size: 0.8rem; color: var(--muted); font-weight: 400; }
.price-card.featured .price-period { color: rgba(255,255,255,.4); }
.price-sep { margin: 1.25rem 0; border: none; border-top: 1px solid var(--border-glass); }
.price-card.featured .price-sep { border-color: rgba(255,255,255,.1); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; text-align: left; }
.price-list li {
  font-size: 0.82rem; color: var(--muted); font-weight: 400;
  display: flex; align-items: center; gap: 0.5rem;
}
.price-card.featured .price-list li { color: rgba(255,255,255,.65); }
.price-list li::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  background: rgba(56, 189, 248, 0.12); border: 1.5px solid var(--accent-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%2338bdf8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.price-card.featured .price-list li::before {
  background-color: rgba(56, 189, 248, 0.15); border-color: var(--accent-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%2338bdf8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.price-btn {
  display: block; margin-top: 1.5rem; text-align: center;
  padding: 0.8rem; border-radius: 2rem;
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  transition: all .2s;
  border: 1.5px solid var(--border-glass);
  color: var(--text);
}
.price-btn:hover { background: rgba(56, 189, 248, 0.08); color: var(--text); }
.price-card.featured .price-btn {
  background: linear-gradient(135deg, var(--accent-2), var(--blue-d));
  border-color: transparent;
  color: #042f4a;
}
.price-card.featured .price-btn:hover {
  filter: brightness(1.08);
  color: #042f4a;
}

/* ── Demo / Contact form ── */
.demo-form {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: left;
  max-width: 640px; margin: 0 auto;
  box-shadow: var(--panel-inset), 0 28px 80px rgba(0, 0, 0, 0.35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem; border: 1px solid var(--border-glass);
  border-radius: 0.6rem; font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem; color: var(--text);
  background: rgba(8, 17, 31, 0.6); outline: none; transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent-2); }
.form-group textarea { min-height: 90px; }
.form-submit {
  width: 100%; margin-top: 1.25rem; padding: 1rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e16; border: none; border-radius: 2rem;
  font-family: 'Outfit', system-ui, sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: transform .15s, filter .2s;
}
.form-submit:hover { filter: brightness(1.06); transform: translateY(-1px); }
.form-note { text-align: center; margin-top: 0.85rem; font-size: 0.75rem; color: var(--muted); font-weight: 400; }

/* ── Footer ── */
.main-footer {
  background: #050d18;
  color: rgba(255,255,255,.45);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-glass);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem;
}
.footer-brand-name span { color: var(--accent-2); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,.4); font-weight: 400; line-height: 1.6; max-width: 220px; }
.footer-col h5 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color .2s; font-weight: 400;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,.25);
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── WhatsApp floating button ── */
.whatsapp-btn {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); color: #fff; }
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: rgba(5, 13, 24, 0.97);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.8);
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  border-top: 1px solid var(--border-glass);
  font-size: 0.85rem;
  transform: translateY(100%); transition: transform .3s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-weight: 400; color: rgba(255,255,255,.65); max-width: 680px; }
#cookie-banner a { color: var(--accent-2); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  padding: 0.55rem 1.25rem; border-radius: 2rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e16; border: none;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: filter .2s;
}
.cookie-accept:hover { filter: brightness(1.08); }
.cookie-decline {
  padding: 0.55rem 1.25rem; border-radius: 2rem;
  background: transparent; color: rgba(255,255,255,.45);
  border: 1px solid var(--border-glass);
  font-size: 0.85rem; cursor: pointer; transition: color .2s;
}
.cookie-decline:hover { color: #fff; }

/* ── Animate on scroll ── */
.anim { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }

/* ── Blog ── */
.blog-card { display: flex; flex-direction: column; }
.blog-card-cover {
  width: 100%; aspect-ratio: 16/9;
  background: var(--ice2);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
}
.blog-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 0.5rem;
}
.blog-card h4 { font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.blog-card p  { font-size: 0.82rem; flex: 1; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.blog-card-date { font-size: 0.72rem; color: var(--muted-l); }
.blog-card-read { font-size: 0.72rem; color: var(--accent-2); font-weight: 500; }

/* Sezioni scure da pagine prodotto (override) */
.feat-dark { background: rgba(5, 13, 24, 0.85) !important; }
.feat-dark .card {
  background: rgba(15, 28, 49, 0.6) !important;
  border-color: var(--border-glass) !important;
}
.feat-dark .card h4 { color: var(--text) !important; }
.feat-dark .card p { color: var(--muted) !important; }
.feat-dark .card-icon { background: rgba(56, 189, 248, 0.12) !important; }
.feat-dark .card-icon svg { stroke: var(--accent-2) !important; }
.feat-dark h2 { color: var(--text) !important; }
.feat-dark .label { color: var(--accent-2) !important; }
.feat-dark p.section-sub { color: var(--muted) !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::after { display: none; }
}

@media (max-width: 900px) {
  .hero-home { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; min-height: auto; }
  .hero-visual { display: none; }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 2rem;
  }
  .hero-stats > div { padding: 0.85rem 0.5rem; }
  .stat-n { font-size: 1.25rem; }
  .stat-l { font-size: 0.68rem; }
  .logos-strip { gap: 1.5rem; -webkit-mask-image: none; mask-image: none; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  section { padding: 3.5rem 1.5rem; }
  .grid-2, .grid-3, .grid-4, .grid-auto { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-menu, .nav-actions .btn:not(.btn-demo) { display: none; }
  .nav-hamburger { display: block; }
  .main-nav { padding: 0 1.25rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-brand-name { font-size: 1.2rem; }

  .main-nav.is-mobile-open .nav-menu,
  .main-nav.is-mobile-open .nav-actions .btn:not(.btn-demo) {
    display: flex;
  }
  .main-nav.is-mobile-open .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 1rem 1.25rem 6rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.98) 0%, rgba(5, 13, 24, 0.99) 100%);
    overflow-y: auto;
    box-shadow: inset 0 1px 0 var(--border-glass);
    z-index: 160;
  }
  .main-nav.is-mobile-open .nav-menu > li {
    border-bottom: 1px solid var(--border-glass);
  }
  .main-nav.is-mobile-open .nav-menu > li > a {
    padding: 1rem 0.5rem;
    font-size: 1rem;
    color: var(--text-body);
  }
  .main-nav.is-mobile-open .nav-dd-btn {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    border-radius: 0;
    color: var(--text-body);
  }
  .main-nav.is-mobile-open .nav-dropdown {
    position: static;
    min-width: 0;
    max-width: none;
    margin: 0 0 0.75rem 0;
    padding: 0 0 0.5rem 0.5rem;
    border: none;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  .main-nav.is-mobile-open .nav-dd.is-open .nav-dropdown {
    display: block;
  }
  .main-nav.is-mobile-open .nav-dropdown a {
    padding: 0.65rem 0.75rem;
    color: var(--muted);
  }
  .main-nav.is-mobile-open .nav-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
    background: rgba(5, 13, 24, 0.96);
    border-top: 1px solid var(--border-glass);
    justify-content: center;
    gap: 1rem;
    z-index: 165;
  }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .whatsapp-btn { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
}
