@charset "UTF-8";
/* ++++++ New Breakpoints ++++++ */
/*
la grandezza minima funzionale prevista per questo layout \u00e8 di 320px
la regola seguente serve unicamente per facilitare il lavoro di sviluppo fornendo
un breakpoint "inutile" a 320px
*/
html {
  scroll-padding: 200px;
}
@media (min-width: 992px) {
  html {
    scroll-padding: 150px;
  }
}

@media (min-width: 320px) {
  body {
    background-color: white;
  }
}

/*
    I nomi dei colori sono stati presi da https://www.color-blindness.com/color-name-hue/
    e sono strutturati come $hue-name
*/
/* Variables: */
/* Mixins: */
/* Variables */
:root {
  --wrapper-width: 280px;
  /*
        Questa variabile viene utilizzata nella costruzione di "form-section" dal breakpoint $lg
        in su, e nell'adattamento del "cards-wrapper" nella sezione "info", che eccede
        la larghezza del wrapper.
        Permette di avere un wrapper di larghezza fissa
    */
  --standard-side: calc((100vw - var(--wrapper-width)) / 2);
  /*
        Questa variabile \u00e8 la complementare di --wrapper-width; rappresenta la larghezza di un
        "fianco standard" di un wrapper, sia esso un margin o un padding.
        2* --standard-side + --wrapper-width corrispondono alla larghezza dello schermo
    */
  --site-max: 1440px;
  --form-right-inset: 120px;
  --site-gutter: 24px;
}
@media (min-width: 375px) {
  :root {
    --wrapper-width: 320px;
  }
}
@media (min-width: 576px) {
  :root {
    --wrapper-width: 476px;
  }
}
@media (min-width: 992px) {
  :root {
    --wrapper-width: 883px;
  }
}
@media (min-width: 1200px) {
  :root {
    --wrapper-width: 1120px;
  }
}
@media (min-width: 1400px) {
  :root {
    --wrapper-width: 1320px;
  }
}

