/* init pmg_global */
@charset "UTF-8";
/* ================================================================
   ELIXYR — Design System
   Sgomberi · Smaltimento rifiuti · Pulizie
   Palette: crema, verde lime, verde scuro, azzurro
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@1&display=swap');
:root {
  /* Brand colors from Proposta 1 */
  --lime:        #b6ce3d;
  --lime-light:  #e6eabd;
  --green:       #216353;
  --green-dark:  #173f35;
  --sky:         #5ca5c6;
  --sky-light:   #dceef5;
  --cream:       #f3f4e9;
  --cream-dark:  #e6eabd;
  --near-black:  #050606;
  /* Neutrals derived from cream/green */
  --ink:         #1c2420;
  --ink-80:      #354942;
  --ink-60:      #5d716a;
  --ink-40:      #93a39c;
  --ink-20:      #ccd6d0;
  --ink-10:      #e3e9e4;
  --ink-05:      #f3f4e9;
  --white:       #ffffff;
  /* Radii */
  --r-xs: 5px;
  --r-sm: 5px;
  --r-md: 5px;
  --r-lg: 5px;
  --r-xl: 5px;
  --r-2xl: 5px;
  --r-pill: 5px;
  /* Shadows */
  --s-xs: 0 1px 3px rgba(5,6,6,.06), 0 1px 2px rgba(5,6,6,.04);
  --s-sm: 0 2px 8px rgba(5,6,6,.07), 0 1px 3px rgba(5,6,6,.05);
  --s-md: 0 4px 20px rgba(5,6,6,.09), 0 2px 8px rgba(5,6,6,.06);
  --s-lg: 0 12px 40px rgba(5,6,6,.12), 0 4px 16px rgba(5,6,6,.08);
  --s-xl: 0 24px 64px rgba(5,6,6,.15), 0 8px 24px rgba(5,6,6,.10);
  /* Type */
  --font-sans:  'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --section-y: 96px;
}
/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input, select, textarea {
  font-family: inherit;
}
/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
h5 {
  font-size: 0.95rem;
  font-weight: 600;
}
p {
  color: var(--ink-60);
  line-height: 1.75;
}
.serif {
  font-family: var(--font-serif);
  font-style: italic;
}
.overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.overline::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}
/* ---- Layout ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--tight {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}
section {
  padding: var(--section-y) 0;
}
/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(33, 99, 83, 0.3);
  transform: translateY(-1px);
}
.btn-lime {
  background: var(--lime);
  color: var(--green-dark);
  border-color: var(--lime);
}
.btn-lime:hover {
  background: #a3bd2f;
  border-color: #a3bd2f;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(182, 206, 61, 0.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink-20);
}
.btn-secondary:hover {
  border-color: var(--green);
  background: var(--ink-05);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-white:hover {
  background: var(--cream);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn--lg {
  padding: 16px 32px;
  font-size: 0.98rem;
  border-radius: var(--r-md);
}
.btn--sm {
  padding: 9px 18px;
  font-size: 0.82rem;
  border-radius: var(--r-sm);
}
.btn--xl {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: var(--r-lg);
}
.btn-full {
  width: 100%;
}
/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(243, 244, 233, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-10);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 36px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  height: 30px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-60);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--green);
  background: rgba(255, 255, 255, 0.6);
}
.nav__link.active {
  color: var(--green);
  font-weight: 700;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__mobile-btn {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__mobile-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--green-dark);
  border-radius: 2px;
}
.nav__drawer {
  display: none;
  flex-direction: column;
  padding: 16px 28px 20px;
  border-top: 1px solid var(--ink-10);
  background: var(--cream);
  gap: 4px;
}
.nav__drawer a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-60);
  transition: all 0.12s;
}
.nav__drawer a:hover {
  color: var(--green);
  background: var(--white);
}
.nav__drawer hr {
  border: none;
  border-top: 1px solid var(--ink-10);
  margin: 8px 0;
}
.nav__drawer.open {
  display: flex;
}
/* ---- SECTION HEADER ---- */
.sh {
  margin-bottom: 60px;
}
.sh--center {
  text-align: center;
}
.sh--center .sh__body {
  max-width: 540px;
  margin: 14px auto 0;
}
.sh__label {
  margin-bottom: 14px;
}
.sh__title {
  letter-spacing: -0.025em;
}
.sh__body {
  font-size: 1.05rem;
  color: var(--ink-60);
  margin-top: 14px;
  line-height: 1.75;
}
/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: var(--s-md);
  border-color: var(--ink-20);
  transform: translateY(-2px);
}
/* ---- FEATURE ICON ---- */
.ficon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.ficon--lime {
  background: var(--lime-light);
}
.ficon--sky {
  background: var(--sky-light);
}
.ficon--green {
  background: var(--green);
  color: var(--white);
}
.ficon--subtle {
  background: var(--ink-05);
}
/* ---- CHECK LIST ---- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--ink-60);
  line-height: 1.55;
}
.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--lime-light);
  border-radius: var(--r-xs);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23216353' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
/* ---- BADGE / TAG ---- */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.03em;
}
.badge--lime {
  background: var(--lime-light);
  color: var(--green-dark);
}
.badge--sky {
  background: var(--sky-light);
  color: #2f6f8c;
}
.badge--green {
  background: var(--lime-light);
  color: var(--green);
}
.badge--ink {
  background: var(--ink-05);
  color: var(--ink-60);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--lime-light);
  border: 1px solid #d6e29a;
  color: var(--green);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
