html,
body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
.page-wrapper {
  max-width: 100vw !important;
  width: 100vw !important;
  overflow-x: hidden !important;
}
.sfondo-container {
  max-width: 100% !important;
  overflow-x: hidden !important;
}
.main-journey {
  position: relative;
  top: 65px;
  left: 0;
  max-width: 100% !important;
  width: 100% !important;
  height: calc(100vh - 65px) !important;
  max-height: calc(100vh - 65px) !important;
  box-sizing: border-box !important;
  z-index: 10;
  border-radius: 0px !important;
  overflow-y: auto;
  overflow-x: hidden !important;
}
#mainIntestazioneContainer {
  top: 0px !important;
  border-radius: 0px !important;
}
#spiegazioneMain {
  border-radius: 0px !important;
}
/* Animazione per i blocchi interni della spiegazione-main */
.spiegazione-animata {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.spiegazione-animata.visible {
  opacity: 1;
  transform: translateY(0);
}

.come-funziona-titolo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px !important;
}
.benefits-section-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0px auto;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 40px;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
.benefits-section-title h1 {
  font-size: 2.5em;
  color: #181818;
  margin: 0px auto 40px auto !important;
}
.logo-titolo {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  max-width: 35% !important;
  width: 35% !important;
  margin-top: 0px;
}
.logo-titolo-due {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  max-width: 20% !important;
  margin: 0px auto 0px 10px !important;
  transform: translateY(9px);
}

/* Hero Background Section with Overlay */
.hero-background-section {
  position: relative;
  width: 100%;
  min-height: calc(100dvh - 65px) !important;
  max-height: calc(100dvh - 65px) !important;
  margin: 0px 0;
  padding: 0px;
  border-radius: 0px !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 0px !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0px !important;
}
.hero-logo-container {
  margin-top: 0px !important;
}

.hero-logo {
  height: 100px;
  min-height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  animation: logoFloat 3s ease-in-out infinite;
}

.hero-text h2 {
  color: black !important;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subtitle {
  color: black !important;
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 70vh !important;
  line-height: 1.6;
}

/* Side Elements */
.side-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.side-element {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.side-element.visible {
  opacity: 1;
  transform: translateX(0);
}

.side-element i {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #e60000;
  text-shadow: 0 0 10px rgba(230, 0, 0, 0.5);
}

.side-element span {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Position side elements */
.side-element-1 {
  top: 20%;
  left: 10%;
}

.side-element-2 {
  top: 40%;
  right: 10%;
  transform: translateX(50px);
}

.side-element-3 {
  top: 60%;
  left: 15%;
}

.side-element-4 {
  top: 80%;
  right: 15%;
  transform: translateX(50px);
}

/* Animations */
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Journey Navigation */
.spiegazione-main.come-funziona {
  overflow-y: hidden;
  padding-bottom: 0px !important;
  border-radius: 0px !important;
}
.journey-navigation-container {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
  min-height: 100%;
  position: relative;
  /*
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 160px;
  border-radius: 0px;
}
.journey-navigation {
  position: absolute;
  bottom: 59.5%;
  left: 0%;
  transform: translateY(50%) !important;
  width: auto;
  height: 78%;
  z-index: 10;
  margin-bottom: 0px;
  padding: 0px;
  gap: 0px;
  background-color: transparent;
  /*box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);*/
  border-radius: 0px 20px 20px 0px;
  filter: blur(0px) !important;
}
.journey-navigation-title {
  text-align: center;
}
.journey-navigation-title h2 {
  font-size: 3rem !important;
  font-weight: 600;
}

.journey-progress {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  flex: 1;
  box-sizing: border-box;
  padding: 5px;
  margin: 0 auto;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
}

.progress-bar {
  position: relative;
  width: 6px;
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
  background: rgba(197, 197, 197, 0.755);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  margin-left: 0px !important ;
  margin-right: auto !important ;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #e60000, #cc0000);
  border-radius: 2px;
  height: 2%;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-steps {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
  left: 0;
  margin-left: 0 !important;
  margin-right: auto !important;
  width: auto;
  padding: 15px 5px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e60000, #cc0000);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-left: 5px;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.step.active .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 0, 0, 0.4);
}

.step span {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Journey Steps */
.journey-step {
  position: relative;
  display: none;
  margin: 0px auto;
  max-width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  flex: 1;
}
.journey-step.step-1 {
  height: 60vh;
  max-height: 60vh;
  min-height: 60vh;
  display: block;
  background-color: #ffffff !important;
  /*border: 2px solid red;*/
}
.journey-step.step-2 {
  height: 60vh;
  max-height: 60vh;
  min-height: 60vh;
  display: block;
  /*border: 2px solid blue;*/
  background-color: #ffffff;
}
.journey-step.step-3 {
  height: 60vh;
  max-height: 60vh;
  min-height: 60vh;
  display: block;
  /*border: 2px solid green;

  background-color: #ffefef;*/
  background-color: #ffffff;
}
.journey-step.step-4 {
  height: 60vh;
  max-height: 60vh;
  min-height: 60vh;
  display: block;
  /*border: 2px solid yellow;*/
}

.journey-step.active {
  display: block;
}

.journey-step.step-content {
  max-width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0px;
}

.step-header {
  /*
  text-align: center;
  border-bottom: 5px solid #e60000;
  border-radius: 0px 0px 40px 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #ffffff !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  */

  position: absolute;
  top: 0%;
  left: 0%;
  flex-wrap: nowrap;
  padding: 0px 20px 0px 60px;
  box-sizing: border-box;
  border-radius: 0px 20px 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left !important;
  /*
  border-left: 10px solid #e60000;
  box-shadow: -20px 0 20px 0 rgba(0, 0, 0, 0.2); */
}

.step-2 .step-header {
  right: 0% !important;
  left: auto !important;
  width: auto !important;
  max-width: fit-content !important;
  padding-right: 60px !important;
}

.step-4 .step-header {
  right: 0% !important;
  left: auto !important;
  width: auto !important;
  max-width: fit-content !important;
  padding-right: 100px !important;
}

.step-title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  margin: 0px 0px 0px 0px !important;
}

/* Allineamento verticale perfetto per titolo e icona */

.step-title-container h2 {
  margin: 0;
  padding: 0;
  line-height: 1.2; /* Ripristina line-height normale */
  /* Rimuove spazi extra che potrebbero causare disallineamento */
  vertical-align: baseline;
  font-weight: 600 !important;
  z-index: 10;
}

/* Nascondi versione mobile su desktop */
.step-title-container .step-title-mobile {
  display: none !important;
}

/* Mostra versione desktop */
.step-title-container .step-title-desktop {
  display: block !important;
}

.step-title-container .step-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  /* Assicura che l'icona sia centrata perfettamente */
  margin: 0;
  padding: 0;
  /* Sposta l'icona verso il basso per centrarla con il titolo */
  transform: translateY(0em);
}

.step-icon {
  padding: 5px !important;
  border-radius: 50% !important;
  background: transparent;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 1/1 !important;
  margin-left: 0px !important;
}
.step-2 .step-icon {
  background: transparent !important;
}

.step-icon i {
  margin: 0 !important;
  padding: 0;
  font-size: 3rem;
  color: #e60000;
}

.step-header h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  margin: 0px 0px 0px 0px !important;
  white-space: nowrap;
}
.step-2 .step-header h2 {
  color: #000000;
  text-shadow: none;
}
/*
.step-1 .step-header h2 {
  color: #ffffff !important;
  text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}
*/
.step-4 .step-header h2 {
  color: #000000 !important;
  text-shadow: none !important;
}
.step-description {
  font-size: 1.3rem;
  color: #000000;
  max-width: 600px;
  text-align: left;
  white-space: nowrap;
  margin: 0px 0px 0px 0px !important;
  padding: 0px 0px 0px 0px;
}
.step-2 .step-description {
  color: #000000;
  text-shadow: none;
}
/*
.step-1 .step-description {
  color: #ffffff !important;
  text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}*/

.step-4 .step-description {
  color: #000000 !important;
  text-shadow: none !important;
}
/* Overlay per la schermata di discovery */
.discovery-grid-container-overlay {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0%;
  width: 40%;
  height: 90%;
  min-height: 90%;
  max-height: 90%;
  box-sizing: border-box !important;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  border-radius: 0px 20px 20px 0px;
  z-index: 10;
}
/* Discovery Grid */
.discovery-demo-image {
  max-width: 40%;
  min-width: 40%;
  min-height: 90%;
  max-height: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 20px 0px 0px 20px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%, 0%) !important;
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.241);*/
  transition:
    opacity 0s linear,
    transform 0s linear,
    visibility 0s linear 0s;
  opacity: 0;
  visibility: hidden;
  /*border: 1px solid #e7e7e7 !important;*/
}

