﻿@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800;900&display=swap");
:root {
  --white: #ffffff;
  --paper: #f7fbfb;
  --aqua: #2c9fb4;
  --aqua-light: #dff3f5;
  --teal: #1d827c;
  --navy: #16364a;
  --text: #263f4d;
  --muted: #667985;
  --line: #d8e5e8;
  --gold: #b9904b;
  --shadow: 0 18px 45px rgba(22, 54, 74, 0.12);
  --radius: 8px;
  --font-body: "Nunito Sans", Arial, Helvetica, sans-serif;
  --font-title: "Nunito Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(44, 159, 180, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 72px 0;
}

.section-pad-sm {
  padding: 52px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 229, 232, 0.85);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(22, 54, 74, 0.1);
}

.wellness-banner {
  position: sticky;
  top: 156px;
  z-index: 45;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 1rem;
  border: 0;
  border-bottom: 1px solid rgba(120, 15, 15, 0.28);
  background: #b91c1c;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(120, 15, 15, 0.16);
  animation: testPulse 1.35s ease-in-out infinite;
}

.wellness-banner span {
  font-weight: 700;
}

.wellness-banner strong {
  font-family: var(--font-title);
  font-size: 1.05rem;
}

.wellness-banner:hover {
  background: #991b1b;
  animation-play-state: paused;
}

@keyframes testPulse {
  0%,
  100% {
    background: #b91c1c;
    box-shadow: 0 10px 26px rgba(120, 15, 15, 0.16);
  }

  50% {
    background: #ef1d1d;
    box-shadow: 0 10px 34px rgba(185, 28, 28, 0.42);
  }
}

.test-modal[hidden] {
  display: none;
}

.test-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.test-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 32, 44, 0.64);
  cursor: pointer;
}

.test-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(10, 32, 44, 0.32);
}

.test-modal-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.test-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.test-intro {
  margin: 0;
  padding: 18px 24px 0;
  color: var(--muted);
}

.test-form {
  padding: 20px 24px 24px;
}

.test-question-list {
  display: grid;
  gap: 12px;
}

.test-form fieldset {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.test-form legend {
  padding: 0;
  color: var(--navy);
  font-weight: 700;
}

.test-form label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.test-form input {
  width: 18px;
  height: 18px;
  accent-color: var(--aqua);
}

.test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.test-result {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8ec;
  color: var(--navy);
  font-weight: 700;
}

.test-result:empty {
  display: none;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-inner-centered {
  position: relative;
  min-height: 148px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 16px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.brand-centered {
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 136px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-centered .brand-logo {
  width: 220px;
}

.brand-subtitle {
  color: var(--teal);
  font-size: 0.74rem;
  letter-spacing: 0;
  margin-top: 2px;
}

.brand-centered .brand-subtitle {
  margin-top: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 600;
}

.primary-nav {
  width: min(940px, 100%);
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 0.46rem 0.72rem;
  border: 1px solid rgba(44, 159, 180, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: clamp(0.62rem, 0.76vw, 0.78rem);
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(22, 54, 74, 0.05);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--aqua), #6dbb35);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-color: rgba(44, 159, 180, 0.42);
  background: #f7fbfb;
  color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 54, 74, 0.09);
}

.site-nav-centered {
  flex: initial;
  gap: 28px;
  font-size: 1rem;
}

.header-whatsapp-centered {
  position: absolute;
  right: max(16px, calc((100vw - 1120px) / 2));
  top: 50%;
  transform: translateY(-50%);
}

.header-whatsapp-centered:hover {
  transform: translateY(calc(-50% - 2px));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.image-hero {
  position: relative;
  overflow: hidden;
  background: #dff3f5;
  border-bottom: 1px solid var(--line);
}

.category-menu {
  position: sticky;
  top: 148px;
  z-index: 48;
  padding: 12px 0;
  border-top: 1px solid rgba(216, 229, 232, 0.72);
  border-bottom: 1px solid rgba(216, 229, 232, 0.86);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 22px rgba(22, 54, 74, 0.06);
}

.category-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.category-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 154px;
  min-height: 46px;
  padding: 0.72rem 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(12, 98, 139, 0.46);
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.74), transparent 24%),
    linear-gradient(180deg, #47cef5 0%, #13a5dd 45%, #0578b5 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(0.7rem, 0.86vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(7, 52, 82, 0.44);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.54),
    inset 0 -6px 12px rgba(2, 68, 120, 0.2),
    0 2px 0 rgba(0, 73, 119, 0.42),
    0 12px 24px rgba(13, 118, 170, 0.13);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.category-menu a .menu-thumb {
  display: none;
}

.category-menu a .menu-thumb img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
  transform: scale(var(--menu-zoom, 1.9));
  transform-origin: var(--menu-origin, center);
  transition: transform 180ms ease, filter 180ms ease;
}

.category-menu a .menu-thumb-riposo img {
  --menu-origin: 68% 74%;
  --menu-zoom: 2.15;
}

.category-menu a .menu-thumb-magnetoterapia img {
  --menu-origin: 52% 54%;
  --menu-zoom: 2.1;
}

.category-menu a .menu-thumb-acqua img {
  --menu-origin: 78% 60%;
  --menu-zoom: 2.05;
}

.category-menu a .menu-thumb-poltrone img {
  --menu-origin: 62% 66%;
  --menu-zoom: 2.05;
}

.category-menu a .menu-thumb-caffe img {
  --menu-origin: 68% 56%;
  --menu-zoom: 2.1;
}

.category-menu a .menu-thumb-candele img {
  --menu-origin: 70% 58%;
  --menu-zoom: 2.08;
}

.category-menu a .menu-label {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  max-width: none;
}

.category-menu a strong {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  font-size: 1em;
  font-weight: 800;
  line-height: 1;
  text-shadow: none;
}

.category-menu a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 12%;
  right: 12%;
  height: 38%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.category-menu a::after {
  content: "";
  position: absolute;
  inset: 0;
  left: auto;
  right: auto;
  bottom: auto;
  width: 54px;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  pointer-events: none;
  transform: skewX(-18deg) translateX(-190%);
  transition: transform 420ms ease;
}

.category-menu a:hover,
.category-menu a:focus-visible {
  border-color: rgba(0, 118, 176, 0.62);
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.84), transparent 24%),
    linear-gradient(180deg, #66dcff 0%, #17b7ea 45%, #0578b5 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.68),
    inset 0 -7px 14px rgba(2, 68, 120, 0.22),
    0 3px 0 rgba(0, 73, 119, 0.46),
    0 16px 28px rgba(13, 118, 170, 0.22);
}

.category-menu a:hover .menu-thumb,
.category-menu a:focus-visible .menu-thumb {
  border-color: rgba(255, 255, 255, 0.72);
  filter: saturate(1.12) contrast(1.04);
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.46),
    0 14px 24px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(37, 211, 102, 0.28);
}

