:root {
  --coral: #f15f54;
  --yellow: #f15f54;
  --green: #18b7b0;
  --teal: #18b7b0;
  --blue: #123f4a;
  --text: #163840;
  --muted: #60757b;
  --line: #d9e8ea;
  --bg: #f3fbfc;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(18, 63, 74, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(219, 232, 234, 0.9);
  background: rgba(246, 250, 251, 0.92);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: auto;
  height: 57px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--teal);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
  scroll-margin-top: 90px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.1vw, 2.9rem);
  line-height: 1.08;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy,
.section-heading p,
.contact-copy p,
.split p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(24, 183, 176, 0.22);
}

.button.secondary {
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
}

.hero-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-station {
  position: relative;
  width: min(82%, 430px);
  height: 450px;
}

.station-sign {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 190px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--text);
  text-align: center;
  font-weight: 900;
}

.station-badge {
  position: absolute;
  top: 58px;
  right: 26px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text);
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 900;
}

.station-body {
  position: absolute;
  right: 36px;
  bottom: 52px;
  left: 36px;
  height: 344px;
  border: 3px solid var(--line);
  border-top: 22px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.station-panel {
  position: absolute;
  top: 34px;
  left: 24px;
  display: grid;
  gap: 8px;
  width: 82px;
  padding: 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.station-panel::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin-top: 4px;
  border-radius: 50%;
  border: 6px solid var(--teal);
  background: var(--white);
}

.station-panel span {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: var(--teal);
}

.station-panel span:nth-child(2) {
  width: 68%;
  background: var(--blue);
}

.station-panel span:nth-child(3) {
  width: 36%;
  background: var(--yellow);
}

.station-tub {
  position: absolute;
  right: 24px;
  bottom: 42px;
  left: 112px;
  height: 154px;
  border: 3px solid var(--teal);
  border-top-width: 14px;
  border-radius: 8px;
  background: var(--bg);
}

.station-hose {
  position: absolute;
  top: 76px;
  right: 54px;
  width: 82px;
  height: 126px;
  border-right: 8px solid var(--teal);
  border-bottom: 8px solid var(--teal);
  border-radius: 0 0 42px 0;
}

.shower-head {
  position: absolute;
  top: 186px;
  right: 114px;
  width: 42px;
  height: 22px;
  border-radius: 8px;
  background: var(--teal);
}

.shower-head span {
  position: absolute;
  top: 28px;
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal);
}

.shower-head span:nth-child(1) {
  left: 6px;
}

.shower-head span:nth-child(2) {
  left: 18px;
}

.shower-head span:nth-child(3) {
  right: 6px;
}

.payment-slot {
  position: absolute;
  top: 150px;
  left: 44px;
  width: 54px;
  height: 44px;
  border-radius: 8px;
  border: 3px solid var(--teal);
  background: var(--white);
}

.payment-slot::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 10px;
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: var(--text);
}

.payment-slot::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
}

.station-base {
  position: absolute;
  right: 14px;
  bottom: 18px;
  left: 14px;
  height: 34px;
  border-radius: 8px;
  background: var(--text);
}

.paw {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 42px;
  height: 34px;
  border-radius: 50% 50% 45% 45%;
  background: var(--blue);
}

.paw span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue);
}

.paw span:nth-child(1) {
  left: -2px;
  top: -16px;
}

.paw span:nth-child(2) {
  left: 14px;
  top: -22px;
}

.paw span:nth-child(3) {
  right: -2px;
  top: -16px;
}

.paw span:nth-child(4) {
  right: 4px;
  top: -4px;
  background: var(--teal);
}

.dog-shape {
  position: absolute;
  left: 26px;
  bottom: 28px;
  width: 92px;
  height: 48px;
  border-radius: 28px 34px 20px 20px;
  background: var(--text);
}

.dog-head {
  position: absolute;
  right: -20px;
  top: -12px;
  width: 34px;
  height: 32px;
  border-radius: 50% 50% 42% 42%;
  background: var(--text);
}

.dog-ear {
  position: absolute;
  right: -4px;
  top: -19px;
  width: 14px;
  height: 22px;
  border-radius: 12px 12px 4px 12px;
  background: var(--teal);
}

.dog-tail {
  position: absolute;
  left: -18px;
  top: 2px;
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: var(--text);
  transform: rotate(-28deg);
}

.dog-leg {
  position: absolute;
  bottom: -16px;
  width: 10px;
  height: 22px;
  border-radius: 999px;
  background: var(--text);
}