.discovery-demo-image.active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0s linear,
    transform 0s linear,
    visibility 0s;
  transform: translateY(-50%) !important;
}

.discovery-demo-image.due.active {
  top: 50% !important;
  right: 0% !important;
  transform: translateY(-50%) !important;
}
.discovery-demo-image.tre.active {
  width: 40% !important;
  height: 90% !important;
  min-width: 40% !important;
  min-height: 90% !important;
  max-width: 40% !important;
  max-height: 90% !important;
  box-sizing: border-box !important;
  top: 50% !important;
  right: 0% !important;
  transform: translateY(-50%) !important;
}
.discovery-demo-image.uno {
  top: 50% !important;
  right: 0% !important;
  transform: translateY(-50%) !important;
}
.discovery-demo-image.due {
  right: 0% !important;
  transform: translateY(-50%) !important;
  top: 50% !important;
}

.discovery-demo-image.tre {
  right: 0% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  min-width: 100% !important;
  width: auto !important;
  height: auto !important;
  max-height: 100% !important;
  min-height: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.discovery-demo-image.quattro {
  right: 0% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  min-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  min-height: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  z-index: -10 !important;
}

.discovery-demo-image.uno.active {
  transform: translateY(-50%) !important;
}
.discovery-grid-container {
  position: absolute;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  min-height: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  top: 0%;
  left: 0%;
  transform: translateX(0%) !important;
  z-index: -10;
  background: #ffffff !important;
  border-radius: 0px;
}
.discovery-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 0px;
  min-width: 30%;
  max-width: 30%;
  position: absolute;
  /*
  left: 50%;
  transform: translateX(-50%);
  */
  top: 55%;
  transform: translateY(-50%) !important;
  left: 15%;
}