.category-menu a:hover .menu-thumb img,
.category-menu a:focus-visible .menu-thumb img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(calc(var(--menu-zoom, 1.9) + 0.12));
}

.category-menu a:hover::before,
.category-menu a:focus-visible::before {
  opacity: 1;
}

.category-menu a:hover::after,
.category-menu a:focus-visible::after {
  transform: skewX(-18deg) translateX(260%);
}

.category-menu a:nth-child(1) {
  animation: none;
}

.category-menu a:nth-child(3) {
  animation: none;
}

.category-menu a:nth-child(6) {
  animation: none;
}

@keyframes premiumButtonFloat {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(22, 54, 74, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  50% {
    box-shadow: 0 16px 32px rgba(44, 159, 180, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

.image-hero img {
  display: block;
  width: 100%;
  height: min(690px, calc(100vh - 220px));
  min-height: 430px;
  object-fit: cover;
  object-position: center center;
}

.hero-separator {
  position: relative;
  z-index: 2;
  padding: 58px 0 46px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 -18px 46px rgba(255, 255, 255, 0.94);
}

.hero-separator::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(720px, 82vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 159, 180, 0.42), transparent);
  transform: translateX(-50%);
}

.hero-separator .eyebrow {
  margin-bottom: 0.45rem;
}

.hero-separator h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1.45rem, 3.3vw, 2.45rem);
  line-height: 1.16;
}

.hero-separator-copy {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.62;
}

.hero-separator-cta {
  margin-top: 22px;
}

.carousel-intro {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(44, 159, 180, 0.12), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #edf6f8 100%);
  text-align: center;
}

.carousel-intro-inner {
  max-width: 800px;
}

.carousel-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.carousel-intro p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--teal);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-carousel {
  position: relative;
  overflow: hidden;
  padding: 56px 0 14px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.92), transparent 22%),
    radial-gradient(circle at 50% 18%, rgba(44, 159, 180, 0.16), transparent 38%),
    linear-gradient(180deg, #edf6f8 0%, #f8fcfc 100%);
  border-bottom: 1px solid var(--line);
}

.showcase-carousel::selection {
  background: transparent;
}

.showcase-carousel::before,
.showcase-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 24;
  width: min(18vw, 190px);
  pointer-events: none;
}

.showcase-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #edf6f8 0%, rgba(237, 246, 248, 0.86) 34%, rgba(237, 246, 248, 0) 100%);
}

.showcase-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f8fcfc 0%, rgba(248, 252, 252, 0.86) 34%, rgba(248, 252, 252, 0) 100%);
}

.carousel-stage {
  position: relative;
  width: min(980px, calc(100% - 44px));
  height: clamp(360px, 45vw, 520px);
  margin: 0 auto;
  perspective: 1400px;
  transform-style: preserve-3d;
  touch-action: pan-y;
  cursor: grab;
}

.carousel-stage:active {
  cursor: grabbing;
}

.carousel-slide {
  --offset: 0;
  --abs-offset: 0;
  position: absolute;
  top: 28px;
  left: 50%;
  width: clamp(190px, 22vw, 270px);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(44, 159, 180, 0.24);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 46px rgba(22, 54, 74, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  opacity: calc(1 - (var(--abs-offset) * 0.18));
  pointer-events: none;
  transform:
    translateX(calc(-50% + (var(--offset) * clamp(92px, 16vw, 178px))))
    translateZ(calc((3 - var(--abs-offset)) * 30px))
    rotateY(calc(var(--offset) * -26deg))
    scale(calc(1 - (var(--abs-offset) * 0.06)));
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 420ms ease, box-shadow 240ms ease, border-color 240ms ease;
  will-change: transform, opacity;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(8, 32, 48, 0.66) 100%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.54), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.carousel-slide::after {
  content: attr(data-title) "\A" attr(data-subtitle);
  white-space: pre-line;
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.carousel-slide.is-active {
  pointer-events: auto;
  border-color: var(--aqua);
  box-shadow: 0 34px 82px rgba(22, 54, 74, 0.26), 0 0 0 6px rgba(44, 159, 180, 0.1), 0 0 44px rgba(44, 159, 180, 0.16);
}

.carousel-slide.is-active::before,
.carousel-slide.is-active::after,
.carousel-slide:hover::before,
.carousel-slide:hover::after,
.carousel-slide:focus-visible::before,
.carousel-slide:focus-visible::after {
  opacity: 1;
}

.carousel-slide.is-active::after,
.carousel-slide:hover::after,
.carousel-slide:focus-visible::after {
  transform: translateY(0);
}

.carousel-slide.is-near {
  pointer-events: auto;
}

.carousel-slide.is-hidden-3d {
  opacity: 0;
  pointer-events: none;
}

.carousel-slide:hover,
.carousel-slide:focus-visible {
  transform:
    translateX(calc(-50% + (var(--offset) * clamp(92px, 16vw, 178px))))
    translateZ(calc((3 - var(--abs-offset)) * 42px + 42px))
    rotateY(calc(var(--offset) * -16deg))
    scale(calc(1.04 - (var(--abs-offset) * 0.025)));
  border-color: var(--aqua);
  box-shadow: 0 34px 82px rgba(22, 54, 74, 0.28), 0 0 0 6px rgba(44, 159, 180, 0.1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-slide.is-active img {
  transform: scale(1.018);
}

.bio-air-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(213, 166, 98, 0.17), transparent 28%),
    radial-gradient(circle at 86% 28%, rgba(44, 159, 180, 0.2), transparent 30%),
    linear-gradient(180deg, #081118 0%, #132533 54%, #eef8fa 100%);
  color: #fff;
}

.bio-air-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.bio-air-copy {
  position: relative;
  z-index: 2;
}

.bio-air-copy .eyebrow {
  color: #91d4e2;
}

.bio-air-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.bio-air-copy > p {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.7;
}

.bio-air-info {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08), 0 18px 40px rgba(0, 0, 0, 0.18);
}

.bio-air-info span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #d5a662;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.bio-air-info strong {
  display: block;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.bio-air-info p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.bio-air-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}

.bio-air-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
}