.dog-leg.one {
  left: 22px;
}

.dog-leg.two {
  right: 18px;
}

.drop {
  position: absolute;
  width: 15px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  transform: rotate(-45deg);
}

.drop-one {
  top: 82px;
  right: 32px;
}

.drop-two {
  top: 126px;
  right: 74px;
  width: 11px;
  height: 17px;
}

.drop-three {
  top: 164px;
  left: 34px;
  width: 12px;
  height: 18px;
}

.wash-unit {
  position: relative;
  width: min(72%, 360px);
  height: 420px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.unit-top {
  height: 58px;
  border-radius: 8px 8px 0 0;
  background: var(--blue);
}

.unit-screen {
  position: absolute;
  top: 92px;
  left: 28px;
  width: 104px;
  height: 76px;
  border-radius: 8px;
  background: var(--text);
}

.unit-window {
  position: absolute;
  top: 188px;
  left: 28px;
  right: 28px;
  height: 138px;
  border-radius: 8px;
  background: var(--green);
}

.unit-base {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  height: 34px;
  border-radius: 8px;
  background: #e5eef0;
}

.visual-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text);
  border: 1px solid var(--yellow);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(23, 50, 77, 0.1);
  font-weight: 800;
}

.card-a {
  left: 26px;
  top: 70px;
}

.card-b {
  right: 26px;
  bottom: 72px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: space-between;
  column-gap: clamp(18px, 2.5vw, 36px);
}

#prodotti .grid.three {
  max-width: 760px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  column-gap: clamp(32px, 5vw, 72px);
}

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

.product-card,
.context-card,
.formula-card,
.value-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
}

.product-card {
  padding: 18px;
}

.product-card p,
.context-card p,
.formula-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  height: 190px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.product-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.image-placeholder.pro {
  background: var(--bg);
}

.image-placeholder.outdoor {
  background: var(--bg);
}

.image-placeholder.custom {
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: none;
}

.machine,
.side-module,
.canopy,
.ground-line,
.premium-frame,
.custom-module,
.custom-badge,
.mini-paw,
.water-line {
  position: absolute;
  display: block;
}

.machine {
  bottom: 24px;
  width: 78px;
  height: 112px;
  border-radius: 8px;
  background: var(--white);
  border: 3px solid var(--blue);
}

.machine::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 28px;
  height: 18px;
  border-radius: 6px;
  background: var(--blue);
}

.machine::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 18px;
  left: 12px;
  height: 24px;
  border-radius: 8px;
  border: 3px solid var(--teal);
}

.machine.small {
  left: 50%;
  width: 62px;
  height: 92px;
  transform: translateX(-50%);
}

.mini-paw {
  right: 38px;
  top: 34px;
  width: 18px;
  height: 15px;
  border-radius: 50%;
  background: var(--teal);
}

.mini-paw::before,
.mini-paw::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.mini-paw::before {
  left: -2px;
}

.mini-paw::after {
  right: -2px;
}

.machine.tall {
  left: 42px;
  width: 88px;
  height: 136px;
}

.side-module {
  right: 36px;
  bottom: 24px;
  width: 66px;
  height: 104px;
  border-radius: 8px;
  background: var(--blue);
}

.side-module::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 13px;
  width: 40px;
  height: 14px;
  border-radius: 999px;
  background: var(--white);
}

.water-line {
  right: 94px;
  bottom: 102px;
  width: 58px;
  height: 50px;
  border-top: 6px solid var(--teal);
  border-right: 6px solid var(--teal);
  border-radius: 0 18px 0 0;
}

.canopy {
  top: 28px;
  left: 34px;
  right: 34px;
  height: 24px;
  border-radius: 8px 8px 4px 4px;
  background: var(--blue);
}

.canopy::before,
.canopy::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 8px;
  height: 88px;
  background: var(--blue);
}

.canopy::before {
  left: 18px;
}

.canopy::after {
  right: 18px;
}

.outdoor-unit {
  right: 58px;
  bottom: 24px;
  height: 104px;
}

.ground-line {
  right: 30px;
  bottom: 20px;
  left: 30px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
}

.premium-frame {
  inset: 26px 30px;
  border-radius: 8px;
  border: 3px solid var(--blue);
}

.custom-module {
  width: 54px;
  height: 72px;
  border-radius: 8px;
  background: var(--white);
  border: 3px solid var(--teal);
}

.custom-module.one {
  left: 50px;
  bottom: 44px;
}