.discovery-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(215, 215, 215, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 15px;
  padding-right: 15px;
  /*
  position: absolute;
  top: 50%;
  */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  height: 10vh;
  position: relative;
  /*
  width: 30%;
  max-width: 30%;
  */
  box-sizing: border-box;
  transition:
    all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.discovery-card.uno {
  transition: all 0.5s ease !important;

  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.discovery-card.uno.active {
  transition: all 0.5s ease !important;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.discovery-card.uno.active.float-next {
  transition: all 0.5s ease !important;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.discovery-card.tre.active .discovery-card.uno {
  transition: all 0.5s ease !important;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.discovery-card.due.active .discovery-card.uno {
  transition: all 0.5s ease !important;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
/*
.discovery-card.uno {
  left: 15% !important;
  transform: translateX(-50%) !important;
}

.discovery-card.due {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.discovery-card.tre {
  right: 15% !important;
  transform: translateX(50%) !important;
}
*/
.discovery-card.active {
  height: 10vh !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box !important;
  /*box-shadow: 0 15px 40px rgba(29, 29, 29, 0.2);*/
  transition:
    all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Rimuovo il bordo superiore di default */

.discovery-card:hover {
  transform: translateY(-2px);
  scale: 1.01;
  transition: all 0.2s ease;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(244, 0, 0, 0.5),
    rgba(201, 0, 0, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.discovery-card.active .card-icon {
  background: linear-gradient(135deg, #e60000, #c60000);
}
.discovery-card.active .card-icon i {
  color: #ffffff;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px !important;
}

.card-icon i {
  font-size: 1.5rem;
  color: #e5e5e5;
}

.discovery-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #575757;
  margin: 0;
  transition: all 0.3s ease !important;
}

.discovery-card.active h3 {
  color: #000000 !important;
  transition: all 0.3s ease !important;
}
.discovery-card p {
  color: #000000;
  line-height: 1.3;
  font-size: 1.2rem;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    margin 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.discovery-card.active p {
  opacity: 1;
  max-height: 200px;
  display: block;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    margin 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.card-stats.discovery {
  display: none !important;
}
.card-stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e60000;
}
.discovery-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e60000;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Search Showcase */
.search-showcase {
  /*
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
  */
  position: relative;
  top: 0%;
  display: flex;
  min-width: 100%;
  max-width: 100%;
  left: 0%;
  z-index: 10;
  height: 60vh;
  min-height: 100%;
  max-height: 100%;
  box-sizing: border-box;
  flex: 1;
}

.search-grid-container-overlay {
  position: absolute;
  top: 60%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 72%;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 40px;
  z-index: -1;
}
.search-demo-image {
  max-width: 80%;
  min-width: 80%;
  height: 72%;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 60%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: -10;
  border-radius: 40px;
}

.search-demo {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.241);
  /* border: 2px solid #e60000;*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: fit-content;
  width: fit-content;
  flex-wrap: nowrap;
  max-width: fit-content;
  min-width: 0%;
  box-sizing: border-box;
  flex: 1;
  position: absolute;
  top: 10%;
  left: 2.5%;
}

.search-inputs {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.search-input {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.search-input:focus-within {
  border-color: #e60000;
  background: white;
}

.search-input i {
  color: #e60000;
  margin-right: 10px;
  font-size: 1.1rem;
}

.search-input input {
  border: none;
  background: none;
  outline: none;
  font-size: 1rem;
  color: #333;
  width: 100%;
}

.search-btn {
  background: linear-gradient(135deg, #e60000, #cc0000);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 0, 0, 0.3);
}

.search-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  padding: 40px;
  /* border: 2px solid #e60000;*/
  background-color: #ffffff;
  margin-right: 0px;
  margin-left: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.241);
  height: auto !important;
  max-height: fit-content !important;
  bottom: 0px !important;
  margin-bottom: 0px !important;
  margin-top: auto !important;
  position: absolute;
  bottom: 0%;
  right: 2.5%;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  height: fit-content;
  max-height: fit-content;
  box-sizing: border-box;
}

.feature-item i {
  color: #e60000;
  font-size: 1.2rem;
  margin-top: 0px;
}
.feature-text {
  height: fit-content;
  max-height: fit-content;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
  padding: 0px;
}

.feature-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-top: 0px;
  margin-bottom: 5px;
}

.feature-text p {
  margin-top: 0px;
  color: #666;
  line-height: 1.5;
}

/* Connection Flow */
.connection-flow {
  position: absolute;
  bottom: 0% !important;
  left: 50%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
  margin: 0px 0;
  padding: 0px 0px 0 0px;
  flex-wrap: nowrap;
}
.connection-flow-container {
  z-index: -10;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%) !important;
  min-height: 100%;
  max-height: 100%;
  min-width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0px;
}
.connection-flow-container-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90% !important;
  height: 89% !important;
  background: rgba(0, 0, 0, 0);
  border-radius: 40px;
  z-index: -1;
}

.connection-image-wrapper {
  width: 28%;
  height: 30vh;
  max-height: 30vh;
  min-height: 30vh;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.connection-image-wrapper.uno {
  left: 0%;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
.connection-image-wrapper.due {
  left: 50%;
  border-radius: 20px;
}
.connection-image-wrapper.tre {
  right: 0%;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}
.connection-demo-image {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border-radius: 0px;
  border: 1px solid #f9f9f9;
  z-index: 10;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.13);
  opacity: 1;
  filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.connection-demo-image.active {
  opacity: 1;
  filter: blur(0px);
}

.connection-demo-image.highlighted {
  scale: (1.05);
}
.connection-demo-image:hover {
  transition: all 0.3s ease;
} /*
.connection-demo-image.uno {
  left: 25%;
}
.connection-demo-image.due {
  left: 50%;
}
.connection-demo-image.tre {
  left: 75%;
}*/
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  gap: 0px;
  opacity: 1;
  filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  border-radius: 20px;
  width: 18vw;
  border: 1px solid rgba(255, 255, 255, 0.376);
  padding: 30px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.13);
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
}

.flow-step.active {
  opacity: 1;
  filter: blur(0px);
  background: blur(0px);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid rgba(255, 255, 255, 0.376);
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.13);
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
}

.flow-step.highlighted {
  transform: scale(1.05);
}

.flow-step:hover {
  transform: translateY(-5px);
}

.flow-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  color: #e60000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.flow-step.tre .flow-icon i {
  font-size: 2.8rem;
}
.flow-icon i {
  font-size: 2.2rem;
}

.flow-step:hover .flow-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.flow-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 5px 0;
}

.flow-content {
  margin: 0;
}

.flow-content p {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
}

.flow-arrow {
  color: #e60000;
  font-size: 3rem !important;
  animation: arrowPulse 2s ease-in-out infinite;
  opacity: 0.3;
  filter: blur(2px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.flow-arrow.active {
  opacity: 1;
  filter: blur(0px);
  animation: arrowPulse 2s ease-in-out infinite;
}

.flow-arrow.blinking {
  animation:
    arrowPulse 2s ease-in-out infinite,
    arrowBlink 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@keyframes arrowBlink {
  0%,
  100% {
    opacity: 1.2;
    color: #e60000;
  }
  50% {
    opacity: 0.9;
    color: #ff3333;
  }
}

/* Communication Tools */
.communication-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.tool-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 0, 0, 0.1);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(230, 0, 0, 0.15);
}

.tool-card i {
  font-size: 2rem;
  color: #e60000;
  margin-bottom: 15px;
}

.tool-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.tool-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Experience Highlights */
.experience-highlights {
  position: absolute;
  bottom: 0%;
  right: 0%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px !important;
  min-width: 40vw;
  width: 40vw;
  max-width: 40vw;
  min-height: 75%;
  max-height: 75%;
}

.highlight-card {
  min-height: 10vh !important;
  max-height: 10vh !important;
  background: white;
  border-radius: 20px;
  padding: 15px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(235, 0, 0, 0.103) !important;
  min-width: 25vw !important;
  width: 25vw !important;
  max-width: 25vw !important;
  gap: 15px !important;
  left: 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  z-index: 10000;
  cursor: pointer;
}
.highlight-card.uno {
  position: absolute;
  top: 0% !important;
  margin-top: 0px !important;
}
.highlight-card.due {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
}
.highlight-card.tre {
  position: absolute;
  bottom: 0%;
}
.highlight-card:hover {
  transform: translateY(-2px) !important;
  rotate: 2deg;
  border: 1px solid rgb(235, 0, 0);
  transition: all 0.3s ease !important;
}
.highlight-card.due:hover {
  transform: translateY(calc(-50% - 2px)) !important;
}

/* Stili per le card attive */
.highlight-card.active {
  border: 2px solid rgb(235, 0, 0) !important;
  box-shadow: 0 15px 40px rgba(235, 0, 0, 0.2) !important;
  transition:
    rotate 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.1s ease !important;
}

.highlight-card.due.active {
  transform: translateY(-50%) !important;
}

.highlight-card.due.active:hover {
  transform: translateY(calc(-50% - 2px)) !important;
}

.experience-image-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  left: 0%;
  min-height: 90%;
  max-height: 90%;
  max-width: 47.5%;
  min-width: 47.5%;
  overflow: hidden;
  border-radius: 0px 40px 40px 0px;
}

.experience-image {
  border-radius: 20px;
  position: absolute;
  max-width: 100%;
  min-width: 100%;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0px !important;
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}
.experience-image.heart {
  border-radius: 0px 40px 40px 0px !important;
  display: none;
  bottom: -20% !important;
}
.experience-image.heart.active {
  border-radius: 0px 40px 40px 0px !important;
}
.experience-image.star {
  border-radius: 0px 40px 40px 0px !important;
  display: none;
  min-height: 100% !important;
  min-width: 100% !important;
  width: auto;
}
.experience-image.star.active {
  border-radius: 0px 40px 40px 0px !important;
}
.experience-image.bell {
  border-radius: 0px 40px 40px 0px !important;
  min-height: 100% !important;
  min-width: 120% !important;
  width: auto;
  display: none;
}
.experience-image.bell.active {
  border-radius: 0px 40px 40px 0px !important;
}
/*
.experience-image.heart {
  bottom: 0% !important;
  max-width: 100% !important;
  display: none;
}
.experience-image.heart-due {
  top: 0%;
  display: none;
}
.experience-image.star {
  top: 10% !important;
  max-width: 70% !important;
  border-radius: 10px !important;
  display: none;
}
.experience-image.bell {
  display: none;
  top: 0% !important;
  max-height: 100% !important;
  max-width: 60% !important;
}*/

/* Stili per le immagini attive */
.experience-image.active {
  display: block !important;
  transform: translateX(-50%);
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}

.experience-image.heart.active,
.experience-image.heart-due.active {
  display: block !important;
  transform: translateX(-50%);
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}

/* Animazione di uscita verso destra */
.experience-image.exit-right {
  transform: translateX(-150%) !important;
  opacity: 0;
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}

/* Animazione di entrata da destra */
.experience-image.enter-right {
  transform: translateX(-150%);
  opacity: 0;
}

.experience-image.enter-right.active {
  transform: translateX(-50%);
  opacity: 1;
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
}

.highlight-icon {
  padding: 15px !important;
  aspect-ratio: 1/1 !important;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(230, 0, 0, 0.1),
    rgba(204, 0, 0, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.8rem;
  color: #e60000;
}

/* Contenitore per testo (h3 + p) */
.highlight-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.highlight-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0 !important;
  text-align: left;
}

.highlight-card p {
  color: #666;
  line-height: 1.4;
  margin: 0 !important;
  text-align: left;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
  padding: 40px 0;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonials-title .star-icon {
  font-size: 1.8rem;
  color: #ffd700;
  animation: pulse 2s infinite;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-content {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-info h4 {
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 2px 0;
}

.testimonial-info p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 30px 0;
  }

  .testimonials-title {
    font-size: 1.8rem;
  }

  .testimonials-subtitle {
    font-size: 0.9rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
  }

  .testimonial-card {
    padding: 16px;
  }

  .testimonials-header {
    margin-bottom: 20px;
  }
}

/* Call to Action */
.main-cta-container {
  margin: 0 !important;
  height: calc(100dvh - 65px) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d1b1b 25%,
    #3d1f1f 50%,
    #2d1b1b 75%,
    #1a1a1a 100%
  );
}

/* Sfondo dinamico con particelle */
.main-cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(230, 0, 0, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(204, 0, 0, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 51, 51, 0.2) 0%,
      transparent 50%
    );
  animation: backgroundPulse 8s ease-in-out infinite;
  z-index: 1;
}

/* Particelle fluttuanti */
.main-cta-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(230, 0, 0, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 51, 51, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(204, 0, 0, 0.9), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(230, 0, 0, 0.7), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 51, 51, 0.5), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleFloat 20s linear infinite;
  z-index: 1;
}