/* Shadow */
.with-shadow {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.view-only-mobile {
  display: block;
}
@media (min-width: 1260px) {
  .view-only-mobile {
    display: none !important;
  }
}

/* Inline bp-only */
.in-to-sm {
  display: inline;
}
@media (min-width: 576px) {
  .in-to-sm {
    display: none;
  }
}

.in-from-sm {
  display: none;
}
@media (min-width: 576px) {
  .in-from-sm {
    display: inline;
  }
}

.in-to-sp {
  display: inline;
}
@media (min-width: 375px) {
  .in-to-sp {
    display: none;
  }
}

.in-from-sp {
  display: none;
}
@media (min-width: 375px) {
  .in-from-sp {
    display: inline;
  }
}

.in-to-md {
  display: inline;
}
@media (min-width: 768px) {
  .in-to-md {
    display: none;
  }
}

.in-from-md {
  display: none;
}
@media (min-width: 768px) {
  .in-from-md {
    display: inline;
  }
}

.in-to-lg {
  display: inline;
}
@media (min-width: 992px) {
  .in-to-lg {
    display: none;
  }
}

.in-from-lg {
  display: none;
}
@media (min-width: 992px) {
  .in-from-lg {
    display: inline;
  }
}

.in-to-xl {
  display: inline;
}
@media (min-width: 1200px) {
  .in-to-xl {
    display: none;
  }
}

.in-from-xl {
  display: none;
}
@media (min-width: 1200px) {
  .in-from-xl {
    display: inline;
  }
}

.in-from-xxl {
  display: none;
}
@media (min-width: 1400px) {
  .in-from-xxl {
    display: inline;
  }
}

/* Vari breakpoints block */
.bl-mobile-only {
  display: block;
}
@media (min-width: 992px) {
  .bl-mobile-only {
    display: none;
  }
}

.bl-desktop-only {
  display: none;
}
@media (min-width: 992px) {
  .bl-desktop-only {
    display: block;
  }
}

.bl-wide-mobile-only {
  display: block;
}
@media (min-width: 1200px) {
  .bl-wide-mobile-only {
    display: none;
  }
}

.bl-xl-desktop-only {
  display: none;
}
@media (min-width: 1200px) {
  .bl-xl-desktop-only {
    display: block;
  }
}

.bl-from-xl {
  display: none;
}
@media (min-width: 1200px) {
  .bl-from-xl {
    display: block;
  }
}

.rainbow-border {
  --offset: 2px;
  box-shadow: none;
  position: relative;
  border: var(--offset) solid transparent;
  border-radius: 10px;
  background: linear-gradient(#fff, #fff);
  background-clip: padding-box;
}
.rainbow-border::before {
  position: absolute;
  top: calc(-1 * var(--offset));
  bottom: calc(-1 * var(--offset));
  left: calc(-1 * var(--offset));
  right: calc(-1 * var(--offset));
  background: linear-gradient(90.55deg, #f72717 4.48%, #ed1f7d 26.3%, #711cff 49.5%, #0d8aff 71.78%, #05e4c5 91.79%);
  content: "";
  z-index: -1;
  border-radius: 10px;
}

.rainbow-text {
  background: linear-gradient(91deg, #f72717 4.48%, #ed1f7d 26.3%, #711cff 49.5%, #0d8aff 71.78%, #05e4c5 91.79%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rainbow-text.aqua-rainbow {
  background: linear-gradient(90.34deg, #0d8aff 30%, #05e4c5 70%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rainbow-text ~ sup {
  color: #05e4c5;
}

sup.trademark {
  font-size: 0.5em;
  vertical-align: top;
  top: -0.5em;
  position: relative;
}

.nowrap {
  white-space: nowrap;
}

/* ===== Design tokens ===== */
:root {
  --container: 1120px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --radius: 14px;
  --radius-lg: 20px;
  --brand: #e21e2b;
  --ink: #111;
  --ink-2: #2d2d2d;
  --muted: #5c6672;
  --bg: #fff;
  --primary: #1a2cff;
  /* Sostituisci con il tuo file (immagine unica desktop con carte + telefono) */
  --hero-bg: url("assets/hero-desktop.jpg");
}

/* ===== Base ===== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Source Sans Pro";
  padding-top: 84px;
}

@media (max-width: 768px) {
  body.step2,
  body.confirmation,
  body.typ {
    padding-top: 0;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (max-width: 1259px) {
  .container {
    margin-left: 15px;
    margin-right: 15px;
    width: unset;
    max-width: unset;
  }
}

.sr-only {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* ===== Header ===== */
.site-header,
.site-header-typ {
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  height: 84px; /* requested header height */
  border-bottom: 1px solid #eceff3;
}
.site-header .container,
.site-header-typ .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  max-width: 1200px;
}
.site-header .brand,
.site-header-typ .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
}

.btn {
  --btn-py: 0.6rem;
  --btn-px: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.btn-primary {
  background: #162056;
  color: #fff;
  padding-left: 24px;
  padding-right: 24px;
}
.btn.btn-primary:hover {
  filter: brightness(0.95);
}

@media (max-width: 767px) {
  .site-header-typ {
    display: none;
  }
}
.color-black {
  color: #000 !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%; /* <--- prima era 1440px */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  height: 762px;
  background-color: rgb(244, 245, 245); /* <--- grigio su tutta la banda */
  overflow: hidden;
}
@media (min-width: 1260px) {
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 66px;
    background-image: url("img/hero-mask-large.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
  }
}
.hero .hero__bg {
  position: absolute;
  height: 762px;
  max-height: 762px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  max-width: 100%;
  background-image: url("img/hero-desk-1440-tr.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: -2;
}
@media (max-width: 1259px) {
  .hero .hero__bg::after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100%;
    aspect-ratio: 1420/65.5;
    flex-shrink: 0;
    background-image: url("img/hero-mask.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
  }
}
@media (max-width: 1259px) {
  .hero .hero__bg {
    background-color: rgb(244, 245, 245);
    background-image: none;
    background-position: center top;
    background-size: cover;
    height: 620px;
  }
}
.hero .hero__animated_img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: visible;
  display: none;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.hero .hero__animated_img img {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.hero .hero__animated_img img.middle {
  padding-top: 30px;
  z-index: 2;
  max-width: 80%;
  max-height: 100%;
  margin-left: -60px;
  margin-right: -60px;
}
.hero .hero__animated_img .left,
.hero .hero__animated_img .right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow: hidden;
}
.hero .hero__animated_img .left img,
.hero .hero__animated_img .right img {
  width: 120px;
  pointer-events: none;
  position: relative;
}
.hero .hero__animated_img .left img {
  left: -8px;
}
.hero .hero__animated_img .right img {
  right: -8px;
}
@media (max-width: 1259px) {
  .hero .hero__animated_img {
    display: flex;
    margin-top: -40px;
  }
}
.hero .hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.hero .hero__content {
  padding: clamp(2rem, 4vw + 1rem, 4rem) 0 clamp(2rem, 3vw + 1rem, 3rem);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 520px;
  align-items: flex-start;
  text-align: left;
  margin-left: clamp(0px, -540px + 45.83vw, 120px);
  width: auto;
}
@media (max-width: 1259px) {
  .hero .hero__content {
    margin-left: 0px;
    margin-right: 0px;
    align-items: center;
    max-width: 100%;
  }
}
.hero .brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero .brand-strip li {
  text-transform: lowercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
  padding: 0.35rem 0.6rem;
  background: #f3f5f7;
  color: #2d2d2d;
  border-radius: 999px;
  border: 1px solid #e8ecf1;
}
.hero .hero__title {
  margin: 10.25rem 0 0;
  color: #e12315;
  font-family: Lexend;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.25px;
}
.hero .hero__title .reg {
  font-weight: 800;
  font-size: 0.65em;
  vertical-align: super;
}
@media (max-width: 1259px) {
  .hero .hero__title {
    font-size: 25px;
    line-height: 1.15;
    margin-top: 20px;
  }
}
.hero .hero__subtitle {
  margin: 0;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.15px;
  max-width: 620px;
}
@media (max-width: 1259px) {
  .hero .hero__subtitle {
    font-size: 16px;
    line-height: 1.15;
  }
}
.hero .hero__bullets {
  margin: 32px 0 83px;
  padding-left: 1.1rem;
  color: #2d3748;
}
.hero .hero__bullets li {
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
}
@media (max-width: 1259px) {
  .hero .hero__bullets {
    padding-left: 0;
    list-style: none;
    margin-top: 12px;
  }
  .hero .hero__bullets li {
    position: relative;
    padding-left: 32px;
    list-style: none;
    font-size: 16px;
  }
  .hero .hero__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("img/check-red.svg") center/contain no-repeat;
  }
}
.hero .trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero .trust__score {
  font-size: 0.95rem;
  flex-basis: 100%;
}
.hero .trust__brand {
  font-weight: 700;
  margin-left: 8px;
}
.hero .star {
  display: inline-block;
  width: 23px;
  height: 24px;
  margin-right: 8px;
  background-image: url("img/star.svg"), linear-gradient(90deg, #00b67a 0 50%, #cbcbcb 50% 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, 0 0;
  background-size: 16.8px 16.8px, 100% 100%;
}
.hero .star.is-on {
  background-image: url("img/star.svg"), linear-gradient(90deg, #00b67a 0 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, 0 0;
  background-size: 16.8px 16.8px, 100% 100%;
  border: none;
}
.hero .hero__phone {
  margin: 0.25rem 0 0;
  font-size: 0.98rem;
  color: var(--muted);
}
.hero .hero__phone a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.hero .hero__phone a:hover {
  border-bottom-color: currentColor;
}

@media (max-width: 1259px) {
  .hero {
    height: 620px;
  }
}
/* ====== Hero TYP ====== */
.hero-typ {
  height: 556px;
  position: relative;
  isolation: isolate;
  width: 1440px;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.hero-typ .hero__bg-typ {
  position: absolute;
  height: 556px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  max-width: 100vw;
  background-color: rgb(244, 245, 245);
  background-image: url("img/sfondo-typ.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: -2;
}
.hero-typ .hero__bg-typ::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  aspect-ratio: 1420/65.5;
  flex-shrink: 0;
  background-image: url("img/hero-mask.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero-typ .hero__bg-typ {
    background-color: rgb(244, 245, 245);
    background-image: url("img/sfondo-typ-mobile.png");
    background-position: center top;
    background-size: cover;
  }
}
.hero-typ .hero__content-typ {
  padding: clamp(2rem, 4vw + 1rem, 4rem) 0 clamp(2rem, 3vw + 1rem, 3rem);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  align-items: flex-start;
  text-align: left;
  margin-left: clamp(0px, -540px + 45.83vw, 120px);
  width: auto;
}
@media (max-width: 1259px) {
  .hero-typ .hero__content-typ {
    margin-left: 24px;
    margin-right: 24px;
    align-items: center;
    max-width: 100%;
  }
}
.hero-typ .hero__title-typ {
  color: #fff;
  text-align: center;
  font-family: "Source Sans Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.15px;
  width: 100%;
  margin-top: 350px;
  margin-bottom: 0;
}
@media (max-width: 1259px) {
  .hero-typ .hero__title-typ {
    font-size: 32px;
    line-height: 1.15;
    margin-top: 276px;
  }
}
.hero-typ .hero__subtitle-typ {
  color: #fff;
  text-align: center;
  font-family: "Source Sans Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  width: 100%;
}
@media (max-width: 1259px) {
  .hero-typ .hero__subtitle-typ {
    font-size: 18px;
    line-height: 1.15;
  }
}

/*====== HERO PROMO ======*/
.hero-promo {
  display: inline-flex;
  padding: 16px 24px 24px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 0 24px 24px 0;
  background: #b4e4f3;
  position: relative;
  margin-top: 24px;
}

.hero-promo__kicker {
  color: #086482;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  align-self: center;
}

.hero-promo__text {
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0;
  margin: 0;
  text-align: center;
  align-self: center;
}

.hero-promo__timer {
  display: flex;
  height: 43px;
  padding: 4px 32px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #5ec4e5;
  background: #fff;
}

.hero-promo__label {
  color: #086482;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.hero-promo__countdown {
  color: #086482;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0;
  white-space: nowrap;
}

/* Hide mobile label variant by default */
.hero-promo__label--mobile {
  display: none;
}

.hero-promo__label--desktop {
  display: inline;
}

@media (min-width: 1260px) {
  .hero-promo {
    position: relative;
    /* il box rimane “della sua larghezza” come ora */
    border-radius: 0 24px 24px 0;
    background: #b4e4f3;
    padding: 16px 24px 24px 0px;
    overflow: visible;
  }
  .hero-promo::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    /* estende lo sfondo fino al bordo sinistro della viewport */
    left: calc(-50vw + 50%);
    right: 100%;
    background: #b4e4f3;
    z-index: -1;
  }
}
@media (max-width: 1259px) {
  .hero-promo {
    position: static;
    left: auto;
    width: 100%;
    padding: 16px 16px 20px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
  }
  .hero-promo__kicker,
  .hero-promo__text,
  .hero-promo__label,
  .hero-promo__label--desktop,
  .hero-promo__label--mobile {
    font-size: 14px;
  }
  .hero-promo__kicker {
    align-self: center;
  }
  .hero-promo__text {
    align-self: center;
  }
  .hero-promo__timer {
    padding: 4px 16px;
  }
  .hero-promo__label--desktop {
    display: none;
  }
  .hero-promo__label--mobile {
    display: inline;
  }
  .hero-promo__label {
    display: inline-flex;
    gap: 0;
  }
}
/* ===== Intro block under hero ===== */
.intro-block {
  position: relative;
  width: 1440px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}
.intro-block__frame {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .intro-block__frame {
    text-align: left;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.intro-block__inner {
  width: 690px;
  margin-left: 120px;
  margin-right: 120px;
  padding: 40px 0;
}
.intro-block__title {
  margin: 0;
  padding-bottom: 8px;
  font-family: "Source Sans Pro";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.15px;
}
.intro-block__title .edenred {
  color: #d11607;
}
.intro-block__text {
  margin: 0;
  padding-top: 8px;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
}
.intro-block {
  /* TYP */
}
.intro-block__inner-typ {
  width: 100%;
  box-sizing: border-box;
}
.intro-block__title-typ {
  margin: 0;
  padding-bottom: 16px;
  font-family: "Source Sans Pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  color: #000;
  text-align: center;
}
.intro-block__text-typ {
  margin: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  color: #000;
  text-align: center;
}
@media (max-width: 767px) {
  .intro-block__text-typ, .intro-block__title-typ {
    text-align: left;
  }
  .intro-block .typ-cta {
    width: 100%;
  }
  .intro-block .typ-cta span {
    font-size: 14px;
    font-weight: 600;
  }
}

.typ-cta {
  display: flex;
  width: 172px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 40px;
  background: #d11607;
  margin: 32px auto 64px auto;
  text-decoration: none;
}
.typ-cta span {
  color: #fff;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

@media (max-width: 1259px) {
  .intro-block__inner {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 40px 24px;
  }
  .paragraph-text {
    padding: 20px 24px;
  }
}
@media (max-width: 767px) {
  .intro-block__inner {
    padding-inline: 0;
  }
}
@media (max-width: 1259px) {
  .intro-block__title {
    font-size: 24px;
    line-height: 1.15;
  }
  .intro-block__text {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 1259px) {
  .primary-nav {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav .navbar-buy-now-cta {
    display: inline-flex;
  }
  .hero::after {
    background: linear-gradient(90deg, #fff 0 55%, rgba(255, 255, 255, 0.9) 75%, transparent);
  }
}
@media (max-width: 700px) {
  :root {
    --container: 680px;
  }
  .hero::after {
    background: linear-gradient(90deg, #fff 0 70%, rgba(255, 255, 255, 0.92) 90%, transparent);
  }
  .brand-strip li {
    font-size: 0.74rem;
  }
}
/* ====== BLOCCHI OVALI GRIGI ====== */
.intro-oval-buy {
  position: absolute;
  transform: translateX(-25%);
  width: 100%;
  z-index: -1;
  pointer-events: none;
}
.intro-oval-buy:after {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 2000px 2000px 0;
  position: absolute;
  background-color: #f4f5f5;
  pointer-events: none;
}

.intro-oval-reasons,
.intro-oval-network {
  position: absolute;
  transform: translateX(-25%);
  width: 100% !important;
  z-index: -1;
  pointer-events: none;
}
.intro-oval-reasons:after,
.intro-oval-network:after {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 2000px 2000px 0;
  position: absolute;
  background-color: #f4f5f5;
  pointer-events: none;
}

@media (max-width: 1259px) {
  .intro-oval-buy {
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    background-color: #f4f5f5;
  }
  .intro-oval-reasons,
  .intro-oval-network {
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-color: #f4f5f5;
  }
}
.spacer {
  --size: 40px;
  height: var(--size);
}

.mobile-form-container.view-only-mobile {
  display: flex;
  place-content: center;
  margin-block-end: 2rem;
  padding-left: 24px;
  padding-right: 24px;
}

.second-form {
  position: relative;
  margin-inline: auto;
  border-radius: 24px !important;
  padding: 24px !important;
}

.svg-stroke-white .path {
  stroke: #fff;
}

/* ====== FORM FIXED RIGHT ====== */
/* Card form fissa */
.form-fixed {
  position: fixed;
  top: var(--form-fixed-top, 96px);
  right: max(var(--site-gutter), (100vw - var(--site-max)) / 2 + var(--form-right-inset));
  z-index: 10000;
}

@media (min-width: 1260px) {
  .form-fixed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
  }
}
/* Testo + telefono sotto la card form fissa (allineato al frame Figma) */
.form-fixed__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 274px;
  margin: 0;
  text-align: center;
}

.form-fixed__contact-intro {
  margin: 0;
  color: #000;
  font-family: "Ubuntu", "Century Gothic", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.form-fixed__contact-tel {
  margin: 0;
}

.form-fixed__contact .phone-number {
  font-family: "Ubuntu", "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  letter-spacing: 0.25px;
  color: #162056;
}

@media (max-width: 1259px) {
  .form-fixed {
    display: none;
    position: static;
    right: auto;
    top: auto;
  }
}
/*====== FORM ====== */
.main-form,
.second-form {
  display: flex;
  width: 384px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  border: 1px solid #cdd2d3;
  background: #fff;
  overflow: visible;
  margin-top: 2%;
}

.main-form {
  padding: 28px 24px;
  border-radius: 24px;
}

.second-form {
  padding: 8px 16px;
  border-radius: 12px;
}

.second-form {
  width: 342px;
  justify-content: flex-start;
}
.second-form .cta .cta-default {
  font-size: 14px;
}
.second-form .privacy-wrapper {
  align-items: center;
}

.form-title {
  margin: 0 0 6px;
  color: #162056;
  font-family: "Source Sans Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.form-subtitle {
  margin: 0;
  color: #162056;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
}

.form-phone-hint {
  width: 100%;
}

.small.smaller {
  display: none;
} /* mantengo ma non mostro */
.select-wrapper,
.input-wrapper,
.privacy-wrapper {
  display: grid;
  gap: 6px;
  width: 100%;
  max-width: 100%;
}

.select-wrapper {
  position: relative;
}

.select-wrapper span,
.input-wrapper span {
  color: #566061;
  font-family: Lexend;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 15.4px */
  letter-spacing: 0;
  text-transform: uppercase;
}

.select-wrapper select,
.input-wrapper input,
.textarea-wrapper textarea {
  width: 100%;
  appearance: none;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  padding-right: 40px;
  font-size: 16px;
  outline: none;
  color: #2d2d2d;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
}

.select-wrapper select:invalid {
  color: #566061;
}

/* Some browsers allow styling options; ensure option text is dark, while disabled (placeholder) option is lighter. */
.select-wrapper select option {
  color: #2d2d2d;
}

.select-wrapper select option[disabled] {
  color: #566061;
}

.select-wrapper select option {
  color: #566061;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 20px */
  letter-spacing: 0;
}

/* Chevron dentro al select */
.select-wrapper .faq__chevron {
  position: absolute;
  right: 14px;
  top: 68%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s ease;
}

/* Quando il select è attivo/focus → ruota la chevron */
.select-wrapper.is-open .faq__chevron {
  transform: translateY(-50%) rotate(180deg);
}

/* Placeholder styling for inputs inside the form */
.input-wrapper input::placeholder,
.input-wrapper input::-webkit-input-placeholder,
.input-wrapper input:-ms-input-placeholder,
.input-wrapper input::-ms-input-placeholder,
.input-wrapper input::-moz-placeholder {
  color: #566061;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 20px */
  letter-spacing: var(--font-spacing-0, 0);
}

.input-wrapper img,
.privacy-wrapper img {
  display: none;
}

.invalid-field select,
.invalid-field input,
.invalid-field textarea {
  border-color: #ef4444;
}

/* Checkbox/Privacy required non selezionata: bordo, testo e link rossi (simmetrico a root) */
.privacy-wrapper.invalid-field input[type=checkbox],
.privacy-wrapper.invalid-field input[type=radio] {
  border-color: #ef4444;
  appearance: none;
}

.privacy-wrapper.invalid-field span {
  color: #ef4444;
}

.privacy-wrapper.invalid-field a {
  color: #ef4444;
}

/* Privacy come checkbox (ma è radio) */
.checkbox {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.privacy-wrapper {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 10px;
  color: #162056;
  font-family: "Source Sans Pro";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0;
}
.privacy-wrapper .privacy-link {
  text-decoration: underline;
}
.privacy-wrapper span {
  margin-left: 18px;
}

.privacy-wrapper input[type=checkbox] {
  margin-top: 2px;
  /* appearance: none; - rimosso dalla base per evitare conflitti sui click */
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.privacy-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--eden-red);
  border-radius: 2px;
}

.privacy-wrapper input[type=radio] {
  margin-top: 2px;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.privacy-wrapper input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--eden-red);
  border-radius: 2px;
}

.privacy-wrapper a {
  color: var(--eden-red);
  font-weight: 600;
  text-decoration: none;
}

.privacy-wrapper a:hover {
  text-decoration: underline;
}

.cta {
  display: flex;
  width: 100%;
  height: 44px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  border: 0;
  border-radius: 40px;
  background: #d11607;
  color: #fff;
  cursor: pointer;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media (max-width: 1259px) {
  .cta .cta-default-desktop {
    display: none;
  }
}
@media (min-width: 1260px) {
  .cta .cta-default {
    display: none;
  }
}

.cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.google-search-details {
  margin: 0;
  color: #162056;
  text-align: center;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 17.6px */
  letter-spacing: 0;
}

.google-search-details .phone-number {
  font-weight: 800;
  font-size: 20px;
}

/* Accessibilità */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Overlay & modal minimi per compatibilità con main.js */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.25);
  display: none;
  z-index: 100;
}

.overlay.show {
  display: block;
}

.overlay {
  position: fixed;
  display: none;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: url("img/loader.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-color: rgba(0, 0, 0, 0.75);
  background-position: center 25%;
  z-index: 999;
}
.overlay .message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px 200px;
  font: 400 25px/37px "Source Sans Pro";
  text-align: center;
  color: white;
}
@media (min-width: 1260px) {
  .overlay .message {
    padding-bottom: 150px;
  }
}
.overlay.show {
  display: block;
}

#error-modal {
  position: fixed;
  inset: auto 20px 20px auto;
  display: none;
}

#error-modal.open {
  display: block;
}

#error-close {
  border: 0;
  background: #111827;
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}

/* ============ REASONS SLIDER ============ */
.reasons {
  border-radius: 40px;
  position: relative;
}

.reasons__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 60px;
}

/* frecce in alto a destra */
.reasons__arrows {
  display: flex;
  gap: 24px;
  position: static;
  margin-top: 12px;
  position: absolute;
  top: 100px;
  right: 0px;
  margin-top: 0;
}

.reasons__arrow {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.reasons__arrow:hover {
  transform: scale(1.03);
}

@media (max-width: 1259px) {
  .reasons__head {
    margin-bottom: 16px;
  }
  .reasons__arrows {
    display: none;
  }
}
/* viewport + track */
.reasons__viewport {
  overflow: hidden;
  width: 100%;
  /* center the active card so previous and next are partially visible */
  padding-inline: calc((100% - 478px) / 2);
}

.reasons__track {
  display: flex;
  width: max-content;
  gap: var(--spaceing-2, 16px);
  transition: transform 0.35s ease;
  padding: 0;
  margin: 0;
  list-style: none;
}

.reasons__track > .reason-card:nth-child(1) {
  background: #086482;
}

.reasons__track > .reason-card:nth-child(2) {
  background: #064356;
}

.reasons__track > .reason-card:nth-child(3) {
  background: #03212b;
}

/* Force exact card size on the track so the next card peeks into view */
.reasons__track > .reason-card {
  width: 478px !important;
  height: 322px !important;
}

/* Card */
.reason-card {
  display: flex;
  width: 478px;
  height: 322px;
  padding: var(--spaceing-4, 32px) 0 var(--spaceing-4, 32px) var(--spaceing-4, 32px);
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  background: #007a96;
  border-radius: var(--Radius-radius-16, 16px);
  color: #fff;
}

.reason-card__media {
  height: 120px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 60px 0 0 60px;
  background: lightgray;
  background-size: cover;
}

.reason-card__body {
  display: grid;
  gap: 16px;
  padding: 0 32px 0 0;
  box-sizing: border-box;
  max-width: calc(100vw - 68px);
}

.reason-card__title {
  color: #fff;
  font-family: "Source Sans Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin: 0;
}

.reason-card__text {
  color: #fff;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: var(--font-spacing-0, 0);
  margin: 0;
}

.reasons__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.reasons__dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  opacity: 0.25;
  background: #d11607;
  border: 0;
  cursor: pointer;
  transition: width 0.25s ease, opacity 0.2s ease;
}

.reasons__dot.is-active {
  width: 40px;
  height: 12px;
  border-radius: 6px;
  opacity: 1;
}

/* Responsiveness: su schermi larghi puoi far intravedere le card adiacenti */
@media (min-width: 960px) {
  .reasons__track {
    grid-auto-columns: calc(100% - 160px); /* lascia spazio ai bordi per dare aria */
  }
}
@media (max-width: 1259px) {
  /* ===== Reasons slider: mobile layout ===== */
  .reason-card {
    display: grid;
    grid-template-columns: 123px auto; /* titolo 123px + immagine a destra */
    grid-template-rows: auto auto;
    grid-template-areas: "title media" "text  text";
    width: 342px !important;
    padding: 24px 0 24px 24px;
    column-gap: 16px;
    row-gap: 16px;
    align-items: flex-start;
    flex-shrink: 0;
    align-self: stretch;
  }
  .reasons__track > .reason-card {
    width: 342px !important;
    height: 292px !important;
  }
  .reason-card__body {
    display: contents;
  }
  .reason-card__title {
    grid-area: title;
    width: 123px;
    max-width: 123px;
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
  }
  .reason-card__media {
    grid-area: media;
    width: 179px;
    height: 110px;
    border-radius: 60px 0 0 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .reason-card__text {
    grid-area: text;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
  }
  /* Immagini specifiche per mobile (override degli inline style) */
  .reason-card:nth-child(1) .reason-card__media {
    background-image: url("img/reasons-mobile1.png") !important;
  }
  .reason-card:nth-child(2) .reason-card__media {
    background-image: url("img/reasons-mobile2.png") !important;
  }
  .reason-card:nth-child(3) .reason-card__media {
    background-image: url("img/reasons-mobile3.png") !important;
  }
}
/* ===== IVA BENEFIT BLOCK ===== */
.iva-benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.iva-benefit__title {
  text-align: left;
  margin-bottom: 48px;
}
@media (max-width: 1259px) {
  .iva-benefit__title {
    margin-bottom: 24px;
  }
}
.iva-benefit__layout {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 62px;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 1260px) {
  .iva-benefit__media {
    width: 244px;
    height: 244px;
    border-radius: 999px;
    background: url("img/partita-iva-vinta.svg") center/cover no-repeat, #eee;
    position: relative;
  }
  .iva-benefit__media::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 13px;
    width: 45px;
    height: 45px;
    background: #f72717;
    border-radius: 300px;
  }
  .iva-benefit__media::after {
    content: "";
    position: absolute;
    left: 164px;
    bottom: 35px;
    width: 118px;
    height: 45px;
    background: #fb9c94;
    border-radius: 300px;
  }
}
.iva-benefit {
  /* Mobile override: immagine diversa, larghezza piena, senza pallini decorativi */
}
@media (max-width: 1259px) {
  .iva-benefit__media {
    width: 100%;
    aspect-ratio: 342/160;
    border-radius: 16px;
    background: url("img/partita-iva-vinta-mob.svg") center/contain no-repeat, #eee;
  }
  .iva-benefit__media::before, .iva-benefit__media::after {
    content: none;
    display: none;
  }
}
.iva-benefit__content {
  max-width: 384px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1259px) {
  .iva-benefit__content {
    max-width: 100%;
  }
}
.iva-benefit__subtitle {
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin: 0;
}
@media (max-width: 1259px) {
  .iva-benefit__subtitle {
    font-size: 20px;
  }
}
.iva-benefit__text {
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  margin: 0;
}
@media (max-width: 1259px) {
  .iva-benefit__text {
    font-size: 18px;
  }
}
.iva-benefit__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 8px;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  margin-top: 56px;
}
.iva-benefit__cta img {
  width: 16px;
  height: 16px;
}
.iva-benefit__cta span {
  color: #d11607;
  border-bottom: 1px solid #d11607;
}
.iva-benefit__cta:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 4px;
}
.iva-benefit__cta-mobile {
  display: none;
}
@media (max-width: 1259px) {
  .iva-benefit__cta--desktop {
    display: none;
  }
  .iva-benefit__cta-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }
  .iva-benefit__cta-mobile-text {
    margin: 0;
    color: #0c0d0d;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
  }
  .iva-benefit__cta-mobile-btn {
    display: flex;
    height: 44px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 40px;
    border: 1px solid #d11607;
    background: #fff;
    text-decoration: none;
    color: #d11607;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  .iva-benefit__cta-mobile-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    border-radius: 40px;
  }
}
@media (min-width: 1260px) {
  .iva-benefit__cta-mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .iva-benefit__layout {
    flex-direction: column;
    gap: 32px;
  }
  .iva-benefit__content {
    max-width: 100%;
  }
}

/* ===== PROMO ONLINE ===== */
.promo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.promo .promo__box {
  display: flex;
  padding: 24px 40px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 8px;
  background: #e7f6fb;
}
.promo .promo__head {
  color: #0b86ad;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.promo .promo__text {
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  margin: 8px 0 32px 0;
}
.promo .promo__timer {
  display: flex;
  height: 43px;
  padding: 4px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #5ec4e5;
  background: #fff;
}
.promo .promo__label {
  color: #086482;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.promo .promo__countdown {
  color: #086482;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0;
  white-space: nowrap;
}
.promo .promo__cta {
  display: flex;
  width: 172px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 40px;
  background: #162056;
  margin: 0 auto;
  text-decoration: none;
}
.promo .promo__cta span {
  color: #fff;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.promo {
  /* CTA text variants */
}
.promo .promo__cta-text--mobile {
  display: none;
}
.promo .promo__cta-text--desktop {
  display: inline;
}
.promo {
  /* Mobile */
}
@media (max-width: 1259px) {
  .promo .promo__cta {
    width: 100%;
  }
  .promo .promo__cta-text--desktop {
    display: none;
  }
  .promo .promo__cta-text--mobile {
    display: inline;
    text-align: center;
  }
}
.promo {
  /* Desktop */
}
@media (min-width: 1260px) {
  .promo .promo__cta {
    width: 172px;
  }
  .promo .promo__cta-text--desktop {
    display: inline;
  }
  .promo .promo__cta-text--mobile {
    display: none;
  }
}
.promo .promo__disclaimer {
  margin-top: 0;
  color: #0c0d0d;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Ubuntu;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.15px;
}

@media (max-width: 1259px) {
  .promo__head {
    font-size: 14px !important;
  }
  .promo__box {
    padding: 24px !important;
  }
  .promo__text {
    font-size: 16px !important;
  }
  .promo__label {
    font-size: 14px !important;
  }
  .promo__label-desktop {
    display: none !important;
  }
  .promo__label-mobile {
    display: inline-block !important;
    min-width: 81px;
  }
  .promo__disclaimer-desktop {
    display: none !important;
  }
  .promo__disclaimer-mobile {
    display: inline !important;
  }
}
@media (min-width: 1260px) {
  .promo__disclaimer-desktop {
    display: inline !important;
  }
  .promo__disclaimer-mobile {
    display: none !important;
  }
  .promo__label-desktop {
    display: inline !important;
  }
  .promo__label-mobile {
    display: none !important;
  }
}
/* ===== RETE ESERCENTI ===== */
.network {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.network .intro-block__title {
  margin-bottom: 8px;
}
.network .intro-block__text {
  margin-bottom: 24px;
}
.network__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 8px;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  margin-top: 16px;
}
.network__cta img {
  width: 16px;
  height: 16px;
}
.network__cta span {
  color: #d11607;
  border-bottom: 1px solid #d11607;
}

@media (max-width: 1259px) {
  .network__cta {
    display: none;
  }
}
.network__segmented {
  width: 100%;
  height: 50px;
  display: flex;
  padding: 4px;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid #cdd2d3;
  background: #fff;
}

@media (max-width: 1199px) {
  .network .intro-block__title {
    margin-bottom: 0;
  }
}
.network__seg-btn {
  display: flex;
  height: 42px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  background: #f4f5f5;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  position: relative;
  gap: 8px;
}
.network__seg-btn .seg-btn__icon {
  width: 20px;
  height: 20px;
  display: none;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.network__seg-btn .seg-btn__label {
  display: none;
}
.network__seg-btn {
  /* Icon mapping (blue versions) */
}
.network__seg-btn[data-icon=supermercati] .seg-btn__icon {
  background-image: url("img/icon-supermercati-blue.svg");
}
.network__seg-btn[data-icon=pausapranzo] .seg-btn__icon {
  background-image: url("img/icon-pausapranzo-blue.svg");
}
.network__seg-btn[data-icon=delivery] .seg-btn__icon {
  background-image: url("img/icon-delivery-blue.svg");
}
.network__seg-btn {
  /* Active state overrides to white icons */
}
.network__seg-btn.is-active[data-icon=supermercati] .seg-btn__icon, .network__seg-btn[aria-selected=true][data-icon=supermercati] .seg-btn__icon {
  background-image: url("img/icon-supermercati-white.svg");
}
.network__seg-btn.is-active[data-icon=pausapranzo] .seg-btn__icon, .network__seg-btn[aria-selected=true][data-icon=pausapranzo] .seg-btn__icon {
  background-image: url("img/icon-pausapranzo-white.svg");
}
.network__seg-btn.is-active[data-icon=delivery] .seg-btn__icon, .network__seg-btn[aria-selected=true][data-icon=delivery] .seg-btn__icon {
  background-image: url("img/icon-delivery-white.svg");
}
.network__seg-btn {
  /* Mobile behavior (<1200px): show only icon for inactive (shrink), icon + label for active */
}
@media (max-width: 1199px) {
  .network__seg-btn {
    font-size: 14px; /* richiesta */
  }
  .network__seg-btn .seg-btn__icon {
    display: block;
  }
  .network__seg-btn:not(.is-active):not([aria-selected=true]) {
    flex: 0 0 auto; /* restringe al contenuto */
    width: auto; /* icona + padding */
  }
  .network__seg-btn.is-active, .network__seg-btn[aria-selected=true] {
    flex: 1 0 0; /* occupa spazio disponibile */
  }
  .network__seg-btn.is-active .seg-btn__label, .network__seg-btn[aria-selected=true] .seg-btn__label {
    display: inline;
  }
}
.network__seg-btn {
  /* Desktop: show label for all, hide icon (or keep icon visible if desired). */
}
@media (min-width: 1200px) {
  .network__seg-btn .seg-btn__label {
    display: inline;
  }
  .network__seg-btn .seg-btn__icon {
    display: none;
  }
}

.network__seg-btn.is-active,
.network__seg-btn[aria-selected=true] {
  padding: 0 24px;
  background: var(--color-Blue-secondario-Blue-secondary, #162056);
  color: var(--Primary-White, #fff);
}

@media (max-width: 1199px) {
  .network__seg-btn.is-active.delivery {
    padding: 0 20px;
  }
}
@media (max-width: 385px) {
  .network__seg-btn.is-active.delivery {
    padding: 0 14px;
  }
}
/* ===== Viewport a 2 righe ===== */
.network__viewport {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  overflow: hidden;
  display: grid;
  gap: 16px;
}

.network__panel[hidden] {
  display: none !important;
}

.network__row {
  display: inline-flex;
  gap: 16px;
  white-space: nowrap;
  will-change: transform;
  margin-block-start: 8px;
  margin-block-end: 8px;
  padding-inline-start: 0;
}

.network__logo {
  flex: 0 0 auto;
  width: 200px;
  height: 140px;
  border-radius: 16px;
  background: #fff;
  display: grid;
  place-items: center;
}
.network__logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Marquee */
@keyframes network-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===== Logo wall: pause animation on hover + clickable logos ===== */
.network__logo {
  cursor: pointer;
}

/* ===== Logo popup overlay & modal ===== */
.logo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-end; /* allow absolute-positioned modal to sit where requested */
  justify-content: flex-start;
  z-index: 1200;
}

.logo-popup-overlay[hidden] {
  display: none;
}

.logo-popup {
  display: flex;
  padding: var(--spaceing-3, 24px);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  /* use fixed positioning so JS can place it relative to viewport easily */
  position: fixed;
  left: 197px; /* fallback values - overridden by JS when available */
  bottom: 272px; /* fallback */
  border-radius: var(--radius-xs, 16px);
  border: 1px solid var(--color-Blue-400, #3eb9e0);
  background: var(--Background-background_color_primary, #fff);
  max-width: 520px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform-origin: center center;
}

.logo-popup__kicker {
  color: var(--color-Blue-600, #0b86ad);
  font-family: var(--font-family-font_type_lexend, Lexend);
  font-size: var(--font-size-size_label, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: var(--font-spacing-0, 0);
  text-transform: uppercase;
}

.logo-popup__heading {
  color: var(--Text-text_color_primary, #0c0d0d);
  font-family: var(--font-family-font_type_sourcesanspro, "Source Sans Pro");
  font-size: var(--font-size-size_body_lg, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: var(--font-spacing-0, 0);
  text-align: left;
}

.logo-popup__cta {
  color: #d11607;
  font-family: "Source Sans Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  border-bottom: 1px solid #d11607;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
}
.logo-popup__cta img {
  width: 16px;
  height: 16px;
}

/* small responsive tweak: if viewport is narrow, keep popup within viewport */
@media (max-width: 640px) {
  .logo-popup {
    left: 16px;
    right: 16px;
    bottom: 24px;
    position: fixed;
  }
}
@media (min-width: 1260px) {
  .network__viewport-mobile {
    display: none;
  }
  .network__cta-slide {
    display: none;
  }
}
/* --- MOBILE --- */
@media (max-width: 1259px) {
  .network__viewport {
    display: none;
  }
  .network__viewport-mobile {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    overflow: hidden;
    display: grid;
    gap: 16px;
  }
  .network__row-mobile {
    display: inline-flex;
    gap: 16px;
    white-space: nowrap;
    will-change: transform;
    margin-block-start: 8px;
    margin-block-end: 8px;
    padding-inline-start: 20px;
  }
  .network__logo-mobile {
    flex: 0 0 auto;
    width: 150px;
    height: 88px;
    border-radius: 16px;
    background: #fff;
    display: grid;
    place-items: center;
  }
  .network__logo-mobile img {
    max-width: 150px;
    max-height: 88px;
    display: block;
  }
  .network__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .network__dot {
    width: 8px;
    height: 8px;
    border-radius: 6px;
    border: none;
    background: #d11607;
    opacity: 0.25;
    padding: 0;
  }
  .network__dot.is-active {
    width: 18px;
    background: #d11607;
    opacity: 1;
  }
  .network__cta-slide {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    text-align: center;
    pointer-events: none;
  }
  .network__cta-slide-text {
    margin-bottom: 12px;
    color: #0c0d0d;
    text-align: center;
    font-family: "Source Sans Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0;
  }
  .network__cta-slide-btn {
    pointer-events: auto;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 999px;
    background: #d11607;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: 0;
  }
  /* Quando l’ultima slide è attiva */
  .network.network--cta-visible .network__cta-slide {
    display: flex;
  }
  /* Effetto blur sui loghi quando compare la CTA overlay */
  .network.network--cta-visible .network__panel-mobile.is-active {
    filter: blur(4px);
    transition: filter 0.4s ease;
  }
  /* Rimuove il blur quando si torna indietro */
  .network__panel-mobile {
    transition: filter 0.4s ease;
  }
}
/* ===== SPENDIBILITA + FOOD DELIVERY ===== */
.spendability {
  /* nessun margine extra: segue il ritmo degli altri blocchi */
}

.spendability__layout {
  display: flex;
  flex-direction: column; /* impila: tags, testo, immagine */
  align-items: center; /* centra orizzontalmente il blocco */
  gap: 24px;
  text-align: center; /* mantiene il testo centrato come blocco, il contenuto interno può essere left */
}

.spendability__tags {
  width: 690px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0 16px 0;
}

.spendability__text {
  font-family: "Source Sans Pro";
  font-size: 20px;
  line-height: 1.5;
  color: #0c0d0d;
  margin: 0;
  text-align: left;
  max-width: 690px;
}

.spendability__hero {
  width: 418px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  padding-top: 24px;
}

/* Responsive: su schermi stretti impila e mantiene la gerarchia visiva */
@media (max-width: 960px) {
  .spendability__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .spendability__hero {
    justify-self: center;
  }
}
/* === FORMATI BLOCK === */
.formats {
  display: flex;
  flex-direction: column;
  position: relative;
}
.formats .intro-block__title .red {
  color: #f72717;
}
.formats__tabs {
  display: flex;
  width: 690px;
  max-width: 100%;
  padding: 4px;
  margin-top: 12px;
  margin-bottom: 20px;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid #cdd2d3;
  background: #fff;
}
.formats__tab {
  display: flex;
  height: 42px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  transition: background 0.2s, color 0.2s;
}
.formats__tab.is-active {
  background: #162056;
  color: #fff;
  padding: 0 24px;
}
.formats__tab:not(.is-active) {
  background: #f4f5f5;
  color: #162056;
  padding: 0 16px;
}
.formats__stores-note {
  display: none;
}
.formats__card {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}
.formats__card.is-active {
  display: flex;
  animation-duration: 0.45s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.formats__left {
  position: relative;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.formats__img-app {
  width: 265.439px;
  height: 300.095px;
  z-index: 4;
  position: relative;
}
.formats__img-cartaceo {
  width: 300px;
  height: 309px;
  z-index: 4;
  position: relative;
}
.formats__right {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  border-radius: 24px;
  border: 1px solid #cdd2d3;
  background: #fff;
  order: 1;
}
.formats__bar {
  width: 295px;
  height: 22px;
  position: absolute;
  left: 25px;
  top: 61px;
  border-radius: 300px;
  background: #fdbcb7;
}
.formats__subtitle {
  align-self: stretch;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
  position: relative;
}
.formats__text {
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
  margin-top: 12px;
  letter-spacing: 0;
  position: relative;
}

/* Slide-in keyframes */
@keyframes formats-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes formats-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 1259px) {
  .formats__subtitle {
    font-size: 20px;
    line-height: 1.2;
  }
  .formats__text {
    font-size: 16px;
    line-height: 1.45;
  }
  .formats__right {
    padding: 24px;
  }
  .formats__card {
    gap: 0;
  }
  .formats__img-app {
    width: 200.892px;
    height: 219.351px;
    z-index: 4;
    position: relative;
  }
  .formats__img-cartaceo {
    width: 229px;
    height: 236px;
    z-index: 4;
    position: relative;
  }
  .formats__bar {
    width: 244px;
    height: 16px;
    position: absolute;
    left: 18px;
    top: 56px;
    border-radius: 300px;
    background: #fdbcb7;
  }
}
.formats__tabs {
  margin-bottom: 0;
}
.formats__tabs .formats__tab {
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 16px;
}

.formats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  justify-content: unset;
}
@media (min-width: 1260px) {
  .formats__card {
    flex-direction: row;
  }
}

.formats__left {
  order: 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 216px;
}
.formats__left .formats__img-app,
.formats__left .formats__img-cartaceo {
  display: block;
  height: 216px;
  margin: 0 auto;
}

.formats__stores-note {
  display: block;
  margin-top: 18px;
  text-align: center;
  color: #0c0d0d;
  font-family: Lexend;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0;
}
@media (min-width: 1260px) {
  .formats__stores-note {
    display: none;
  }
}

.formats__bar {
  margin-left: 0;
}

.formats__shape {
  z-index: 0;
}

.card-slider {
  overflow: hidden;
  display: flex;
  position: relative;
}
.card-slider > div {
  flex: 0 0 100%;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}
.card-slider #format-digital {
  transform: translateX(0);
}
.card-slider #format-paper {
  transform: translateX(100%);
}
.card-slider.format-digital #format-digital {
  transform: translateX(0);
}
.card-slider.format-digital #format-paper {
  transform: translateX(100%);
}
.card-slider.format-paper #format-digital {
  transform: translateX(-100%);
}
.card-slider.format-paper #format-paper {
  transform: translateX(-100%);
}
.card-slider .digital-fan {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  perspective: 1000px;
  background: url("img/formats.svg") no-repeat center center;
  background-size: contain;
}
.card-slider .digital-fan img {
  position: absolute;
  transform-origin: center;
}
.card-slider .digital-fan .left-img {
  width: 143px;
  z-index: 2;
  transform: translate(9px, -2px);
}
.card-slider .digital-fan .right-img {
  width: 115px;
  z-index: 1;
  transform: translate(102px, 20px);
}
.card-slider .ticket-fan {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 10px auto 20px auto;
  user-select: none;
  -webkit-user-select: none;
  background: url("img/formats.svg") no-repeat center center;
  background-size: contain;
}
.card-slider .ticket-fan img {
  position: absolute;
  left: 24px;
  top: 72px;
  width: 193px;
  height: 120px;
  object-fit: contain;
  pointer-events: none;
  transform-origin: -60px calc(100% - 33px); /* pivot slightly left and below */
  will-change: transform;
  /* stacking so later images are on top by default; we'll adjust zIndex in JS */
}
@media (min-width: 1260px) {
  .card-slider .ticket-fan img:nth-child(1) {
    transform: rotate(5deg);
  }
  .card-slider .ticket-fan img:nth-child(2) {
    transform: rotate(-10deg);
  }
  .card-slider .ticket-fan img:nth-child(3) {
    transform: rotate(-20deg);
  }
}

@media (min-width: 1260px) {
  .card-slider .digital-fan {
    width: 300px;
    height: 300px;
  }
  .card-slider .digital-fan img.left-img {
    width: 180px;
    transform: translate(9px, 8px);
  }
  .card-slider .digital-fan img.right-img {
    width: 155px;
    transform: translate(123px, 24px);
  }
  .card-slider .ticket-fan {
    width: 300px;
    height: 300px;
    margin: 0;
  }
  .card-slider .ticket-fan img {
    width: 250px;
    height: 155px;
    left: 37px;
    top: 100px;
  }
}
/* ===== ACQUISTARLI: 3 STEP ===== */
.buy-block .intro-block__text {
  margin-top: 8px;
}

.buy-block__layout {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 325px 1fr;
  align-items: center;
  position: relative;
  justify-content: center;
}

.buy-block__media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /*transform: translateY(8px);*/
  transform: translateY(0px);
}
.buy-block__media img {
  width: 384px;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

@media (min-width: 1260px) {
  .buy-block__media {
    transform: translate(30px, 24px);
  }
}
.buy-block__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

/* card */
.buy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 357px;
  height: auto;
  flex-shrink: 0;
  padding: 16px 28px;
  align-items: flex-start;
  border-radius: 24px;
  border: 1px solid #cdd2d3;
  background: #fff;
}

.buy-card__title {
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 8px;
  margin-top: 0;
  z-index: 1;
}

.buy-card__bar {
  position: absolute;
  left: 18px;
  top: 30px;
  width: 133px;
  height: 16px;
  border-radius: 300px;
  background: #b4e4f3;
}

.card.one .buy-card__bar {
  background: #b4e4f3;
}

.card.two .buy-card__bar {
  background: #90d7ed;
}

.card.three .buy-card__bar {
  background: #5ec4e5;
}

.buy-block__cards .buy-card:nth-child(1) .buy-card__bar {
  background: #b4e4f3;
}

.buy-block__cards .buy-card:nth-child(2) .buy-card__bar {
  background: #90d7ed;
}

.buy-block__cards .buy-card:nth-child(3) .buy-card__bar {
  background: #5ec4e5;
}

.buy-card__text {
  align-self: stretch;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  margin-top: 8px;
  margin-bottom: 0;
}

@media (max-width: 1259px) {
  .buy-block__layout {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .buy-block__media {
    order: 1;
    justify-content: center;
    transform: none;
  }
  .buy-block__media img {
    max-width: 100%;
  }
  .buy-block__cards {
    display: none !important;
    order: 2;
    align-items: stretch;
  }
  .buy-card {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1259px) {
  .buy-block__layout {
    display: block;
    margin-top: 32px;
    position: relative;
  }
  .buy-block__media {
    /*position: sticky;*/
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
    top: 0;
    z-index: 0;
  }
  .buy-block__media img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 24px;
  }
  .buy-block__cards {
    position: relative;
    margin-top: -64px;
    padding-bottom: 96px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .buy-card {
    position: sticky;
    bottom: 200px;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .buy-card + .buy-card {
    margin-top: 16px;
  }
  .buy-card:nth-child(1) {
    z-index: 1;
  }
  .buy-card:nth-child(2) {
    z-index: 2;
    margin-top: 16px;
  }
  .buy-card:nth-child(3) {
    z-index: 3;
    margin-top: 16px;
  }
}
/* ===== ASSISTENZA 7/7 ===== */
.support__title {
  padding-bottom: 20px;
}

.support__layout {
  padding-top: 20px;
  position: relative;
}

.support__col {
  display: none;
}

.support__img-dsk1,
.support__img-dsk2,
.support__img-mob1,
.support__img-mob2 {
  display: none;
  width: 100%;
  height: auto;
}

.support__text {
  margin-top: 32px;
}

.support__text--desktop {
  display: none;
}

.support__text--mobile {
  display: none;
}

@media (min-width: 1260px) {
  .support__layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  .support__col {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
  }
  .support__col--left {
    justify-content: flex-start;
  }
  .support__col--right {
    justify-content: flex-start;
  }
  .support__img-dsk1 {
    display: block;
    max-width: 100%;
    width: 100%;
    max-height: 244px;
    height: auto;
    object-fit: contain;
    object-position: left;
  }
  .support__img-dsk2 {
    display: block;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .support__text--desktop {
    display: block;
    margin-top: 0;
  }
  /* Hide mobile assets */
  .support__img-mob1,
  .support__img-mob2,
  .support__text--mobile {
    display: none;
  }
}
@media (max-width: 1259px) {
  .support__title {
    padding-bottom: 0px;
  }
  .support__layout {
    display: block;
    padding-top: 0px;
  }
  .support__img-mob2 {
    display: block;
    margin: 32px 0 24px;
  }
  .support__img-mob1 {
    display: block;
    margin: 0 0 32px;
  }
  .support__text--mobile {
    display: block;
    margin-top: 0;
  }
  /* Hide desktop assets */
  .support__col,
  .support__img-dsk1,
  .support__img-dsk2,
  .support__text--desktop {
    display: none;
  }
}
/* ===== TRUSTPILOT HERO ===== */
@media (max-width: 1259px) {
  .trustpilot-hero {
    display: none;
  }
}
/* ===== TRUSTPILOT ===== */
.trustpilot-block {
  display: flex;
  flex-direction: column;
}

.trustpilot-widget {
  padding-top: 40px;
}

.trustpilot-cta-mobile {
  display: none;
}

.trustpilot-cta-mobile__text {
  margin: 0;
}

.trustpilot-cta-mobile__btn {
  display: none;
}

@media (max-width: 1259px) {
  .trustpilot-text {
    font-size: 16px;
  }
  .trustpilot-cta--desktop {
    display: none !important;
  }
  .trustpilot-cta-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-top: 32px;
  }
  .trustpilot-cta-mobile__text {
    font-family: "Source Sans Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    color: #0c0d0d;
    max-width: 760px;
  }
  .trustpilot-cta-mobile__btn {
    display: flex;
    height: 44px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 40px;
    border: 1px solid #162056;
    background: #fff;
    color: #162056;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-weight: 600;
    line-height: 110%;
    text-decoration: none;
  }
}
@media (min-width: 1260px) {
  .trustpilot-cta--desktop {
    display: flex;
  }
  .trustpilot-cta-mobile {
    display: none;
  }
}
/* ===== FAQ / Domande ===== */
.faq .intro-block__title {
  margin-bottom: 16px;
}
.faq .faq__list {
  padding-top: 16px;
  border: 1px solid transparent;
}
.faq .faq__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid #cdd2d3;
}
.faq .faq__item:first-child {
  border-top: 0;
}
.faq .faq__summary {
  list-style: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  color: #0c0d0d;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 20px */
  letter-spacing: 0;
}
.faq .faq__summary::-webkit-details-marker {
  display: none;
}
.faq .faq__question {
  flex: 1 1 auto;
}
.faq .faq__chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.faq details[open] > .faq__summary .faq__chevron {
  transform: rotate(180deg);
}
.faq .faq__answer {
  padding: 0 0 16px 0;
  color: #566061;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
}
.faq .faq__answer p {
  margin: 0 0 12px 0;
}
.faq .faq__answer .faq__cta {
  margin-top: 12px;
  font-size: 16px;
  color: #566061;
}
.faq .faq__answer .faq__cta .link {
  text-decoration: underline;
}

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
}

@media (max-width: 1259px) {
  .mobile-bottom-bar {
    display: flex;
    width: 100%;
    height: 141px;
    padding: 4px 20px 24px 20px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .mobile-bottom-bar.mobile-bottom-bar--scroll-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  /* nascondo la bottom bar quando c'è popup o form aperta */
  body.mobile-popup-open .mobile-bottom-bar,
  body.mobile-form-open .mobile-bottom-bar {
    display: none;
  }
  .mobile-bottom-bar__handle {
    margin-top: 12px;
    margin-bottom: 12px;
    width: 86px;
    height: 0;
    border-top: 3px solid #cdd2d3;
  }
  .mobile-bottom-bar__title {
    margin: 0;
    color: #0c0d0d;
    text-align: center;
    font-family: "Lexend";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .mobile-bottom-bar__cta {
    display: flex;
    height: 44px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 40px;
    background: #d11607;
    border: none;
    cursor: pointer;
  }
  .mobile-bottom-bar__cta-label {
    color: #fff;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
}
/* blocco scroll quando popup o form sono aperti */
body.mobile-popup-open,
body.mobile-form-open {
  overflow: hidden;
}

/* ===== Popup mobile (aperto dalla bottom bar) ===== */
.mobile-bottom-popup {
  display: none;
}

@media (max-width: 1259px) {
  .mobile-bottom-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
  }
  .mobile-bottom-popup[hidden] {
    display: none;
  }
  .mobile-bottom-popup__dialog {
    display: flex;
    width: 100%;
    padding: 10px 16px 24px 16px;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    border-radius: 8px 8px 0 0;
    background: #fff;
  }
  .mobile-bottom-popup__close {
    align-self: flex-end;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }
  .mobile-bottom-popup__close img {
    width: 24px;
    height: 24px;
    display: block;
  }
  .mobile-bottom-popup__title {
    align-self: stretch;
    margin: 0;
    color: #0c0d0d;
    font-family: "Source Sans Pro";
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
  }
  .mobile-bottom-popup__subtitle {
    align-self: stretch;
    margin: 0;
    color: #0c0d0d;
    font-family: "Source Sans Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
  }
  .mobile-bottom-popup__actions {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .popup-cta {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 40px;
    border: 1px solid #d11607;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    gap: 8px;
  }
  .popup-cta__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .popup-cta__label {
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-weight: 600;
    line-height: 110%;
  }
  .popup-cta--primary {
    background: #d11607;
    border-color: #d11607;
  }
  .popup-cta--primary .popup-cta__label {
    color: #fff;
  }
  .popup-cta--secondary {
    border-color: #162056;
  }
  .popup-cta--secondary .popup-cta__label {
    color: #162056;
  }
}
/* ===== Overlay + form come bottom sheet mobile ===== */
.mobile-form-overlay {
  display: none;
}

.mobile-form-close {
  display: none;
}

@media (max-width: 1259px) {
  .mobile-form-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(0, 0, 0, 0.45);
  }
  .mobile-form-overlay[hidden] {
    display: none;
  }
  body.mobile-form-open .form-fixed {
    display: block;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    top: auto;
    right: auto;
    margin: 0;
    width: 100%;
    z-index: 960;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  body.mobile-form-open .form-fixed .main-form {
    width: 100%;
    gap: 8px;
    row-gap: 8px;
    padding: 12px 16px 24px 16px;
    border-radius: 8px 8px 0 0;
    min-width: 380px;
  }
  body.mobile-form-open .form-title {
    color: #000;
    font-family: "Source Sans Pro";
    font-size: 24px;
    font-weight: 600;
    line-height: 110%;
  }
  body.mobile-form-open .form-subtitle {
    color: #000;
    font-family: "Source Sans Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
  }
  body.mobile-form-open .form-phone-hint {
    display: none;
  }
  body.mobile-form-open .main-form .cta .headset {
    display: inline-flex;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    background: url("img/bar-phone-incoming-white.svg") center/contain no-repeat;
  }
  .mobile-form-close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .mobile-form-close__btn {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  .mobile-form-close__btn img {
    width: 24px;
    height: 24px;
    display: block;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #162056;
  color: white;
  text-align: center;
  display: flex;
  padding: 16px 56px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer .copyright {
  margin: 0;
}
.footer .recaptcha,
.footer .edit-cookie-consent {
  font-weight: 300;
  font-size: 12px;
}
.footer .recaptcha a,
.footer .edit-cookie-consent a {
  cursor: pointer;
  text-decoration: underline;
  color: inherit;
}
.footer .recaptcha.edit-cookie-consent,
.footer .edit-cookie-consent.edit-cookie-consent {
  margin: 0;
}
.footer .recaptcha {
  margin: 0;
}

.spacer,
.wrapper {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1260px) {
  .spacer,
  .wrapper {
    height: auto;
    min-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.wrapper {
  position: relative;
  padding-bottom: 50px;
  border-top: dashed 2px var(--color-surface50);
  border-bottom: dashed 2px var(--color-surface50);
}

.card-wrapper {
  height: auto;
  min-height: 200px;
  width: 100%;
  perspective: 200px;
  margin-bottom: 15px;
}
@media (min-width: 1260px) {
  .card-wrapper {
    display: none;
  }
}

.card-wrapper:last-child {
  margin-bottom: 0;
}

.cards {
  width: 100%;
  max-width: 750px;
  min-height: 200px;
  margin: -130px auto 0 auto;
}

.card {
  width: 100%;
  min-height: 200px;
  display: flex;
  font-size: 30px;
  border-radius: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

@media (min-width: 1260px) {
  .footer .spacer-footer {
    display: none;
  }
}
@media (max-width: 1259px) {
  body.mobile-form-open .footer .spacer-footer {
    display: none;
  }
}
/* ===== RECAPTCHA ===== */
.grecaptcha-badge {
  display: none;
}

/*# sourceMappingURL=main.css.map */