.custom-module.two {
  right: 50px;
  bottom: 44px;
  border-color: var(--blue);
}

.custom-badge {
  top: 38px;
  right: 46px;
  width: 34px;
  height: 18px;
  border-radius: 99px;
  background: var(--yellow);
}

.product-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.compact .product-label,
.outdoor .product-label {
  background: var(--text);
}

.soft {
  background: var(--white);
}

.context-card,
.formula-card,
.value-card {
  padding: 26px;
}

.context-card {
  padding: 34px;
  border-top: 5px solid var(--teal);
}

.context-card strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--teal);
  font-size: 1.04rem;
  line-height: 1.35;
}

.context-illustration {
  display: block;
  width: 100%;
  height: 134px;
  margin-bottom: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.formula-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
}

.formula-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.formula-card p {
  margin-top: 8px;
  font-size: 1.04rem;
}

.formula-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--bg);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.formula-card.accent {
  color: var(--white);
  background: var(--text);
}

.formula-card.accent h3,
.formula-card.accent p,
.formula-card.accent .formula-kicker {
  color: var(--white);
}

.formula-card.accent .formula-kicker {
  background: var(--coral);
}

.formula-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 850;
}

.formula-card.accent .formula-link {
  color: var(--white);
  background: var(--coral);
}

.installed-locations {
  background: var(--bg);
}

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

.location-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
}

.location-image {
  position: relative;
  display: block;
  width: 100%;
  height: 190px;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  object-fit: cover;
}

.location-image::before,
.location-image::after {
  content: "";
  position: absolute;
  display: block;
}

.airport-location::before {
  right: 34px;
  bottom: 54px;
  left: 34px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.airport-location::after {
  left: 50%;
  bottom: 62px;
  width: 96px;
  height: 32px;
  border-radius: 999px 999px 12px 12px;
  background: var(--blue);
  box-shadow: -48px 8px 0 -10px var(--teal), 48px 8px 0 -10px var(--teal), 0 -42px 0 -13px var(--yellow);
  transform: translateX(-50%);
}

.camping-location::before {
  left: 42px;
  bottom: 34px;
  width: 88px;
  height: 74px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--blue);
}

.camping-location::after {
  right: 38px;
  bottom: 34px;
  width: 74px;
  height: 48px;
  border-radius: 8px;
  background: var(--teal);
  box-shadow: 18px -66px 0 -24px var(--yellow);
}

.club-location::before {
  left: 34px;
  bottom: 34px;
  width: 92px;
  height: 72px;
  border-radius: 8px;
  background: var(--blue);
}

.club-location::after {
  right: 42px;
  bottom: 34px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 12px solid var(--teal);
  box-shadow: -92px -52px 0 -30px var(--yellow);
}

.hospitality-location::before {
  left: 42px;
  bottom: 34px;
  width: 56px;
  height: 96px;
  border-radius: 8px 8px 0 0;
  background: var(--blue);
  box-shadow: 70px 22px 0 -4px var(--teal);
}

.hospitality-location::after {
  right: 34px;
  bottom: 34px;
  width: 66px;
  height: 14px;
  border-radius: 999px;
  background: var(--yellow);
}

.premium-location::before {
  left: 46px;
  bottom: 34px;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  border: 8px solid var(--teal);
  background: var(--white);
}

.premium-location::after {
  right: 44px;
  bottom: 42px;
  width: 76px;
  height: 48px;
  border-radius: 0 0 26px 26px;
  background: var(--blue);
  box-shadow: 20px -70px 0 -30px var(--yellow);
}

.next-location::before {
  left: 50%;
  top: 44px;
  width: 58px;
  height: 58px;
  border: 3px dashed var(--teal);
  border-radius: 50%;
  transform: translateX(-50%);
}

.next-location::after {
  left: 50%;
  bottom: 42px;
  width: 92px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 -18px 0 -8px var(--yellow);
  transform: translateX(-50%);
}

.carwash-location::before {
  right: 34px;
  bottom: 38px;
  left: 34px;
  height: 54px;
  border-radius: 8px;
  background: var(--blue);
}

.carwash-location::after {
  left: 54px;
  bottom: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 116px 0 0 var(--teal), 58px -78px 0 -8px var(--yellow);
}

.resort-location::before {
  left: 42px;
  bottom: 34px;
  width: 76px;
  height: 84px;
  border-radius: 8px;
  background: var(--blue);
}