/* Messaggio "VIAGGIO" dinamico */
.cta-journey-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 15vw, 20rem);
  font-weight: 900;
  color: rgba(230, 0, 0, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
  z-index: 1;
  pointer-events: none;
  animation: journeyMessageFloat 12s ease-in-out infinite;
  text-shadow:
    0 0 20px rgba(230, 0, 0, 0.3),
    0 0 40px rgba(230, 0, 0, 0.2),
    0 0 60px rgba(230, 0, 0, 0.1);
}

/* Effetto onde di energia */
.cta-energy-waves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.cta-energy-waves::before,
.cta-energy-waves::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(230, 0, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: energyWave 6s ease-out infinite;
}

.cta-energy-waves::after {
  width: 500px;
  height: 500px;
  animation-delay: 2s;
  border-color: rgba(255, 51, 51, 0.2);
}

/* Animazioni */
@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-5px);
  }
  75% {
    transform: translateY(-30px) translateX(15px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes journeyMessageFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.08;
  }
  25% {
    transform: translate(-50%, -50%) scale(1.02) rotate(0.5deg);
    opacity: 0.12;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
    opacity: 0.15;
  }
  75% {
    transform: translate(-50%, -50%) scale(1.02) rotate(-0.5deg);
    opacity: 0.12;
  }
}

@keyframes energyWave {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* ===== NUOVA SEZIONE CTA INNOVATIVA ===== */

/* Container principale */
.hero-cta-container {
  position: relative;
  min-height: calc(100vh - 65px);
  max-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffffff 25%,
    #ffffff 50%,
    #ffffff 75%,
    #ffffff 100%
  );
  overflow: hidden;
  padding: 0px 20px;
}