.bio-air-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: clamp(320px, 48vw, 620px);
  border: 1px solid rgba(145, 212, 226, 0.24);
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(145, 212, 226, 0.18), transparent 38%), #081118;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.bio-air-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
}

.bio-air-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #d5a662;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 8px rgba(213, 166, 98, 0.22), 0 16px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.bio-air-point::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  animation: bioPulse 2.2s ease infinite;
}

.bio-air-point span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  width: max-content;
  max-width: 150px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8, 17, 24, 0.76);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bio-air-point:hover,
.bio-air-point:focus-visible,
.bio-air-point.is-active {
  transform: translate(-50%, -50%) scale(1.22);
  background: #2c9fb4;
  box-shadow: 0 0 0 10px rgba(44, 159, 180, 0.24), 0 18px 36px rgba(0, 0, 0, 0.34);
  outline: none;
}

.bio-air-point:hover span,
.bio-air-point:focus-visible span,
.bio-air-point.is-active span {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

@keyframes bioPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 8px 16px 20px;
  background: transparent;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(44, 159, 180, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(22, 54, 74, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-arrow:hover {
  border-color: var(--aqua);
  background: var(--aqua-light);
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(44, 159, 180, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(22, 54, 74, 0.08);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b7cbd1;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 26px;
  border-radius: 8px;
  background: var(--teal);
}

.main-cards {
  background: var(--white);
}

.main-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 6px;
}

.main-card {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 12px;
  min-height: 205px;
  padding: 30px;
  border: 1px solid #cce3e7;
  border-radius: var(--radius);
  background: #e8f5f6;
  color: var(--navy);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(22, 54, 74, 0.06);
  animation: cardNudge 3.8s ease-in-out infinite alternate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.main-card:nth-child(2) {
  animation-delay: 240ms;
}

.main-card:nth-child(3) {
  animation-delay: 480ms;
}

.main-card:nth-child(4) {
  animation-delay: 720ms;
}

.main-card:nth-child(5) {
  animation-delay: 960ms;
}

.main-card:hover,
.main-card:focus-visible {
  transform: translateX(6px);
  background: #d7f0f2;
  box-shadow: var(--shadow);
}

.main-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 105px;
  height: 105px;
  border: 16px solid rgba(29, 130, 124, 0.14);
  border-radius: 50%;
  transition: transform 220ms ease, border-color 220ms ease;
}

.main-card:hover::after,
.main-card:focus-visible::after {
  transform: scale(1.22);
  border-color: rgba(29, 130, 124, 0.25);
}

@keyframes cardNudge {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(5px);
  }
}

.main-card span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.main-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-title);
  font-size: clamp(1.22rem, 2.15vw, 1.5rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.main-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.main-card em {
  position: relative;
  z-index: 1;
  align-self: end;
  color: var(--teal);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 800;
}

.problem-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(44, 159, 180, 0.28), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(185, 28, 28, 0.34), transparent 32%),
    linear-gradient(135deg, #0d2433 0%, #111827 48%, #4a0909 100%);
  color: var(--white);
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 82%);
}

.problem-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 120px;
  width: min(860px, 82vw);
  height: min(860px, 82vw);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.problem-experience {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}

.problem-head {
  width: min(860px, 100%);
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0 auto;
  text-align: center;
}

.problem-head .eyebrow,
.problem-head h2 {
  color: var(--white);
}

.problem-head h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 5.7vw, 4.7rem);
}

.problem-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.problem-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.problem-steps span {
  padding: 0.54rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 800;
}

.problem-stage {
  position: relative;
  display: grid;
  gap: 30px;
  padding: 34px 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.problem-stage::before {
  content: "seleziona i tuoi segnali";
  position: absolute;
  left: 18px;
  top: -13px;
  padding: 0.26rem 0.72rem;
  border-radius: 999px;
  background: #25d366;
  color: #062b16;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-category {
  display: grid;
  gap: 14px;
}

.problem-category > h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 18px;
}

.problem-card {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-rows: 1fr;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: visible;
  border: 1px solid rgba(44, 159, 180, 0.24);
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #f4fbfc 100%);
  box-shadow: 0 16px 34px rgba(12, 38, 52, 0.13), inset 0 0 0 1px rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.problem-card:hover {
  transform: translateY(-8px) scale(1.045);
  filter: brightness(1.02);
  box-shadow: 0 24px 48px rgba(12, 38, 52, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.problem-card.is-selected {
  border-color: rgba(184, 20, 27, 0.58);
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 28px 56px rgba(12, 38, 52, 0.22), 0 0 0 4px rgba(184, 20, 27, 0.08), 0 0 34px rgba(184, 20, 27, 0.12);
}

.problem-card.is-selected::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(12, 38, 52, 0.66) 100%),
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.24), transparent 42%);
}

.problem-card.is-selected::after {
  border-color: rgba(184, 20, 27, 0.46);
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 44%, rgba(12, 38, 52, 0.7) 100%),
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.18), transparent 42%);
  pointer-events: none;
}

.problem-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
  pointer-events: none;
}

.problem-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b8141b, #25d366);
}

.problem-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 9px;
  filter: saturate(0.96) contrast(1.06) brightness(0.92);
}

.problem-card > div {
  grid-area: 1 / 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
  min-height: 100%;
  padding: 12px 12px 14px;
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(16, 56, 75, 0.38) 48%, rgba(12, 38, 52, 0.88) 100%),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.16), transparent 36%);
}

.problem-card > div > span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(184, 20, 27, 0.86);
  color: #fff7f7;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.problem-card h3 {
  margin-top: 4px;
  color: var(--white);
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.12;
}

.problem-card h3,
.problem-card p {
  text-shadow: 0 2px 9px rgba(2, 19, 26, 0.68);
}

.problem-card p {
  margin-top: 5px;
  color: var(--white);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.28;
}

.problem-alert {
  position: absolute;
  z-index: 4;
  top: -16px;
  left: -13px;
  width: 42px;
  height: 38px;
  display: grid;
  place-items: center;
  padding-top: 6px;
  clip-path: polygon(50% 0, 100% 91%, 94% 100%, 6% 100%, 0 91%);
  background: #b8141b;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1;
  filter: drop-shadow(0 4px 3px rgba(102, 0, 0, 0.14));
}