.resort-location::after {
  right: 42px;
  bottom: 34px;
  width: 88px;
  height: 52px;
  border-radius: 8px;
  background: var(--teal);
  box-shadow: 12px -64px 0 -22px var(--yellow);
}

.city-location::before {
  left: 44px;
  bottom: 34px;
  width: 48px;
  height: 92px;
  border-radius: 8px 8px 0 0;
  background: var(--blue);
  box-shadow: 58px 24px 0 -4px var(--teal);
}

.city-location::after {
  right: 42px;
  bottom: 34px;
  width: 74px;
  height: 12px;
  border-radius: 999px;
  background: var(--yellow);
}

.marina-location::before {
  right: 32px;
  bottom: 42px;
  left: 32px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
}

.marina-location::after {
  left: 56px;
  bottom: 54px;
  width: 94px;
  height: 42px;
  border-radius: 0 0 28px 28px;
  background: var(--blue);
  box-shadow: 44px -72px 0 -36px var(--yellow);
}

.location-body {
  padding: 22px;
}

.location-type {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-body h3 {
  margin-bottom: 6px;
}

.location-body span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-weight: 850;
}

.location-body p:last-child {
  margin: 0;
  color: var(--muted);
}

.split {
  display: block;
  background: var(--bg);
}

.split > div:first-child {
  max-width: 900px;
  margin-bottom: 42px;
}

.split h2 {
  color: var(--text);
}

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

.strength-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 18px;
  align-items: start;
}

.strength-list::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: var(--line);
}

.strength-list article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 14px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  background: transparent;
}

.strength-list h3 {
  grid-column: auto;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.14rem;
}

.strength-list p {
  grid-column: auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--text);
  background: var(--white);
  font-size: 1.15rem;
  font-weight: 950;
}

.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 2px solid var(--teal);
}

.step-icon::before,
.step-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.step-icon.survey::before {
  left: 50%;
  bottom: 7px;
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  transform: translateX(-50%);
}

.step-icon.survey::after {
  top: 5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  transform: translateX(-50%) rotate(-45deg);
}

.step-icon.design::before {
  top: 8px;
  left: 50%;
  width: 18px;
  height: 12px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  transform: translateX(-50%);
}

.step-icon.design::after {
  left: 50%;
  bottom: 5px;
  width: 15px;
  height: 4px;
  border-radius: 999px;
  background: var(--teal);
  transform: translateX(-50%) rotate(-35deg);
}

.step-icon.production::before {
  content: "⚙";
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  color: var(--blue);
  background: transparent;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.step-icon.production::after {
  display: none;
}

.step-icon.paperwork::before {
  top: 6px;
  left: 50%;
  width: 16px;
  height: 20px;
  border-radius: 3px;
  background: var(--blue);
  transform: translateX(-50%);
}

.step-icon.paperwork::after {
  top: 13px;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--white);
  box-shadow: 0 5px 0 var(--white);
  transform: translateX(-50%);
}

.step-icon.install::before {
  top: 7px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--blue);
  transform: translateX(-50%);
}

.step-icon.install::after {
  left: 50%;
  bottom: 5px;
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
  transform: translateX(-50%);
}

.step-icon.support::before {
  top: 8px;
  left: 50%;
  width: 18px;
  height: 13px;
  border-radius: 10px 10px 5px 5px;
  border: 3px solid var(--blue);
  border-bottom: 0;
  transform: translateX(-50%);
}

.step-icon.support::after {
  left: 50%;
  bottom: 7px;
  width: 13px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  transform: translateX(-50%);
}

.bureaucracy {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  background: var(--bg);
}

.bureaucracy-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.bureaucracy-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.bureaucracy-copy .button {
  justify-self: start;
  margin-top: 12px;
}

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

.bureaucracy-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
}

.bureaucracy-grid h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.bureaucracy-grid p {
  margin: 0;
  color: var(--muted);
}

.bureaucracy-icon {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 20px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: var(--bg);
}

.bureaucracy-icon::before,
.bureaucracy-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.bureaucracy-icon.analysis::before {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid var(--teal);
  border-radius: 50%;
  transform: translate(-58%, -58%);
}

.bureaucracy-icon.analysis::after {
  top: 50%;
  left: 50%;
  width: 16px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
  transform: translate(8px, 8px) rotate(42deg);
}

.bureaucracy-icon.permits::before {
  top: 50%;
  left: 50%;
  width: 22px;
  height: 28px;
  border-radius: 4px;
  background: var(--teal);
  transform: translate(-50%, -50%);
}

