@charset "UTF-8";
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  text-rendering: optimizeLegibility;
  font-smooth: always;
}

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@font-face {
  font-family: "Neulis";
  src: url("font/Neulis-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Neulis";
  src: url("font/Neulis-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Neulis";
  src: url("font/Neulis-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Neulis";
  src: url("font/Neulis-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "NeulisAlt";
  src: url("font/NeulisAlt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NeulisAlt";
  src: url("font/NeulisAlt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "NeulisAlt";
  src: url("font/NeulisAlt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "NeulisAlt";
  src: url("font/NeulisAlt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  font-family: "NeulisAlt", sans-serif;
}

body {
  min-height: 100vh;
  width: 100%;
  scroll-behavior: smooth;
}

.bg-animated-primary {
  background-repeat: no-repeat;
  background-position: center;
  --bg-gradient-stop-1: #250D35;
  --bg-gradient-stop-2: #1f8a78;
  --bg-gradient-stop-3: #500B4B;
  background-color: var(--bg-gradient-stop-1);
  background-image: radial-gradient(ellipse at 90% 30%, var(--bg-gradient-stop-1) 20%, transparent 50%), radial-gradient(ellipse at 70% 0%, var(--bg-gradient-stop-2) 0%, transparent 50%), radial-gradient(ellipse at 20% 10%, var(--bg-gradient-stop-3) 10%, transparent 70%), radial-gradient(ellipse at 50% 100%, var(--bg-gradient-stop-2) 0%, transparent 50%);
  background-size: 200% 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-animated-primary[data-bg-animate=on] {
    will-change: background-position;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .bg-animated-primary[data-bg-animate=on] {
    background-size: 400% 200%;
    background-position: 0 0;
    animation: bg-gradient-anim-1 23s linear infinite;
  }
}

@keyframes bg-gradient-anim-1 {
  0%, to {
    background-position: 0 0;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 100% 0;
  }
  75% {
    background-position: 0 100%;
  }
}
.dn {
  display: none;
}

.btn {
  font-size: 1.125em;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "NeulisAlt", sans-serif;
  padding: 0.8em 1.4em;
  border-radius: 0.825em;
  transition: all 0.2s;
  border-width: 2px;
  border-style: solid;
  text-decoration: none;
}
.btn.small {
  padding: 0.6em 1em;
  font-size: 1em;
}
.btn.success {
  background: #18CCA1;
  border-color: #18CCA1;
  color: #000000;
}
.btn.success:hover {
  background: #98F1DB;
  border-color: #98F1DB;
}
.btn.link {
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.btn.link.light {
  color: #FFFFFF;
}
.btn.link.light:hover {
  color: #FF01A4;
}
.btn.link.dark {
  color: #59207E;
}
.btn.link.dark:hover {
  color: #FF01A4;
}
.btn.outline.light {
  border-color: #CCBAD7;
  color: #EEE9F2;
}
.btn.outline.light:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #FF01A4;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin: 3em 0;
}
.checklist div {
  display: flex;
  gap: 1em;
  align-items: center;
}
.checklist div img {
  width: 2em;
  aspect-ratio: 1;
}
.checklist div p {
  font-family: "NeulisAlt", sans-serif;
  color: #EEE9F2;
  font-size: 1.2em;
  font-weight: 400;
}
.checklist div p span {
  font-weight: 600;
  color: #1EE0B1;
}
.checklist.horizontal {
  flex-direction: row;
  align-items: start;
}
.checklist.horizontal div {
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.checklist.horizontal div p {
  color: #59207E;
  text-align: center;
}

nav {
  position: fixed;
  width: 90%;
  left: 0;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 1.25em 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
nav.scrolled {
  background: rgba(37, 13, 53, 0.65);
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
}
nav .sx {
  display: flex;
  gap: 3em;
  align-items: center;
}
nav .sx div {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
nav .sx div a {
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #FFFFFF;
  font-family: "NeulisAlt", sans-serif;
  transition: all 0.2s;
}
nav .sx div a:hover {
  color: #1EE0B1;
}
nav .dx {
  display: flex;
  align-items: center;
  gap: 1em;
}

#hero {
  width: 55%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40% 0 5%;
  position: relative;
}
#hero h1 {
  font-family: "NeulisAlt", sans-serif;
  color: #FFFFFF;
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 0.25em;
}
#hero h1 span {
  color: #FF01A4;
  font-family: "Neulis", sans-serif;
}
#hero h2 {
  font-family: "NeulisAlt", sans-serif;
  color: #FFFFFF;
  font-size: 2em;
  font-weight: 500;
}
#hero .ctas {
  display: flex;
  gap: 1em;
}
#hero h1, #hero h2, #hero .checklist, #hero .ctas {
  position: relative;
  z-index: 3;
}
#hero h1, #hero h2, #hero p {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
#hero .mockup {
  position: absolute;
  pointer-events: none;
  height: 100%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
#hero #nebulosa {
  position: absolute;
  z-index: 1;
  width: 130%;
  left: 50%;
  top: 50%;
  opacity: 0.4;
  transform: translate(-50%, -50%);
}

.title {
  font-size: 2.25em;
  font-family: "NeulisAlt", sans-serif;
  font-weight: 600;
  margin-bottom: 1em;
}
.title.dark {
  color: #250D35;
}
.title.light {
  color: #FFFFFF;
}
.title span {
  color: #FF01A4;
  font-family: "Neulis", sans-serif;
}

#vantaggi {
  width: 90%;
  padding: 6em 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5em;
}
#vantaggi h3 {
  text-align: center;
}
#vantaggi > div {
  display: flex;
  gap: 1.5em;
}
#vantaggi > div > div {
  padding: 1em;
  border-radius: 1em;
  box-shadow: 0 0.25em 1em rgba(63, 23, 89, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75em;
  text-align: center;
  flex: 1;
}
#vantaggi > div > div .number {
  font-size: 2.125em;
  color: #1EE0B1;
  font-weight: 700;
  font-family: "NeulisAlt", sans-serif;
}
#vantaggi > div > div .numb-title {
  font-size: 1.5em;
  color: #59207E;
  font-weight: 500;
  font-family: "NeulisAlt", sans-serif;
}
#vantaggi > div > div .numb-desc {
  font-size: 1.125em;
  color: #565359;
  font-weight: 400;
  font-family: "NeulisAlt", sans-serif;
}