/* Sfondo con onde morbide */
.cta-geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse 800px 400px at 20% 30%,
      rgba(230, 0, 0, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 600px 300px at 80% 70%,
      rgba(255, 51, 51, 0.015) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 400px 200px at 50% 20%,
      rgba(230, 0, 0, 0.01) 0%,
      transparent 50%
    );
  animation: gentleFloat 30s ease-in-out infinite;
  z-index: 1;
}

/* Particelle fluttuanti */
.cta-floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(230, 0, 0, 0.4), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255, 51, 51, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 51, 51, 0.5), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(230, 0, 0, 0.4), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleDrift 25s linear infinite;
  z-index: 1;
}

/* Container principale del contenuto */
.hero-cta-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Sezione testo */
.cta-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  height: 100%;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(230, 0, 0, 0.2),
    rgba(255, 51, 51, 0.1)
  );
  border: 1px solid rgba(230, 0, 0, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  color: #e60000;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  width: fit-content;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .cta-badge {
  animation: badgePulse 3s ease-in-out infinite;
}

.cta-badge i {
  font-size: 1.1rem;
}

/* Titolo principale */
.cta-hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin: 60px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.title-line-1 {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideIn 1s ease-out 0.2s both;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .title-line-1 {
  animation-play-state: running;
}

.title-line-2 {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideIn 1s ease-out 0.4s both;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .title-line-2 {
  animation-play-state: running;
}

.title-line-3 {
  background: linear-gradient(135deg, #e60000 0%, #ff3333 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideIn 1s ease-out 0.6s both;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .title-line-3 {
  animation-play-state: running;
}

/* Descrizione */
.cta-hero-description {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(44, 44, 44, 0.8);
  margin: 40px 0px 0px 0px;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.8s both;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .cta-hero-description {
  animation-play-state: running;
}

/* Griglia statistiche */
.cta-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: cardFloat 1s ease-out both;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .stat-card {
  animation-play-state: running;
}

.stat-card:nth-child(1) {
  animation-delay: 1s;
}
.stat-card:nth-child(2) {
  animation-delay: 1.2s;
}
.stat-card:nth-child(3) {
  animation-delay: 1.4s;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 0, 0, 0.3);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e60000, #ff3333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 1.2rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgb(44, 44, 44);
  line-height: 1;
}

.cta-stat-label {
  font-size: 0.9rem;
  color: rgb(44, 44, 44);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sezione azioni */
.cta-actions-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-actions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Bottoni azione */
.cta-primary-action,
.cta-secondary-action,
.cta-tertiary-action {
  min-width: 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
}

.cta-primary-action {
  background: linear-gradient(135deg, #e60000, #cc0000);
  color: white;
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
  animation: actionSlideIn 1s ease-out 1.6s both;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .cta-primary-action {
  animation-play-state: running;
}

.cta-secondary-action {
  background: rgba(255, 255, 255, 0.1);
  color: #e60000;
  border-color: rgba(179, 179, 179, 0.804);

  animation: actionSlideIn 1s ease-out 1.8s both;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .cta-secondary-action {
  animation-play-state: running;
}

.cta-tertiary-action {
  background: rgba(230, 0, 0, 0.1);
  color: #e60000;
  border-color: rgba(230, 0, 0, 0.3);
  animation: actionSlideIn 1s ease-out 2s both;
  animation-play-state: paused;
}

.hero-cta-container.animations-active .cta-tertiary-action {
  animation-play-state: running;
}

.cta-primary-action:hover,
.cta-secondary-action:hover,
.cta-tertiary-action:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(230, 0, 0, 0.4);
}

.action-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.action-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.action-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.action-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  font-weight: 400;
}

.action-arrow {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.cta-primary-action:hover .action-arrow,
.cta-secondary-action:hover .action-arrow,
.cta-tertiary-action:hover .action-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* Elementi decorativi */
.cta-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.decorative-circle {
  position: absolute;
  border: 2px solid rgba(230, 0, 0, 0.1);
  border-radius: 50%;
  animation: circleFloat 15s ease-in-out infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 5s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 30%;
  animation-delay: 10s;
}

/* Animazioni */
@keyframes gentleFloat {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(10px) translateY(-5px) scale(1.05);
    opacity: 0.5;
  }
}

@keyframes particleDrift {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-30px) translateX(20px);
  }
  50% {
    transform: translateY(-15px) translateX(-10px);
  }
  75% {
    transform: translateY(-40px) translateX(25px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(230, 0, 0, 0);
  }
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloat {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes actionSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes circleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-cta-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .cta-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat-card {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .hero-cta-container {
    padding: 60px 15px;
  }

  .cta-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cta-actions-container {
    gap: 12px;
  }

  .cta-primary-action,
  .cta-secondary-action,
  .cta-tertiary-action {
    padding: 20px 24px;
    gap: 16px;
  }

  .action-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .action-title {
    font-size: 1rem;
  }

  .action-subtitle {
    font-size: 0.85rem;
  }
}
.journey-cta {
  width: 50% !important;
  max-width: 50% !important;
  background: transparent;
  border-radius: 100px;
  padding: 60px 40px !important;
  position: relative;
  z-index: 10;
  /*
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    */
  text-align: center;
  margin: -50px auto 0 auto !important;
  max-width: 60% !important;
  color: white;
  overflow: hidden;
}

.journey-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-text p {
  font-size: 1.6rem;
  opacity: 0.9;
  margin-bottom: 40px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.cta-btn.primary {
  background: white;
  color: #e60000;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: white !important;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .journey-progress {
    flex-direction: column;
    gap: 15px;
  }

  .progress-bar {
    width: 200px;
    height: 4px;
  }

  .progress-fill {
    width: 5%;
    height: 100%;
    bottom: auto;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #e60000, #cc0000);
  }

  .journey-steps {
    flex-direction: row;
    gap: 20px;
    height: auto;
  }

  .step {
    flex-direction: column;
    gap: 5px;
  }

  .step-number {
    margin-bottom: 5px;
  }

  .search-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .connection-flow {
    flex-direction: column;
    gap: 20px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-stats {
    gap: 20px;
  }

  .step-header h2 {
    font-size: 2rem;
  }

  .discovery-grid,
  .communication-tools,
  .experience-highlights,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .journey-cta {
    padding: 40px 20px;
  }

  .cta-text h2 {
    font-size: 2rem;
  }

  .step-header h2 {
    font-size: 1.8rem;
  }

  .discovery-card,
  .tool-card,
  .highlight-card,
  .testimonial-card {
    padding: 20px;
  }
}

/* Hero Section with WOW Effect */

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1) saturate(0.8);
  transition: filter 0.8s ease;
}

@keyframes heroImageZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  padding: 0 20px;
  animation: heroContentFadeIn 1.5s ease-out;
}

@keyframes heroContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo-container {
  margin-bottom: 0px;
  animation: logoFloat 3s ease-in-out infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: black !important;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 80% !important;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-line {
  display: block;
  opacity: 0.9;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #e60000, #ff3333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(230, 0, 0, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(230, 0, 0, 0.8));
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: black !important;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: black !important;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: featureSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-feature:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-feature:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-feature:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes featureSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-feature:hover {
  background: rgba(230, 0, 0, 0.2);
  border-color: rgba(230, 0, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 0, 0, 0.3);
}

.hero-feature i {
  font-size: 1.2rem;
  color: #e60000;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e60000;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
  opacity: 0;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.floating-1 {
  top: 20%;
  left: 10%;
  animation-delay: 1.2s;
}

.floating-2 {
  top: 30%;
  right: 15%;
  animation-delay: 1.4s;
}

.floating-3 {
  top: 60%;
  left: 5%;
  animation-delay: 1.6s;
}

.floating-4 {
  top: 70%;
  right: 10%;
  animation-delay: 1.8s;
}

.floating-5 {
  top: 40%;
  left: 20%;
  animation-delay: 2s;
}

.floating-6 {
  top: 50%;
  right: 25%;
  animation-delay: 2.2s;
}

@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  80% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0.7;
    transform: translateY(-20px) scale(1.1);
  }
}

/* Modern Scroll Indicator */
.scroll-indicator {
  margin-top: 0px !important;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: black !important;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(230, 0, 0, 0.8);
  font-size: 1rem;
  animation: arrowBounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.scroll-arrow i {
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.5));
}

@keyframes arrowBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.scroll-indicator span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

/* Removed the underline animation - no longer needed */

/* Hero Section with Modern Design */

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1) saturate(0.8);
  transition: filter 0.8s ease;
}

.hero-content {
  text-align: center;
  max-width: 100%;
  padding: 0 40px;
  padding-bottom: 0px !important;
  opacity: 0;
  transform: translateY(20px);
  animation: heroContentFadeIn 1.2s ease-out 0.3s forwards;
}

@keyframes heroContentFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo-container {
  margin-bottom: 0px;
}

.hero-logo {
  height: 60px;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 300;
  color: black !important;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
  opacity: 0.9;
  font-weight: 300;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #e60000, #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: black !important;
  margin-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: black !important;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.hero-feature:nth-child(1) {
  animation: featureSlideIn 0.6s ease-out 0.8s forwards;
}
.hero-feature:nth-child(2) {
  animation: featureSlideIn 0.6s ease-out 1s forwards;
}
.hero-feature:nth-child(3) {
  animation: featureSlideIn 0.6s ease-out 1.2s forwards;
}

@keyframes featureSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-feature:hover {
  background: rgba(230, 0, 0, 0.1);
  border-color: rgba(230, 0, 0, 0.3);
  transform: translateY(-2px);
}

.hero-feature i {
  font-size: 1rem;
  color: #e60000;
  opacity: 0.9;
}

.mission-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px 40px 0px;
  width: 100%;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  margin: -50px auto 0 auto;
  border-radius: 40px 40px 0px 0px;
  box-shadow: 0px 0px 30px rgba(36, 36, 36, 0.255);
}

.mission-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mission-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(80, 80, 80, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(80, 80, 80, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(80, 80, 80, 0.05) 0%,
      transparent 50%
    );
  animation: missionParticles 20s ease-in-out infinite;
}

@keyframes missionParticles {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.6;
  }
}

.mission-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(80, 80, 80, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: missionGlow 8s ease-in-out infinite;
}

@keyframes missionGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

.mission-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.mission-header {
  margin-top: 50px;
  margin-bottom: 50px;
  animation: missionHeaderFadeIn 1.5s ease-out;
}

@keyframes missionHeaderFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e60000, #ff4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 20px 40px rgba(230, 0, 0, 0.3);
  animation: missionIconPulse 3s ease-in-out infinite;
}