.bureaucracy-icon.permits::after {
  top: 50%;
  left: 50%;
  width: 12px;
  height: 3px;
  background: var(--white);
  box-shadow: 0 7px 0 var(--white), 12px 18px 0 2px var(--yellow);
  transform: translate(-50%, -80%);
}

.bureaucracy-icon.admin::before {
  top: 50%;
  left: 50%;
  width: 30px;
  height: 18px;
  border-radius: 9px 9px 5px 5px;
  background: var(--teal);
  transform: translate(-50%, -65%);
}

.bureaucracy-icon.admin::after {
  top: 50%;
  left: 50%;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
  transform: translate(-50%, 12px);
}

.bureaucracy-icon.partner::before {
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 16px 0 0 var(--teal);
  transform: translate(-14px, -16px);
}

.bureaucracy-icon.partner::after {
  top: 50%;
  left: 50%;
  width: 30px;
  height: 16px;
  border-radius: 12px 12px 5px 5px;
  background: var(--teal);
  transform: translate(-50%, 0);
}

.green {
  background: var(--bg);
}

.public-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 78px);
}

.public-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.public-hero-copy .button {
  margin-top: 18px;
}

.public-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.public-visual span {
  position: absolute;
  display: block;
}

.public-building {
  left: 46px;
  bottom: 78px;
  width: 150px;
  height: 178px;
  border-radius: 8px 8px 0 0;
  background: var(--blue);
}

.public-building::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 24px;
  width: 102px;
  height: 34px;
  border-radius: 8px 8px 0 0;
  background: var(--teal);
}

.public-building::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 0;
  width: 34px;
  height: 54px;
  border-radius: 8px 8px 0 0;
  background: var(--white);
  box-shadow: -54px -80px 0 -8px var(--white), 0 -80px 0 -8px var(--white);
}

.public-station {
  right: 58px;
  bottom: 78px;
  width: 104px;
  height: 160px;
  border: 3px solid var(--blue);
  border-top: 18px solid var(--blue);
  border-radius: 8px;
  background: var(--bg);
}

.public-station::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 22px;
  left: 14px;
  height: 44px;
  border: 3px solid var(--teal);
  border-radius: 8px;
}

.public-station::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 16px;
  width: 34px;
  height: 24px;
  border-radius: 6px;
  background: var(--blue);
}

.public-path {
  right: 30px;
  bottom: 54px;
  left: 30px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
}

.public-paw {
  right: 162px;
  top: 94px;
  width: 26px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
}

.public-paw::before,
.public-paw::after {
  content: "";
  position: absolute;
  top: -13px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
}

.public-paw::before {
  left: -3px;
}

.public-paw::after {
  right: -3px;
}

.public-section {
  background: var(--bg);
}

.public-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
}

.public-card p {
  margin: 0;
  color: var(--muted);
}

.public-card-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: var(--bg);
}

.public-card-icon::before,
.public-card-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.public-card-icon.park::before {
  left: 22px;
  bottom: 12px;
  width: 12px;
  height: 26px;
  border-radius: 999px;
  background: var(--teal);
}

.public-card-icon.park::after {
  top: 10px;
  left: 13px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
}

.public-card-icon.street::before {
  left: 13px;
  bottom: 12px;
  width: 13px;
  height: 32px;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
  box-shadow: 17px 8px 0 var(--teal);
}

.public-card-icon.street::after {
  right: 10px;
  bottom: 10px;
  left: 10px;
  height: 6px;
  border-radius: 999px;
  background: var(--yellow);
}

.public-card-icon.parking::before {
  top: 10px;
  left: 14px;
  width: 30px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue);
}

.public-card-icon.parking::after {
  content: "P";
  top: 14px;
  left: 24px;
  color: var(--white);
  font-weight: 900;
}

.public-process {
  background: var(--white);
}

.news-hero {
  background: var(--bg);
}

.news-hero .section-heading {
  margin-bottom: 0;
}

.news-listing {
  background: var(--white);
}

.news-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
}

.news-image {
  position: relative;
  height: 210px;
  background: var(--teal);
}

.news-image.teal {
  background: var(--teal);
}

.news-image.yellow {
  background: var(--bg);
  border-bottom: 8px solid var(--yellow);
}

.news-image span {
  position: absolute;
  right: 34px;
  bottom: 30px;
  width: 96px;
  height: 120px;
  border-radius: 8px;
  background: var(--white);
}

.news-image span::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  width: 42px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
}

.news-image.teal span::before,
.news-image.yellow span::before {
  background: var(--teal);
}