#funzionalita {
  width: 80%;
  padding: 6em 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8em;
}
#funzionalita h3 {
  text-align: center;
}
#funzionalita .feature {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6em;
}
#funzionalita .feature > div {
  max-width: 560px;
}
#funzionalita .feature img {
  pointer-events: none;
}
#funzionalita .feature > img {
  border-radius: 20px;
  border: 8px solid rgba(238, 233, 242, 0.3);
  width: 260px;
}
#funzionalita .feature h3 {
  font-family: "NeulisAlt", sans-serif;
  font-size: 1.75em;
  color: #FFFFFF;
  font-weight: 600;
  text-align: left !important;
  margin: 1.5em 0;
}

#dashboard {
  padding: 5em 10%;
  width: 80%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#dashboard h3 {
  text-align: center;
  margin-bottom: 0 !important;
}
#dashboard h3 span {
  font-family: "NeulisAlt", sans-serif !important;
}
#dashboard img {
  pointer-events: none;
}
#dashboard .ctas {
  display: flex;
  gap: 2em;
  width: 100%;
  justify-content: center;
  margin-top: 2em;
}

#dicono-di-noi {
  padding: 5em 0;
}
#dicono-di-noi .ref-title {
  font-family: "NeulisAlt", sans-serif;
  font-size: 3em;
  font-weight: 700;
  color: #FF01A4;
  text-align: center;
}
#dicono-di-noi .container > .title {
  text-align: center;
  margin-bottom: 0;
}
#dicono-di-noi .owl-dots {
  display: block;
}
#dicono-di-noi .owl-dot span {
  background: #CCBAD7 !important;
}
#dicono-di-noi .owl-dot.active span {
  background: #59207E !important;
}
#dicono-di-noi .owl-stage {
  padding: 20px 0;
  margin-top: 2em;
}
#dicono-di-noi .testimonials_card {
  border-radius: 1em;
  box-shadow: 0px 8px 16px rgba(37, 13, 53, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  background: #FFFFFF;
  opacity: 0.6;
  filter: blur(5px);
}
#dicono-di-noi .testimonials_card img {
  border-radius: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 1em;
}
#dicono-di-noi .testimonials_card .title-card {
  font-size: 1.5em;
  color: #59207E;
  font-weight: 500;
  margin-bottom: 1em;
}
#dicono-di-noi .testimonials_card .title-card.center {
  text-align: center;
}
#dicono-di-noi .testimonials_card .description {
  font-size: 1em;
  color: #311245;
  font-weight: 400;
  margin-bottom: 2em;
  text-align: center;
}
#dicono-di-noi .testimonials_card .name {
  font-size: 1em;
  color: #250D35;
  font-weight: 700;
}
#dicono-di-noi .testimonials_card .role {
  font-size: 1em;
  color: #18CCA1;
  font-weight: 400;
}
#dicono-di-noi .owl-item.center .testimonials_card {
  opacity: 1;
  filter: blur(0);
}