@keyframes missionIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(230, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 30px 60px rgba(230, 0, 0, 0.5);
  }
}

.mission-icon i {
  font-size: 2rem;
  color: white;
}

.mission-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mission-title::after {
  content: "\f135";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff0202, #c80000);
  text-shadow: 5px 5px 20px rgba(217, 217, 217, 0.117);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rocketPulse 2s ease-in-out infinite;
}

.mission-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 100%;
  width: 100%;
  min-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230, 0, 0, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.mission-card:hover::before {
  left: 100%;
}

.mission-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 20px 40px rgba(230, 0, 0, 0.2);
}

.mission-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e60000, #ff4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-card-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 30px rgba(230, 0, 0, 0.4);
}

.mission-card-icon i {
  font-size: 1.8rem;
  color: white;
}

.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.mission-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.mission-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #e60000 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mission-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-vision {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0px 50px 50px 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 80% !important;
  margin-left: auto;
  margin-right: auto;
}

.mission-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-vision:hover::before {
  opacity: 1;
}

.vision-content {
  position: relative;
  z-index: 2;
}

.vision-content h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

.vision-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vision-highlight {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #e60000, #ff4444);
  padding: 15px 30px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.vision-text-desktop {
  display: inline;
}

.vision-text-mobile {
  display: none;
}

.vision-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(230, 0, 0, 0.4);
}