.news-body {
  padding: 24px;
}

.news-meta {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-body h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.news-body p:not(.news-meta) {
  margin: 0 0 20px;
  color: var(--muted);
}

.news-body a {
  color: var(--teal);
  font-weight: 850;
}

.install-guide-hero {
  background: var(--bg);
}

.install-guide-hero .section-heading {
  margin-bottom: 0;
}

.install-guide-content {
  background: var(--white);
}

.install-guide-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.install-guide-note {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.install-guide-note p {
  color: var(--muted);
}

.install-guide-note .button {
  margin-top: 10px;
}

.install-guide-steps {
  display: grid;
  gap: 16px;
}

.install-guide-steps article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
}

.install-guide-steps span {
  grid-row: 1 / span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background: var(--bg);
  font-weight: 950;
}

.install-guide-steps h3 {
  margin-bottom: 8px;
}

.install-guide-steps p {
  margin: 0;
  color: var(--muted);
}

.value-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: var(--bg);
}

.value-icon::before,
.value-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.value-icon.water::before {
  width: 24px;
  height: 34px;
  border-radius: 55% 55% 55% 0;
  background: var(--blue);
  transform: rotate(-45deg);
}

.value-icon.water::after {
  top: 17px;
  left: 27px;
  width: 7px;
  height: 12px;
  border-radius: 999px;
  background: var(--white);
  transform: rotate(28deg);
}

.value-icon.clean::before {
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  background: var(--blue);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  transform: translate(-50%, -50%);
}

.value-icon.clean::after {
  top: 12px;
  right: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: -22px 24px 0 -2px var(--teal);
}

.value-icon.proximity::before {
  top: 10px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  transform: translateX(-50%) rotate(-45deg);
}

.value-icon.proximity::after {
  top: 12px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 21px 0 4px var(--teal);
  transform: translateX(-50%);
}

.value-icon.responsible::before {
  top: 13px;
  left: 50%;
  width: 26px;
  height: 21px;
  border-radius: 50% 50% 45% 45%;
  background: var(--blue);
  transform: translateX(-50%);
}

.value-icon.responsible::after {
  top: 10px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: -12px 5px 0 var(--teal), 12px 5px 0 var(--teal), 0 24px 0 -1px var(--yellow);
  transform: translateX(-50%);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 20px 24px;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cddde0;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(220px, 0.8fr) auto;
  align-items: start;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #cde1e4;
  background: var(--text);
}

.site-footer .logo,
.site-footer p,
.site-footer a {
  color: var(--white);
}

.site-footer .logo img {
  height: 68px;
}

.footer-brand p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #cde1e4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
  font-weight: 750;
}

.footer-cta {
  color: var(--teal) !important;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.instagram-icon {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 2px solid var(--white);
  border-radius: 10px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
}

.facebook-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 10px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1080px) {
  .grid.four,
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero,
  .public-hero,
  .install-guide-layout,
  .bureaucracy,
  .contact {
    grid-template-columns: 1fr;
  }

  .install-guide-note {
    position: static;
  }

  .strength-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .strength-list::before {
    display: none;
  }

  .hero {
    min-height: auto;
  }
}

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

  .logo img {
    height: 49px;
  }

  .site-footer .logo img {
    height: 56px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .section {
    padding: 64px 20px;
    scroll-margin-top: 76px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-cover img {
    min-height: 400px;
  }

  .hero-station {
    width: min(92%, 340px);
    height: 360px;
  }

  .station-body {
    right: 18px;
    bottom: 44px;
    left: 18px;
    height: 280px;
  }

  .station-tub {
    height: 110px;
  }

  .grid.four,
  .grid.three,
  .grid.two,
  .strength-list,
  .bureaucracy-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  #prodotti .grid.three {
    max-width: 100%;
    grid-template-columns: 1fr;
    justify-content: stretch;
    column-gap: 0;
  }

  .strength-list {
    gap: 18px;
  }

  .strength-list::before {
    display: block;
    top: 26px;
    bottom: 24px;
    left: 25px;
    width: 2px;
    height: auto;
    right: auto;
  }

  .strength-list article {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 18px;
  }

  .strength-list h3,
  .strength-list p {
    grid-column: 2;
  }

  .step-meta {
    grid-row: 1 / span 2;
    display: grid;
    justify-items: center;
  }

  .install-guide-steps article {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .install-guide-steps span {
    grid-row: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .visual-card {
    display: none;
  }
}