.problem-card.is-selected .problem-alert {
  background: #25d366;
  color: #062b16;
}

.problem-alert::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  clip-path: inherit;
  background: #d42b32;
}

.problem-counter {
  width: min(780px, 100%);
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(44, 159, 180, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 248, 249, 0.9)),
    radial-gradient(circle at 50% -20%, rgba(37, 211, 102, 0.16), transparent 46%);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 22px 56px rgba(5, 31, 44, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.problem-counter::before {
  content: "SOLUZIONE CONSIGLIATA";
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.problem-counter strong {
  font-family: var(--font-body);
  color: var(--navy);
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.problem-counter strong span {
  display: inline-grid;
  place-items: center;
  width: 1.7em;
  height: 1.7em;
  margin-right: 0.18em;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-title);
  box-shadow: 0 10px 24px rgba(22, 54, 74, 0.2);
}

.problem-counter p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.problem-counter .btn {
  display: none;
  width: auto;
  min-height: 48px;
  margin-top: 10px;
  padding-inline: 1.25rem;
  border-radius: 999px;
  background: #25d366;
  color: #062b16;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.problem-counter.is-alert {
  border-color: rgba(37, 211, 102, 0.34);
  background:
    linear-gradient(135deg, rgba(12, 35, 49, 0.98), rgba(15, 82, 84, 0.98)),
    radial-gradient(circle at 50% -20%, rgba(37, 211, 102, 0.28), transparent 48%);
  color: var(--white);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.problem-counter.is-alert::before {
  color: #9cf2c1;
}

.problem-counter.is-alert strong,
.problem-counter.is-alert p {
  color: var(--white);
}

.problem-counter.is-alert strong span {
  background: #25d366;
  color: #062b16;
}

.problem-counter.is-alert .btn.is-visible {
  display: inline-flex;
}

.brand-story {
  background:
    radial-gradient(circle at 12% 12%, rgba(44, 159, 180, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.brand-story-grid,
.find-us-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.brand-story-copy p,
.find-us-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.brand-story-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(44, 159, 180, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(223, 243, 245, 0.74)),
    radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.16), transparent 42%);
  box-shadow: var(--shadow);
}

.brand-story-panel strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.18;
}

.brand-story-panel p {
  color: var(--muted);
}

.reviews-proof {
  background: var(--white);
}

.find-us {
  background:
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
}

.map-card {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  min-height: 360px;
  border: 0;
}

.consultation-final {
  background:
    radial-gradient(circle at 18% 0%, rgba(44, 159, 180, 0.28), transparent 35%),
    linear-gradient(135deg, #102b3b 0%, #16364a 56%, #1d827c 100%);
  color: var(--white);
}

.consultation-final .eyebrow,
.consultation-final h2 {
  color: var(--white);
}

.consultation-final-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.consultation-final p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.test-page {
  background: #f4fafb;
}

.test-page-header {
  position: relative;
}

.test-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.test-header-inner .brand-logo {
  width: 150px;
}

.back-link {
  color: var(--teal);
  font-weight: 800;
}

.test-page-main {
  min-height: calc(100vh - 92px);
}

.area-test-hero {
  padding: 70px 0 48px;
  background: var(--navy);
  color: var(--white);
}

.area-test-hero h1,
.area-test-hero .eyebrow {
  color: var(--white);
}

.area-test-hero .eyebrow {
  opacity: 0.74;
}

.test-page-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
}

.area-test-content {
  padding: 50px 0 80px;
}

.area-test-content .container {
  max-width: 920px;
  overflow: visible;
}

.area-test-form {
  display: grid;
  justify-items: center;
}

.area-test-questions {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.area-test-question {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(22, 54, 74, 0.05);
  text-align: center;
}

.area-test-question legend {
  width: 100%;
  max-width: 100%;
  padding: 0 8px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.area-test-hint {
  margin: -4px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.area-test-group {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.area-test-group + .area-test-group,
.area-test-options + .area-test-group {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.area-test-options {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-test-options label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: 100%;
  padding: 0.52rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.area-test-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.area-test-textarea,
.area-test-input {
  width: min(100%, 620px);
  max-width: 100%;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.86rem 1rem;
  font: inherit;
  color: var(--navy);
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(22, 54, 74, 0.05);
}

.area-test-textarea:focus,
.area-test-input:focus {
  outline: 2px solid rgba(38, 168, 177, 0.28);
  border-color: var(--teal);
}

.area-test-result {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  padding: 30px;
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: #e2f4f4;
  color: var(--navy);
  text-align: center;
}

.area-test-result h2 {
  font-size: 1.5rem;
}

.solution-bands {
  display: grid;
}

.solution-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 34px;
  min-height: 430px;
  padding: 44px max(16px, calc((100vw - 1120px) / 2));
  color: var(--white);
  transition: filter 180ms ease, transform 180ms ease;
}

.solution-band:hover {
  filter: brightness(1.04);
}

.solution-band-copy {
  display: grid;
  gap: 16px;
}

.solution-band span {
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 1;
}

.solution-band strong {
  max-width: 560px;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  line-height: 1.35;
}

.solution-band img {
  width: 100%;
  height: min(340px, 38vw);
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.solution-band-water {
  background: #0f8fa6;
}

.solution-band-rest {
  background: #315b8a;
}

.solution-band-coffee {
  background: #73502a;
}

.solution-band-chair {
  background: #6d4c7d;
}

.solution-band-magnet {
  background: #2f6d68;
}

.story-brief,
.conversion-offer,
.social-proof {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.conversion-offer {
  background:
    radial-gradient(circle at 84% 0%, rgba(37, 211, 102, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.offer-card {
  position: relative;
  min-height: 188px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(22, 54, 74, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 159, 180, 0.42);
  box-shadow: var(--shadow);
}

.offer-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(29, 130, 124, 0.16);
  border-radius: 50%;
  background: rgba(223, 243, 245, 0.62);
}

.offer-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.offer-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-title);
  font-size: 1.35rem;
}

.offer-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.62;
}

.offer-cta {
  margin-top: 24px;
}

.focus-showcase {
  background:
    radial-gradient(circle at 90% 0%, rgba(44, 159, 180, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.focus-stack {
  display: grid;
  gap: 28px;
  margin-top: 30px;
}

.focus-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(22, 54, 74, 0.08);
}

.focus-row-reverse {
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 0.9fr);
}

.focus-row-reverse .focus-copy {
  order: 2;
}

.focus-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-copy h3 {
  max-width: 620px;
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.focus-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.focus-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(44, 159, 180, 0.16), transparent 36%),
    #06111b;
  box-shadow: 0 18px 42px rgba(16, 52, 68, 0.18);
}

.focus-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: filter 220ms ease;
}

.focus-row:hover .focus-media img {
  filter: brightness(1.04);
}

.problem-solution-cta {
  display: grid;
  gap: 22px;
  margin-top: 30px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(44, 159, 180, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.16), transparent 34%),
    linear-gradient(135deg, #12384b, #176e73);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(16, 52, 68, 0.18);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.problem-solution-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.problem-solution-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #b9f071;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.problem-solution-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.58;
}

.problem-solution-cta .btn {
  justify-self: start;
  background: #25d366;
  color: #062b16;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.26);
}

.story-brief-inner {
  max-width: 920px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(44, 159, 180, 0.14), transparent 34%),
    var(--white);
  box-shadow: 0 12px 30px rgba(22, 54, 74, 0.07);
}

.story-brief-inner h2 {
  max-width: 760px;
}

.story-brief-inner p:not(.eyebrow) {
  max-width: 840px;
  color: var(--muted);
  line-height: 1.7;
}

.story-brief-inner .btn {
  margin-top: 22px;
}

.social-proof {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 0%, rgba(44, 159, 180, 0.12), transparent 34%),
    var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 26px;
}

.proof-card {
  position: relative;
  min-height: 160px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(22, 54, 74, 0.07);
}

.proof-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 130, 124, 0.18);
  border-radius: 50%;
  background: rgba(223, 243, 245, 0.62);
}

.proof-card strong {
  position: relative;
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 1.18rem;
  line-height: 1.24;
}

.proof-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.google-review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 30px;
  padding: 26px;
  border: 1px solid rgba(44, 159, 180, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(44, 159, 180, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f0fbfc 100%);
  box-shadow: 0 18px 38px rgba(22, 54, 74, 0.09);
}

.google-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 0.24rem 0.58rem;
  border: 1px solid rgba(44, 159, 180, 0.24);
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-review-summary strong {
  display: inline-block;
  margin-right: 12px;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1;
}

.review-stars {
  color: #f5b301;
  font-size: 1.24rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(245, 179, 1, 0.22);
}

.google-review-summary p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.google-proof-grid {
  margin-top: 18px;
}

.google-proof-card::before {
  content: "★";
  display: grid;
  place-items: center;
  color: #f5b301;
  font-size: 1.1rem;
  font-weight: 900;
  background: rgba(245, 179, 1, 0.1);
  border-color: rgba(245, 179, 1, 0.22);
}

/* Correzione recensioni: la stella non deve sovrapporsi ai titoli */
.google-proof-card {
  overflow: visible;
  padding-right: 72px;
}

.google-proof-card::before {
  top: 20px;
  right: 18px;
  width: 42px;
  height: 42px;
  box-shadow: 0 8px 18px rgba(245, 179, 1, 0.1);
}

.google-proof-card strong {
  max-width: 100%;
  padding-right: 8px;
}

@media (max-width: 760px) {
  .google-proof-card {
    padding-right: 24px;
    padding-top: 74px;
  }

  .google-proof-card::before {
    left: 24px;
    right: auto;
    top: 20px;
  }
}

.admin-added-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 0%, rgba(44, 159, 180, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.admin-added-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 880px;
  text-align: center;
}

.admin-added-inner h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.12;
}

.admin-added-inner p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.areas,
.about,
.products,
.why {
  display: none;
}

.consultation-final,
.conversion-offer,
.focus-showcase,
.story-brief,
main > .hero,
main > .social-proof,
main > .cta {
  display: none;
}

.restore-section {
  display: none;
}

.site-nav a {
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--aqua);
  border-color: var(--gold);
}

.header-whatsapp {
  background: #238a54;
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
}

.header-whatsapp {
  padding: 0.72rem 1rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 660px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #eef8f9 0%, #ffffff 72%);
}

.hero-grid,
.split-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.18;
}