.vision-highlight i {
  font-size: 1.2rem;
  animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design for Mission Section */
@media (max-width: 768px) {
  .mission-title {
    font-size: 2.5rem;
  }

  .mission-subtitle {
    font-size: 1.1rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-card {
    padding: 30px 20px;
  }

  .mission-vision {
    padding: 30px 20px;
  }

  .vision-content h3 {
    font-size: 1.5rem;
    color: white !important;
  }

  .vision-content p {
    font-size: 1rem;
  }

  .vision-highlight {
    flex-direction: row;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mission-title {
    font-size: 2rem;
  }

  .mission-icon {
    width: 60px;
    height: 60px;
  }

  .mission-icon i {
    font-size: 1.5rem;
  }

  .mission-card-icon {
    width: 50px;
    height: 50px;
  }

  .mission-card-icon i {
    font-size: 1.3rem;
  }
}

.mission-path-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 60px 0;
  perspective: 1000px;
}

.mission-path {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mission-path-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: pathDraw 3s ease-out forwards;
  transition: stroke 0.5s ease;
}

@keyframes pathDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.gradient-start {
  stop-color: rgba(255, 255, 255, 0.3);
  stop-opacity: 1;
}

.gradient-end {
  stop-color: rgba(255, 255, 255, 1);
  stop-opacity: 1;
}

.path-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  animation: pathProgress 4s ease-out forwards;
  z-index: 2;
}

@keyframes pathProgress {
  0% {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.mission-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.mission-card-3d {
  position: absolute;
  width: 280px;
  height: 200px;
  transform-style: preserve-3d;
  opacity: 0;
  animation: cardFloat 0.8s ease-out forwards;
}

.card-1 {
  top: 20%;
  left: 15%;
  animation-delay: 1s;
}

.card-2 {
  top: 60%;
  left: 45%;
  animation-delay: 2s;
}

.card-3 {
  top: 20%;
  left: 75%;
  animation-delay: 3s;
}

@keyframes cardFloat {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(45deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

.card-3d-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateZ(20px);
  transition: all 0.4s ease;
  z-index: 2;
}

.mission-card-3d:hover .card-3d-content {
  transform: translateZ(40px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.card-3d-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.mission-card-3d:hover .card-3d-glow {
  opacity: 1;
  animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.card-3d-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e60000, #ff4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.mission-card-3d:hover .card-3d-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 10px 20px rgba(230, 0, 0, 0.4);
}

.card-3d-icon i {
  font-size: 1.3rem;
  color: white;
}

.card-3d-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.card-3d-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.card-3d-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e60000;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-path-container-vertical {
  position: relative;
  width: 400px;
  max-width: 100vw;
  height: 1200px;
  margin: 60px auto;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-path-vertical {
  position: relative;
  width: 400px;
  height: 100%;
  transform-style: preserve-3d;
}

.path-svg-vertical {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  z-index: 1;
}

.mission-path-line-vertical {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: pathDrawVertical 3s ease-out forwards;
  transition: stroke 0.5s ease;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 3;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

@keyframes pathDrawVertical {
  to {
    stroke-dashoffset: 0;
  }
}

.gradient-start {
  stop-color: rgba(255, 255, 255, 0.3);
  stop-opacity: 1;
}

.gradient-end {
  stop-color: rgba(255, 255, 255, 1);
  stop-opacity: 1;
}

.path-progress-vertical {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.path-progress-vertical path {
  stroke: white;
  stroke-width: 3;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  transition: stroke-dashoffset 0.1s ease;
}

.mission-cards-vertical {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.mission-card-3d-vertical {
  position: absolute;
  width: 320px;
  height: 240px;
  transform-style: preserve-3d;
  opacity: 0;
  pointer-events: auto;
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.card-1-vertical.left {
  top: 310px;
  left: -340px;
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.card-new-vertical.right {
  top: 80px;
  left: 370px;
  animation: slideInFromRight 0.8s ease-out forwards;
}

.card-2-vertical.right {
  top: 610px;
  left: 370px;
  animation: slideInFromRight 0.8s ease-out forwards;
}

.card-3-vertical.left {
  top: 880px;
  left: -340px;
  animation: slideInFromLeft 0.8s ease-out forwards;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.card-3d-content-vertical {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 15px 25px 25px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateZ(20px);
  transition: all 0.4s ease;
  z-index: 2;
  gap: 0px;
}

.mission-card-3d-vertical:hover .card-3d-content-vertical {
  transform: translateZ(40px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.card-3d-glow-vertical {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.mission-card-3d-vertical:hover .card-3d-glow-vertical {
  opacity: 1;
  animation: cardGlowVertical 2s ease-in-out infinite;
}

@keyframes cardGlowVertical {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.card-3d-icon-vertical {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e60000, #ff4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0px auto;
  transition: all 0.3s ease;
}

.mission-card-3d-vertical:hover .card-3d-icon-vertical {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 10px 20px rgba(230, 0, 0, 0.4);
}

.card-3d-icon-vertical i {
  font-size: 1.3rem;
  color: white;
}

.card-3d-content-vertical h3 {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0px;
}

.card-3d-content-vertical p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  font-size: 1.1rem;
  max-width: 80%;
}

.card-3d-stats-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.card-3d-stats-vertical .mission-stat-number {
  font-size: 1.4rem !important;
}
@media (max-width: 900px) {
  .mission-path-container-vertical,
  .mission-path-vertical,
  .path-svg-vertical,
  .mission-cards-vertical {
    width: 100vw;
    min-width: 0;
    left: 0;
  }
  .mission-card-3d-vertical {
    width: 90vw;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
  }
  .card-1-vertical,
  .card-2-vertical,
  .card-3-vertical {
    left: 0 !important;
  }
}

.vision-title {
  font-size: 2rem;
  color: white !important;
}

.mission-title-white {
  color: white !important;
}
/* --- Sezione Sponsor/Ads --- */
.main-ad-container {
  background-color: #f6f6f6;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0px 150px 0px 150px;
}
.ad-section {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 30px 0px 30px 0px;
  margin: 0 auto 0px auto;
  overflow: hidden;
}
.ad-carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  animation: ad-scroll 32s linear infinite;
  width: max-content;
}
.ad-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
  padding: 12px 24px 10px 24px;
  min-width: 200px;
  max-width: 200px;
  min-height: 140px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  opacity: 1;
}
.ad-card:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 4px 18px rgba(179, 0, 0, 0.13);
  opacity: 1;
}
.ad-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: grayscale(0.2) contrast(1.1);
}
.ad-card span {
  font-size: 1em;
  color: #b30000;
  font-weight: 600;
  text-align: center;
}
@keyframes ad-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 700px) {
  .ad-section {
    padding: 10px 0 10px 0;
    max-width: 98vw;
  }
  .ad-card {
    min-width: 80px;
    max-width: 100px;
    padding: 8px 10px 8px 10px;
  }
  .ad-card img {
    width: 38px;
    height: 38px;
  }
}
/* --- Sezione Recensioni Clienti --- */
.main-recensioni-container {
  margin-top: 60px;
  margin-bottom: 0px;
  padding-bottom: 40px !important;
  border-radius: 0px;
  min-height: 60vh;
  max-height: 60vh;
  display: flex;
  flex-direction: column;
  /*
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.203);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.203); */
}

.main-recensioni-container.due {
  margin-top: 0px;
  min-height: 50vh;
  max-height: 50vh;
}
.recensioni-section {
  background-color: rgba(255, 255, 255, 0.942);
  margin: 0px auto 0px auto !important;
  backdrop-filter: blur(20px);
  border-radius: 0px;
  flex: 1;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.recensioni-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;
  z-index: 1;
}

.recensioni-header {
  text-align: center;
  margin-bottom: 10px;
  padding-left: 40px;
  position: relative;
  z-index: 2;
}

.recensioni-title-container {
  display: flex;
  width: auto;
  max-width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 80px auto 20px 40px;
  text-align: left;
}

.main-recensioni-container.due .recensioni-title-container {
  margin-top: 40px !important;
}

.recensioni-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e60000, #b00000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  box-shadow: 0 3px 15px rgba(230, 0, 0, 0.3);
  animation: recensioniIconPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

.recensioni-icon i {
  font-size: 1.5rem;
  color: white;
}

@keyframes recensioniIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(230, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(230, 0, 0, 0.4);
  }
}

.recensioni-text-container {
  width: auto;
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0px;
  flex: 1;
  border-left: 5px solid #d415155f;
  padding-left: 20px;
}

.recensioni-title {
  font-size: 2rem;
  text-align: left;
  width: auto;
  max-width: fit-content;
  font-weight: 700;
  color: black;
  margin: 0;
  letter-spacing: 1px;
}

.recensioni-subtitle {
  width: auto;
  max-width: fit-content;
  font-size: 1.4rem;
  color: rgb(72, 72, 72);
  font-weight: 400;
  max-width: 800px;
  margin: 10px 0 0 0;
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.recensioni-carousel {
  margin: 30px auto;
  padding-top: 20px !important;
  padding-bottom: 30px !important;
  display: flex;
  max-width: 100%;
  box-sizing: border-box;
  flex-direction: row;
  gap: 15px;
  scroll-snap-type: x mandatory;
  padding: 10px;
  scrollbar-width: none; /* Nasconde la scrollbar su Firefox */
  -ms-overflow-style: none; /* Nasconde la scrollbar su IE/Edge */
  position: relative;
  border-radius: 0px;
  overflow: auto !important;
}

.main-recensioni-container.due .recensioni-carousel {
  margin-bottom: 0px !important;
}
.recensione-card {
  min-width: 320px;
  max-width: 350px;
  min-height: 180px;
  max-height: 180px;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 28px 25px 22px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  scroll-snap-align: start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.recensione-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.02), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.recensione-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 5px 20px rgba(30, 30, 30, 0.15);
  border-color: rgba(230, 0, 0, 0.749);
}

.recensione-card:hover::before {
  opacity: 1;
}

.recensione-rating {
  color: #ffb400;
  font-size: 1.3em;
  margin-bottom: 12px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.recensione-testo {
  font-size: 1.05em !important;
  color: #333;
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.recensione-autore {
  font-size: 0.95em;
  color: #e60000;
  font-weight: 600;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}

.recensioni-carousel::-webkit-scrollbar {
  display: none; /* Nasconde la scrollbar su WebKit browsers */
}

@media (max-width: 700px) {
  .recensioni-section {
    padding: 30px 20px 25px 20px;
    border-radius: 20px;
  }

  .recensioni-title-container {
    margin: 40px auto 15px auto !important;
    gap: 10px;
  }

  .recensioni-icon {
    width: 40px;
    height: 40px;
  }

  .recensioni-icon i {
    font-size: 1.2rem;
  }

  .recensioni-title {
    font-size: 1.8rem;
  }

  .recensioni-subtitle {
    font-size: 0.9rem;
  }

  .recensione-card {
    min-width: 85vw;
    max-width: 90vw;
    padding: 22px 18px 18px 18px;
  }
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-features {
    gap: 20px;
  }

  .hero-feature {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .hero-logo {
    height: 50px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .scroll-indicator {
    bottom: 30px;
    font-size: 0.75rem;
  }

  .scroll-arrow {
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .scroll-indicator {
    bottom: 60px;
    font-size: 0.75rem;
  }

  .scroll-arrow {
    width: 18px;
    height: 18px;
    font-size: 0.8rem;
  }

  .scroll-indicator span {
    font-size: 0.7rem;
  }
}

/* Hero Highlight Styles */
.hero-highlight {
  color: #e60000;
  font-weight: 400;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #e60000, #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}
/* ===== SEZIONE CTA MINIMALISTA ===== */

/* Container principale */
.minimal-cta-container {
  background: #ffffff;
  height: 45vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Contenuto */
.minimal-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Sezione testo */
.minimal-cta-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.minimal-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}

.minimal-cta-description {
  font-size: 1.4rem;
  color: rgba(44, 44, 44, 0.7);
  margin: 0;
  line-height: 1.5;
  max-width: 400px;
  font-weight: 400;
  margin: 0 auto;
}

/* Sezione azioni */
.minimal-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Bottoni */
.minimal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 160px;
  justify-content: center;
}

.minimal-btn-primary {
  background: #e60000;
  color: white;
  border-color: #e60000;
}

.minimal-btn-primary:hover {
  background: #cc0000;
  border-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.3);
}

.minimal-btn-secondary {
  background: white;
  color: #e60000;
  border-color: #e60000;
}

.minimal-btn-secondary:hover {
  background: #e60000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.2);
}

.minimal-btn-accent {
  background: rgba(230, 0, 0, 0.1);
  color: #e60000;
  border-color: rgba(230, 0, 0, 0.3);
}

.minimal-btn-accent:hover {
  background: rgba(230, 0, 0, 0.2);
  border-color: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.15);
}

.minimal-cta-btn i {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .minimal-cta-container {
    padding: 40px 15px;
    margin-bottom: 80px !important;
  }

  .minimal-cta-content {
    gap: 10px !important;
  }

  .minimal-cta-title {
    font-size: 1.6rem;
  }

  .minimal-cta-description {
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
  }

  .minimal-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .minimal-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}