#who {
  width: 80%;
  padding: 0 10% 5em;
}
#who > p {
  font-family: "NeulisAlt", sans-serif;
  font-weight: 400;
  color: #250D35;
  font-size: 1.125em !important;
  margin-bottom: 1.25em;
}
#who .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  width: 100%;
  /* Applica lo scaling SOLO quando almeno una .card è in hover */
}
#who .cards .card {
  border: 8px solid #EEE9F2;
  border-radius: 1em;
  flex: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 1.5em;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
#who .cards .card:hover {
  border-color: #1EE0B1;
  box-shadow: 0px 8px 16px rgba(37, 13, 53, 0.2);
  cursor: pointer;
  transform: scale(1.05);
}
#who .cards .card.ristorante {
  background: url("../img/ristorante.png") center/cover;
}
#who .cards .card.hotel {
  background: url("../img/hotel.png") center/cover;
}
#who .cards .card.birra {
  background: url("../img/birra.png") center/cover;
}
#who .cards .card.pasticceria {
  background: url("../img/pasticceria.png") center/cover;
}
#who .cards .card.pub {
  background: url("../img/pub.png") center/cover;
}
#who .cards .card.bistrot {
  background: url("../img/bistrot.png") center/cover;
}
#who .cards .card.bar {
  background: url("../img/bar.png") center/cover;
}
#who .cards .card.pizzerie {
  background: url("../img/pizzeria.png") center/cover;
}
#who .cards .card::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(49, 18, 69, 0) 0%, #311245 100%);
}
#who .cards .card p {
  font-size: 1.5em;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
#who .cards .card:hover ~ .card,
#who .cards .card:hover + .card,
#who .cards .card:not(:hover):has(~ .card:hover),
#who .cards .card:not(:hover):has(+ .card:hover) {
  transform: scale(0.95);
}