/* ---- DIVIDER ---- */
.divider {
  border: none;
  border-top: 1px solid var(--ink-10);
}
/* ---- GRID ---- */
.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* ---- AVATAR ---- */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--lime);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
/* ---- FOOTER ---- */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__logo {
  height: 30px;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  max-width: 280px;
}
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.12s;
  line-height: 1.6;
}
.footer__col a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer__bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.12s;
}
.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.15s;
}
.footer__social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}
/* ---- ANNOUNCE BAR ---- */
.announce-bar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.announce-bar a {
  color: var(--lime);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* ---- UTILITIES ---- */
.text-center {
  text-align: center;
}
.text-white {
  color: white !important;
}
.bg-cream {
  background: var(--cream);
}
.bg-sand {
  background: var(--ink-05);
}
.bg-green {
  background: var(--green);
}
.bg-green-dark {
  background: var(--green-dark);
}
.mt-2 {
  margin-top: 8px;
}
.mt-3 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-5 {
  margin-top: 20px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.mt-10 {
  margin-top: 40px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  :root {
    --section-y: 64px;
  }
  .g2, .g3 {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .nav__links {
    display: none;
  }
  .nav__mobile-btn {
    display: flex;
  }
  .nav__actions .btn--sm:not(.btn-primary) {
    display: none;
  }
}
@media (max-width: 560px) {
  :root {
    --section-y: 48px;
  }
  .container, .container--wide, .container--tight {
    padding: 0 18px;
  }
  .g4 {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* end pmg_global */
/* init pmg_footer */

/* end pmg_footer */
/* init pmg_header */

/* end pmg_header */
/* init pmg_anteprimaservizi */

/* end pmg_anteprimaservizi */
/* init pmg_contatti */

/* end pmg_contatti */
/* init pmg_cosafacciamostriscia */

/* end pmg_cosafacciamostriscia */
/* init pmg_cta */

/* end pmg_cta */
/* init pmg_f.a.c */

/* end pmg_f.a.c */
/* init pmg_hero */

/* end pmg_hero */
/* init pmg_ilnostroimpegno */

/* end pmg_ilnostroimpegno */
/* init pmg_inostrivalori */

/* end pmg_inostrivalori */
/* init pmg_minihero */

/* end pmg_minihero */
/* init pmg_numerichisiamo */

/* end pmg_numerichisiamo */
/* init pmg_perchenoi */

/* end pmg_perchenoi */
/* init pmg_process */

/* end pmg_process */
/* init pmg_testosemplice */

/* end pmg_testosemplice */