h1,
h2 {
  font-family: var(--font-title);
}

h1 {
  font-size: clamp(2.3rem, 8vw, 4.6rem);
}

h2 {
  font-size: clamp(1.85rem, 5vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 1rem 0 0;
}

.hero-lead {
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 600;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.header-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 54, 74, 0.16);
}

.btn-primary {
  background: var(--aqua);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.hero-media,
.split-media,
.feature-media {
  position: relative;
}

.hero-media img,
.split-media img,
.feature-media img {
  border-radius: var(--radius);
  min-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 30px rgba(22, 54, 74, 0.14);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.area-grid,
.why-grid,
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card,
.why-box,
.product-card,
.contact-form,
.values div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  padding: 26px;
  box-shadow: 0 10px 28px rgba(22, 54, 74, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.product-card:hover,
.why-box:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 159, 180, 0.42);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--aqua-light);
  color: var(--teal);
  font-weight: 800;
}

.text-link,
.product-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 800;
}

.muted {
  background: var(--paper);
}

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.values div {
  padding: 18px;
}

.values strong,
.values span {
  display: block;
}

.values span,
.why-box span {
  color: var(--muted);
  margin-top: 4px;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 3px var(--aqua-light);
}

.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 22px;
}

.filter-btn {
  min-height: 42px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.product-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card span,
.product-card h3,
.product-card p,
.product-card a {
  margin-left: 18px;
  margin-right: 18px;
}

.product-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-top: 8px;
}

.product-card p {
  color: var(--muted);
}

.product-card a {
  margin-bottom: 18px;
}