#contattaci {
  padding: 6em 10% 3em;
  width: 80%;
}
#contattaci h3 {
  text-align: center;
  margin-bottom: 0 !important;
}
#contattaci iframe {
  min-height: 1021px;
  overflow-y: hidden;
}
#contattaci footer {
  margin-top: 2em;
  padding-top: 4em;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(238, 233, 242, 0.3);
}
#contattaci footer div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1em;
}
#contattaci footer .footer-title {
  font-size: 1em;
  font-weight: 500;
  color: #FF01A4;
  font-family: "NeulisAlt", sans-serif;
}
#contattaci footer .footer-description {
  font-size: 0.8em;
  font-weight: 400;
  color: #FFFFFF;
  font-family: "NeulisAlt", sans-serif;
}
#contattaci footer .footer-link {
  font-size: 0.8em;
  font-weight: 400;
  color: #FFFFFF;
  font-family: "NeulisAlt", sans-serif;
  transition: all 0.2s;
  text-decoration: none;
}
#contattaci footer .footer-link:hover {
  color: #1EE0B1;
}
#contattaci footer .socials {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
#contattaci footer .socials a > svg path {
  transition: all 0.2s;
}
#contattaci footer .socials a:hover > svg path {
  stroke: #1EE0B1;
}

#legal-docs {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#legal-docs .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 25%;
}
#legal-docs .container .title {
  text-align: center;
  margin-bottom: 24px !important;
  color: #59207E;
}
#legal-docs .container a {
  flex: 1;
  border-radius: 16px;
  border: 2px solid #E1DFE2;
  transition: all 0.2s;
  padding: 24px 32px;
  font-family: "NeulisAlt", sans-serif;
  font-size: 1.125em;
  font-weight: 600;
  color: #250D35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  gap: 24px;
}
#legal-docs .container a:hover {
  color: #59207E;
  border-color: #906AA9;
  box-shadow: 0px 8px 24px rgba(89, 32, 126, 0.1);
}

#thankyoupage {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#thankyoupage .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
}
#thankyoupage .container img {
  height: 48px;
  margin-bottom: 32px;
}
#thankyoupage .container .title {
  text-align: center;
  color: #CCBAD7;
  margin-bottom: 16px !important;
}
#thankyoupage .container p {
  font-family: "NeulisAlt", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  font-size: 1.125em !important;
  text-align: center;
}
#thankyoupage .container .socials {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 2em;
  margin: 24px 0;
}
#thankyoupage .container .socials a > svg {
  width: 48px;
  height: 48px;
}
#thankyoupage .container .socials a > svg path {
  transition: all 0.2s;
}
#thankyoupage .container .socials a:hover > svg path {
  stroke: #1EE0B1;
}

#page404 {
  width: calc(100% - 32px);
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  flex-direction: column;
}
#page404 h1 {
  text-align: center;
  margin: 0;
}
#page404 h2 {
  font-size: 1.8em;
  color: #CCBAD7;
  font-family: "NeulisAlt", sans-serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
}
#page404 .logo {
  height: 24px;
}
#page404 .gif {
  width: 40%;
  border-radius: 16px;
  border: 2px solid #B398C4;
}
#page404 .ctas {
  justify-content: center;
}

#legal-text {
  width: 90%;
  padding: 7em 5%;
}
#legal-text div {
  margin-bottom: 3em;
}
#legal-text h1 {
  font-size: 2.25em;
  font-family: "NeulisAlt", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #7A4D98;
}
#legal-text h2 {
  font-size: 2em;
  font-family: "NeulisAlt", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #7A4D98;
}
#legal-text h3 {
  font-size: 1.85em;
  font-family: "NeulisAlt", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #250D35;
}
#legal-text hr {
  margin-bottom: 2em;
}
#legal-text p, #legal-text li {
  font-size: 1em;
  font-family: "NeulisAlt", sans-serif;
  font-weight: 400;
  margin-bottom: 1em;
  color: #423F44;
}
#legal-text p strong, #legal-text li strong {
  color: #000000;
  font-weight: 700;
}
#legal-text p a, #legal-text li a {
  color: #FF01A4;
  transition: all 0.2s;
}
#legal-text p a:hover, #legal-text li a:hover {
  color: #18CCA1;
}
#legal-text ul, #legal-text ol {
  padding-left: 2em;
  margin-bottom: 2em;
}
#legal-text table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  border-radius: 12px;
}
#legal-text table p {
  margin: 0 !important;
}
#legal-text table, #legal-text th, #legal-text td {
  border: 1px solid #CCBAD7;
}
#legal-text th {
  background-color: #CCBAD7;
  font-weight: 600;
  text-align: left;
}
#legal-text th, #legal-text td {
  padding: 12px;
}

#abbonamenti {
  width: 80%;
  padding: 8em 10% 0;
}
#abbonamenti h3 {
  text-align: center;
  margin-bottom: 0.5em !important;
}
#abbonamenti > h2 {
  font-family: "NeulisAlt", sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  color: #7A4D98;
  text-align: center;
}
#abbonamenti .ctas {
  display: flex;
  gap: 2em;
  width: 100%;
  justify-content: center;
  margin-top: 2em;
}
#abbonamenti .plans {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 3em;
}
#abbonamenti .plans .plan {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: relative;
}
#abbonamenti .plans .plan * {
  position: relative;
  z-index: 3;
}
#abbonamenti .plans .plan .btn.outline.dark {
  border-color: #250D35;
  color: #250D35;
  padding: 1em !important;
  text-align: center;
}
#abbonamenti .plans .plan .btn.outline.dark:hover {
  border-color: #E80195;
  color: #E80195;
}
#abbonamenti .plans .plan h2 {
  font-family: "NeulisAlt", sans-serif;
  font-size: 1.25em;
  font-weight: 500;
  text-transform: uppercase;
  color: #59207E;
}
#abbonamenti .plans .plan:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-top-left-radius: 0.8em;
  border-top-right-radius: 0.8em;
  background: #FFFFFF;
}
#abbonamenti .plans .plan.light {
  background: white;
}
#abbonamenti .plans .plan.light:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: 1;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  background: linear-gradient(to bottom, #E6DDEB 0%, #fff 100%);
}
#abbonamenti .plans .plan.primary {
  background: white;
}
#abbonamenti .plans .plan.primary:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: 1;
  border-radius: 1em;
  background: linear-gradient(to bottom, #59207E 0%, #fff 100%);
}
#abbonamenti .plans .plan.primary h2 {
  color: #FF01A4;
}
#abbonamenti .plans .plan .badge {
  color: #FFFFFF;
  font-family: "NeulisAlt", sans-serif;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px 4px 8px;
  border-radius: 100px;
}
#abbonamenti .plans .plan .badge img {
  width: 20px;
}
#abbonamenti .plans .plan .badge-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}
#abbonamenti .plans .plan > p {
  font-family: "NeulisAlt", sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: #250D35;
}
#abbonamenti .plans .plan .checklist {
  margin: 2em 0 4em !important;
}
#abbonamenti .plans .plan .checklist p {
  color: #59207E;
}