.why-box {
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.why-box strong {
  display: block;
  color: var(--navy);
}

.cta {
  background: var(--navy);
  color: var(--white);
}

.cta h2,
.cta .eyebrow {
  color: var(--white);
}

.cta .eyebrow {
  opacity: 0.78;
}

.cta-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.contact-grid {
  align-items: start;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-style: normal;
}

address strong {
  margin-top: 10px;
  color: var(--navy);
}

address a {
  color: var(--teal);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--navy);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  color: var(--text);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.optional-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.form-note {
  margin: -2px 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.form-popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 26, 38, 0.58);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.form-popup-panel {
  position: relative;
  width: min(480px, 100%);
  border: 1px solid rgba(95, 176, 196, 0.35);
  border-radius: 22px;
  padding: 34px 28px 28px;
  background: linear-gradient(145deg, #ffffff 0%, #eefbff 100%);
  box-shadow: 0 28px 80px rgba(9, 33, 49, 0.28);
  text-align: center;
  color: var(--navy);
  animation: popupIn 0.24s ease both;
}

.form-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.form-popup-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #22c55e);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(84, 170, 58, 0.32);
}

.form-popup-warning .form-popup-icon {
  background: linear-gradient(135deg, #c61118, #f35b5b);
  box-shadow: 0 16px 34px rgba(198, 17, 24, 0.25);
}

.form-popup-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.form-popup-panel p {
  margin: 0 auto 22px;
  max-width: 36ch;
  color: var(--muted);
  line-height: 1.55;
}

.form-popup-action {
  min-width: 150px;
  justify-content: center;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.consent-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fcfc;
  color: var(--text);
  font-weight: 500;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.consent-row a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-row.is-disabled {
  color: var(--muted);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.form-message {
  min-height: 1.6rem;
  margin: 4px 0 0;
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  background: #102b3b;
  color: rgba(255, 255, 255, 0.82);
  padding: 52px 0 24px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.footer-brand img {
  width: 136px;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-brand p {
  max-width: 280px;
}

.footer-whatsapp {
  display: inline-flex;
  margin-top: 18px;
  padding: 0.68rem 0.9rem;
  border-radius: var(--radius);
  background: #238a54;
  color: var(--white);
  font-weight: 800;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.05rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-policy,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-policy button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom a:hover,
.footer-policy button:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 52px 20px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  color: var(--navy);
}

.cookie-banner p {
  margin-top: 4px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #edf6f8;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 31, 43, 0.52);
}

.cookie-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(780px, 92vh);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-options {
  display: grid;
  gap: 12px;
  padding: 0 24px 22px;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: 62px 0 28px;
  background: #eef8f9;
}

.legal-content {
  padding: 36px 0 72px;
}

.legal-card {
  display: grid;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(22, 54, 74, 0.07);
}

.legal-card section {
  display: grid;
  gap: 8px;
}

.legal-card h2 {
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.product-detail-page {
  min-height: calc(100vh - 128px);
  background:
    radial-gradient(circle at 78% 12%, rgba(44, 159, 180, 0.18), transparent 30%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
}

.product-detail-hero {
  padding: 54px 0 76px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.product-detail-grid > img {
  width: min(440px, 100%);
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-detail-grid .btn {
  margin-top: 28px;
}

.social-dock {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 45;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(15px);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.19),
    inset 0 0 5px rgba(255, 255, 255, 0.27),
    0 10px 22px rgba(16, 52, 68, 0.12);
  transform: translateY(-50%);
  transition: background 0.5s ease, box-shadow 0.3s ease;
}

.social-dock:hover {
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.24),
    inset 0 0 5px rgba(255, 255, 255, 0.32),
    0 14px 30px rgba(16, 52, 68, 0.16);
}

.social-dock ul {
  display: flex;
  flex-direction: column;
  gap: 0.64rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.62rem;
  list-style: none;
}

.social-dock-item {
  position: relative;
  cursor: pointer;
}

.social-dock-item a {
  position: relative;
  display: grid;
  place-items: center;
  color: #12384b;
}

.social-dock-svg {
  position: relative;
  z-index: 4;
  width: 42px;
  height: 42px;
  padding: 0.62rem;
  border-radius: 100%;
  color: currentColor;
  fill: currentColor;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-dock-whatsapp {
  color: #25d366;
}

.social-dock-instagram {
  color: #c13584;
}

.social-dock-facebook {
  color: #1877f2;
}

.social-dock-text {
  position: absolute;
  right: calc(100% + 8px);
  z-index: 6;
  min-width: max-content;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: #12384b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  box-shadow:
    -5px 0 1px rgba(153, 153, 153, 0.16),
    -10px 0 1px rgba(153, 153, 153, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.08);
  transform: translate(10px, 0) skew(-5deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-dock-item span[aria-hidden="true"] {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  opacity: 0;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.16);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-dock-item:hover .social-dock-svg,
.social-dock-item:focus-within .social-dock-svg {
  transform: translate(8px, -8px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.34),
    inset 0 0 5px rgba(255, 255, 255, 0.56),
    0 9px 16px rgba(16, 52, 68, 0.18);
}

.social-dock-item:hover .social-dock-text,
.social-dock-item:focus-within .social-dock-text {
  opacity: 1;
  transform: translate(0, -2px) skew(-5deg);
}

.social-dock-item:hover span[aria-hidden="true"],
.social-dock-item:focus-within span[aria-hidden="true"] {
  opacity: 1;
}

.social-dock-item:hover span[aria-hidden="true"]:nth-child(1),
.social-dock-item:focus-within span[aria-hidden="true"]:nth-child(1) {
  opacity: 0.18;
}

.social-dock-item:hover span[aria-hidden="true"]:nth-child(2),
.social-dock-item:focus-within span[aria-hidden="true"]:nth-child(2) {
  opacity: 0.34;
  transform: translate(4px, -4px);
}

.social-dock-item:hover span[aria-hidden="true"]:nth-child(3),
.social-dock-item:focus-within span[aria-hidden="true"]:nth-child(3) {
  opacity: 0.5;
  transform: translate(8px, -8px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .area-grid,
  .why-grid,
  .proof-grid,
  .offer-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-card {
    max-width: none;
  }

  .values,
  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hero-grid,
  .split-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid-reverse .feature-media {
    order: 1;
  }

  .feature-grid-reverse .feature-copy {
    order: 2;
  }

  .area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-grid,
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .main-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
  }

  .problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .problem-card {
    max-width: none;
  }

  .main-card {
    min-height: 238px;
    padding: 30px 24px;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand-story-grid,
  .find-us-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

  .consultation-final-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1.3fr;
  }

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

@media (max-width: 899px) {
  .header-inner {
    min-height: 76px;
  }

  .header-inner-centered {
    min-height: 104px;
    grid-template-columns: 1fr auto;
    justify-items: start;
    padding: 14px 0;
  }

  .brand-logo {
    width: 124px;
  }

  .brand-centered .brand-logo {
    width: 170px;
  }

  .image-hero img {
    height: min(560px, calc(100vh - 230px));
    min-height: 360px;
    object-position: 58% center;
  }

  .category-menu {
    top: 104px;
    padding: 10px 0;
  }

  .category-menu-inner {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .category-menu a {
    min-width: 138px;
    min-height: 42px;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    font-size: clamp(0.64rem, 1.8vw, 0.74rem);
    letter-spacing: 0.045em;
  }

  .category-menu a .menu-label {
    max-width: none;
  }

  .category-menu a .menu-thumb {
    display: none;
  }

  .bio-air-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bio-air-copy h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9.8vw, 3.25rem);
    line-height: 1.02;
  }

  .bio-air-copy > p {
    max-width: 36rem;
    font-size: 0.98rem;
  }

  .bio-air-info {
    margin: 18px 0;
    padding: 16px;
    border-radius: 16px;
  }

  .bio-air-tags {
    margin: -4px 0 18px;
  }

  .bio-air-tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .bio-air-visual {
    width: min(calc(100vw - 20px), 760px);
    min-height: 0;
    aspect-ratio: 3 / 2;
    margin-inline: auto;
    border-radius: 20px;
  }

  .bio-air-visual img {
    min-height: 0;
    object-fit: contain;
  }

  .bio-air-point {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 6px rgba(213, 166, 98, 0.2), 0 12px 24px rgba(0, 0, 0, 0.24);
  }

  .bio-air-point span {
    display: none;
  }

  .wellness-banner {
    top: 116px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav {
    display: flex;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    border-color: transparent;
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 260ms ease, opacity 180ms ease, transform 180ms ease, padding 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .site-nav.is-open {
    display: flex;
  }

  .primary-nav.is-open {
    max-height: 420px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-color: var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav-centered {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.78rem;
  }

  .primary-nav a {
    width: 100%;
    border-radius: 10px;
    border-bottom: 1px solid rgba(216, 229, 232, 0.78);
    font-size: 0.78rem;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav-centered a {
    padding: 0.25rem 0;
  }

  .header-whatsapp {
    display: none;
  }

  .carousel-stage {
    width: min(100%, calc(100% - 24px));
    height: clamp(320px, 66vw, 460px);
    perspective: 1100px;
  }

  .carousel-slide {
    top: 32px;
    width: clamp(158px, 30vw, 220px);
    transform:
      translateX(calc(-50% + (var(--offset) * clamp(70px, 15vw, 132px))))
      translateZ(calc((3 - var(--abs-offset)) * 22px))
      rotateY(calc(var(--offset) * -22deg))
      scale(calc(1 - (var(--abs-offset) * 0.06)));
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 180px;
  }

  .google-review-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .google-review-summary .btn {
    width: 100%;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .section-pad {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
  }

  .btn {
    width: 100%;
  }

  .wellness-banner {
    flex-direction: column;
    gap: 0;
    min-height: 64px;
    line-height: 1.25;
  }

  .header-inner-centered {
    min-height: 94px;
  }

  .wellness-banner {
    top: 94px;
  }

  .brand-centered .brand-logo {
    width: 152px;
  }

  .image-hero img {
    height: min(520px, 76vh);
    min-height: 430px;
    object-position: 61% center;
  }

  .hero-separator {
    padding: 42px 0 34px;
  }

  .hero-separator h2 {
    font-size: clamp(1.25rem, 6vw, 1.8rem);
  }

  .category-menu {
    top: 94px;
    padding: 10px 0 12px;
  }

  .category-menu-inner {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-inline: 18px;
    padding-block: 2px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .category-menu a {
    min-width: 132px;
    min-height: 42px;
    flex: 0 0 auto;
    padding: 0.64rem 0.98rem;
    border-radius: 999px;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    scroll-snap-align: start;
  }

  .category-menu a .menu-label {
    max-width: none;
  }

  .category-menu a .menu-thumb {
    display: none;
  }

  .solution-band {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .solution-band img {
    height: 240px;
    min-height: 240px;
  }

  .carousel-stage {
    width: min(100%, calc(100% - 18px));
    height: clamp(285px, 76vw, 390px);
    perspective: 920px;
  }

  .carousel-slide {
    top: 28px;
    width: clamp(132px, 39vw, 178px);
    padding: 6px;
    transform:
      translateX(calc(-50% + (var(--offset) * clamp(46px, 17vw, 82px))))
      translateZ(calc((3 - var(--abs-offset)) * 14px))
      rotateY(calc(var(--offset) * -18deg))
      scale(calc(1 - (var(--abs-offset) * 0.06)));
  }

  .carousel-controls {
    gap: 10px;
  }

  .main-card {
    min-height: 196px;
    padding: 20px 18px;
  }

  .main-card strong {
    font-size: clamp(1.05rem, 5.2vw, 1.22rem);
  }

  .main-card small {
    font-size: 0.84rem;
  }

  .test-header-inner {
    min-height: 76px;
  }

  .test-header-inner .brand-logo {
    width: 116px;
  }

  .back-link {
    font-size: 0.86rem;
  }

  .area-test-hero {
    padding: 46px 0 34px;
  }

  .area-test-content {
    padding: 32px 0 56px;
  }

  .area-test-question {
    padding: 18px 12px;
  }

  .area-test-question legend {
    padding: 0;
    font-size: 0.98rem;
  }

  .area-test-options {
    gap: 8px;
  }

  .area-test-options label {
    flex: 1 1 138px;
    min-width: 0;
    padding: 0.62rem 0.58rem;
  }

  .area-test-textarea,
  .area-test-input {
    font-size: 0.95rem;
  }

  .test-modal {
    padding: 10px;
  }

  .test-modal-panel {
    max-height: 88vh;
  }

  .test-modal-header,
  .test-intro,
  .test-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .test-form fieldset {
    grid-template-columns: 1fr 1fr;
  }

  .test-form legend {
    grid-column: 1 / -1;
  }

  .social-dock {
    right: 9px;
    top: auto;
    bottom: 84px;
    transform: none;
  }

  .social-dock ul {
    gap: 0.44rem;
    padding: 0.44rem;
  }

  .social-dock-svg,
  .social-dock-item span[aria-hidden="true"] {
    width: 36px;
    height: 36px;
  }

  .social-dock-svg {
    padding: 0.54rem;
  }

  .social-dock-text {
    display: none;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 18px 42px 18px 16px;
  }

  .cookie-options {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal-card {
    padding: 20px;
  }

  .product-detail-hero {
    padding: 34px 0 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 899px) {
  .showcase-carousel {
    padding-top: 38px;
  }

  .carousel-stage {
    width: min(100%, calc(100% - 18px));
    height: clamp(390px, 104vw, 590px);
    perspective: 1050px;
  }

  .carousel-slide {
    top: 18px;
    width: clamp(210px, 62vw, 310px);
    padding: 7px;
    border-radius: 20px;
    transform:
      translateX(calc(-50% + (var(--offset) * clamp(92px, 30vw, 142px))))
      translateZ(calc((3 - var(--abs-offset)) * 24px))
      rotateY(calc(var(--offset) * -20deg))
      scale(calc(1 - (var(--abs-offset) * 0.08)));
  }

  .carousel-slide::after {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 0.68rem;
  }

  .carousel-controls {
    gap: 10px;
    padding-bottom: 18px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .carousel-dots {
    max-width: 58vw;
    gap: 7px;
  }

  .carousel-dots button {
    width: 10px;
    height: 10px;
  }

  .carousel-dots button.is-active {
    width: 30px;
  }
}

@media (max-width: 520px) {
  .showcase-carousel::before,
  .showcase-carousel::after {
    width: 52px;
  }

  .carousel-stage {
    height: clamp(380px, 126vw, 560px);
  }

  .carousel-slide {
    width: clamp(218px, 74vw, 292px);
    transform:
      translateX(calc(-50% + (var(--offset) * clamp(78px, 36vw, 118px))))
      translateZ(calc((3 - var(--abs-offset)) * 20px))
      rotateY(calc(var(--offset) * -18deg))
      scale(calc(1 - (var(--abs-offset) * 0.09)));
  }

  .carousel-slide.is-active {
    box-shadow: 0 28px 66px rgba(22, 54, 74, 0.28), 0 0 0 5px rgba(44, 159, 180, 0.12);
  }

  .carousel-controls {
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
  }

  .carousel-dots {
    max-width: 48vw;
    padding: 8px 10px;
  }
}

@media (max-width: 899px) {
  .focus-row,
  .focus-row-reverse {
    grid-template-columns: 1fr;
  }

  .focus-row-reverse .focus-copy {
    order: 0;
  }

  .focus-media img {
    height: auto;
  }
}

@media (max-width: 520px) {
  .focus-row {
    padding: 16px;
  }

  .focus-copy h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .focus-copy p {
    font-size: 0.95rem;
  }

  .focus-media img {
    height: auto;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .problem-solution-cta .btn {
    justify-self: stretch;
  }
}

/* Correzione menu: desktop pulito, hamburger solo su mobile/tablet */
@media (min-width: 900px) {
  .site-header .header-inner {
    min-height: 132px;
    padding: 14px 0 16px;
  }

  .site-header .brand-centered {
    margin-bottom: 8px;
  }

  .site-header .brand-centered .brand-logo {
    width: clamp(150px, 13vw, 210px);
  }

  .site-header .menu-toggle {
    display: none !important;
  }

  .site-header .primary-nav,
  .site-header .primary-nav.is-open {
    position: static;
    display: flex !important;
    width: auto;
    max-height: none;
    flex: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(14px, 1.6vw, 24px);
    padding: 0;
    margin: 0 auto;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header .primary-nav a {
    width: auto;
    padding: 0.18rem 0;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--navy);
    font-size: clamp(0.72rem, 0.78vw, 0.9rem);
    font-weight: 900;
    letter-spacing: 0.035em;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 180ms ease, border-color 180ms ease;
  }

  .site-header .primary-nav a::after {
    display: none;
  }

  .site-header .primary-nav a:hover,
  .site-header .primary-nav a:focus-visible {
    border-color: var(--aqua);
    background: transparent;
    color: var(--teal);
    transform: none;
    box-shadow: none;
  }

  .category-menu {
    top: 132px;
    padding: 12px 0;
  }

  .category-menu-inner {
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-menu-inner::-webkit-scrollbar {
    display: none;
  }

  .category-menu a {
    min-width: 150px;
    padding: 0.7rem 1.18rem;
    font-size: clamp(0.7rem, 0.76vw, 0.84rem);
  }
}

@media (max-width: 899px) {
  .site-header .header-inner {
    min-height: 92px;
    padding: 10px 0;
  }

  .site-header .brand-centered .brand-logo {
    width: clamp(118px, 34vw, 165px);
  }

  .site-header .primary-nav {
    display: flex;
  }

  .category-menu {
    top: 92px;
  }
}

/* Correzione definitiva hero: immagine sempre intera, mai tagliata */
.image-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 18px) 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98) 0%, rgba(226, 246, 249, 0.68) 48%, rgba(255, 255, 255, 0.96) 100%);
}

.image-hero img {
  width: auto;
  max-width: min(100%, 940px);
  height: min(72vh, 760px);
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .image-hero {
    padding: 0;
  }

  .image-hero img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .bio-air-section {
    background:
      radial-gradient(circle at 18% 16%, rgba(213, 166, 98, 0.15), transparent 30%),
      linear-gradient(180deg, #081118 0%, #132533 72%, #eef8fa 100%);
  }

  .bio-air-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(1.82rem, 10.8vw, 2.72rem);
  }

  .bio-air-copy > p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .bio-air-info strong {
    font-size: 1.08rem;
  }

  .bio-air-info p {
    font-size: 0.9rem;
  }

  .bio-air-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .bio-air-tags span {
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .bio-air-copy .btn {
    width: 100%;
    justify-content: center;
  }

  .bio-air-visual {
    border-radius: 16px;
  }

  .bio-air-point {
    width: 14px;
    height: 14px;
    border-width: 2px;
    box-shadow: 0 0 0 5px rgba(213, 166, 98, 0.2), 0 10px 20px rgba(0, 0, 0, 0.22);
  }

  .bio-air-point:hover,
  .bio-air-point:focus-visible,
  .bio-air-point.is-active {
    transform: translate(-50%, -50%) scale(1.16);
    box-shadow: 0 0 0 7px rgba(44, 159, 180, 0.22), 0 12px 24px rgba(0, 0, 0, 0.28);
  }
}