.scroll-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: calc(100% - 32px);
  background: white;
  padding: 16px;
  border-top: 1px solid #E1DFE2;
  z-index: 10;
  opacity: 0 !important;
  transition: all 0.2s;
  pointer-events: none !important;
  display: none;
}
.scroll-cta a {
  width: 100%;
  height: 56px !important;
  padding: 0 !important;
  display: flex;
  font-size: 18px !important;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mobile-nav {
  display: none;
}

.mobile-menu {
  display: none;
}

@media screen and (max-width: 480px) {
  .scroll-cta.show {
    display: block;
    opacity: 1 !important;
    pointer-events: all !important;
  }
  #thankyoupage .container {
    width: 95%;
  }
  #legal-docs .container {
    width: calc(100% - 32px);
    padding: 0 16px;
  }
  #abbonamenti {
    width: calc(100% - 32px);
    padding: 5em 16px !important;
  }
  #abbonamenti .plans {
    flex-direction: column;
    padding-bottom: 4em;
  }
  #abbonamenti .plans .plan {
    padding: 16px;
  }
  #abbonamenti .plans .badge-title {
    flex-direction: column-reverse;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 16px;
  }
  nav {
    display: none;
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 2em);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em;
    background: linear-gradient(to bottom, #250d35, rgba(37, 13, 53, 0));
    z-index: 100;
  }
  .mobile-nav.scrolled {
    background: rgba(37, 13, 53, 0.85);
    -webkit-backdrop-filter: blur(32px);
            backdrop-filter: blur(32px);
  }
  .mobile-nav img {
    height: 24px;
  }
  .mobile-nav button {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    padding: 1em;
    height: 100vh;
    width: calc(100% - 32px);
    z-index: 101;
    gap: 5em;
    flex-direction: column;
  }
  .mobile-menu.show {
    display: flex;
  }
  .mobile-menu .mobile-menu_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-menu .mobile-menu_header img {
    height: 24px;
  }
  .mobile-menu .mobile-menu_header button {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu .nav-links {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2em;
    margin: 3em 0;
  }
  .mobile-menu .nav-links a {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.25em;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: "NeulisAlt", sans-serif;
    transition: all 0.2s;
  }
  .mobile-menu .nav-links a:hover {
    color: #1EE0B1;
  }
  .mobile-menu .ctas {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 1em;
  }
  .mobile-menu .ctas a {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #hero {
    width: 100%;
    padding: 5em 0 3em;
    min-height: 130vh;
    justify-content: start;
    align-items: center;
    gap: 16px;
    overflow: hidden;
  }
  #hero h1 {
    font-size: 2em;
    padding: 0 16px;
    text-align: center;
  }
  #hero h2 {
    font-size: 1.5em;
    padding: 0 16px;
    text-align: center;
  }
  #hero .checklist {
    padding: 0 16px;
    margin: 24px 0;
  }
  #hero .checklist p {
    font-size: 1.125em;
  }
  #hero .checklist img {
    height: 24px;
  }
  #hero .ctas {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
    width: calc(100% - 32px);
  }
  #hero .ctas a {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #hero > .mockup {
    height: initial !important;
    top: initial !important;
    right: initial !important;
    bottom: -25%;
    left: 30%;
    transform: translateX(-50%) !important;
    width: 190% !important;
  }
  #hero > #nebulosa {
    transform: rotate(-90deg) translate(-50%, -50%);
    top: -37%;
    left: -10%;
    width: 270%;
  }
  .title {
    font-size: 1.8em;
  }
  #vantaggi {
    width: calc(100% - 32px);
    padding: 4em 16px;
  }
  #vantaggi > div {
    flex-direction: column;
  }
  #funzionalita {
    width: calc(100% - 32px);
    padding: 4em 16px;
  }
  #funzionalita .feature {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 3em;
  }
  #funzionalita .feature.reverse-mobile {
    flex-direction: column-reverse;
  }
  #funzionalita .feature h3 {
    text-align: center !important;
  }
  #funzionalita .feature > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #funzionalita .feature > img {
    width: 70%;
  }
  #funzionalita .feature .checklist {
    margin: 0 !important;
  }
  #dashboard {
    width: calc(100% - 32px);
    padding: 4em 16px;
  }
  #dashboard .checklist {
    flex-direction: column;
  }
  #dashboard .checklist > div {
    flex-direction: row;
  }
  #dashboard .checklist > div p {
    text-align: left;
  }
  #dashboard .ctas {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
    width: calc(100% - 32px);
  }
  #dashboard .ctas a {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #dicono-di-noi {
    width: calc(100% - 32px);
    padding: 4em 16px;
  }
  #dicono-di-noi .owl-carousel .owl-stage-outer {
    overflow: visible !important;
  }
  #who {
    width: calc(100% - 32px);
    padding: 4em 16px;
  }
  #who .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  #who .cards .card {
    padding: 16px;
  }
  #who .cards .card p {
    font-size: 1em;
  }
  #contattaci {
    width: calc(100% - 32px);
    padding: 4em 16px;
  }
  #contattaci iframe {
    min-height: 1041px !important;
  }
  #contattaci footer {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-top: 0;
    padding-top: 2em;
  }
}/*# sourceMappingURL=main.css.map */