.elementor-1743 .elementor-element.elementor-element-ca90a40{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:150px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1743 .elementor-element.elementor-element-e0ccf0f{width:var( --container-widget-width, 95% );max-width:95%;--container-widget-width:95%;--container-widget-flex-grow:0;}.elementor-1743 .elementor-element.elementor-element-6c14d8c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1743 .elementor-element.elementor-element-59af723{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-1743 .elementor-element.elementor-element-e0ccf0f{width:100%;max-width:100%;}.elementor-1743 .elementor-element.elementor-element-e0ccf0f.elementor-element{--align-self:center;}}/* Start custom CSS *//* Stili per l'intero container con tema viola */
.creative-exchange-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

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

.hero-intro.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

/* Titoli in viola */
.main-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.1;
  text-align: center;
  color: #5d3be8; /* Viola principale */
}

.subtitle {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
  text-align: center;
  color: #5d3be8; /* Viola principale */
}

.description {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.badge-container {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.badge-highlight {
  display: inline-block;
  background-color: #5d3be8; /* Viola principale */
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin: 0 8px;
}

.badge-highlight.special {
  background-color: #3bbd9e; /* Turchese/verde come accent */
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px !important; /* Importante per forzare la rotondità */
  text-decoration: none;
  transition: all 0.3s ease;
}

.button-primary {
  background-color: #5d3be8; /* Viola principale */
  color: white !important;
  border: none;
}

.button-primary:hover {
  background-color: #4a2fd6; /* Viola più scuro all'hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(93, 59, 232, 0.3);
}

.button-secondary {
  background-color: rgba(93, 59, 232, 0.1); /* Viola molto chiaro */
  color: #5d3be8 !important; /* Testo viola */
  border: 1px solid rgba(93, 59, 232, 0.3);
}

.button-secondary:hover {
  background-color: rgba(93, 59, 232, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(93, 59, 232, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-left: 3px solid #5d3be8; /* Bordo viola all'hover */
}

.feature-icon {
  font-size: 28px;
  color: #5d3be8; /* Icone viola */
}

.feature-content h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #5d3be8; /* Titolo viola */
}

.feature-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

.section-container {
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #5d3be8; /* Titolo viola */
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.5;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 10px;
  border-left: 3px solid transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-left: 3px solid #5d3be8; /* Bordo viola all'hover */
}

.step-number {
  width: 40px;
  height: 40px;
  background: #5d3be8; /* Viola solido invece di gradiente */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.step-content h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #5d3be8; /* Titolo viola */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .buttons-container.centered {
    flex-direction: column;
    align-items: center;
  }
  
  .button {
    width: 100%;
    justify-content: center;
  }
  
  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main-title {
    font-size: 36px;
  }
  
  .subtitle {
    font-size: 22px;
  }
}

/* Stili aggiuntivi necessari */
.advantages-grid .feature-item {
  flex-direction: column;
  align-items: flex-start;
}

.advantages-grid .feature-icon {
  margin-bottom: 15px;
  font-size: 32px;
  color: #5d3be8; /* Icone viola */
}

.advantages-grid ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
  font-size: 14px;
}

.advantages-grid li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.scenarios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.scenario-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  border-left: 3px solid transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-left: 3px solid #5d3be8; /* Bordo viola all'hover */
}

.scenario-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.scenario-icon {
  font-size: 28px;
  color: #5d3be8; /* Icone viola */
}

.scenario-header h3 {
  color: #5d3be8; /* Titolo viola */
}

.scenario-timing, .scenario-benefits {
  margin-bottom: 20px;
}

.timing-row, .benefit-row {
  margin-bottom: 15px;
}

.timing-badge, .benefit-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

.timing-badge.client {
  background-color: #5d3be8; /* Viola principale */
  color: white;
}

.timing-badge.exchange {
  background-color: #3bbd9e; /* Turchese/verde come accent */
  color: white;
}

.benefit-badge {
  background-color: #f0b400; /* Mantenuto giallo/arancio */
  color: #333;
}

.luna-dolph-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.luna-dolph-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.luna-dolph-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(93, 59, 232, 0.15); /* Ombra viola */
}

.luna-dolph-content {
  flex: 1;
  min-width: 300px;
}

.luna-dolph-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.quote {
  font-style: italic;
  padding: 20px;
  border-left: 4px solid #5d3be8; /* Bordo viola */
  background-color: rgba(93, 59, 232, 0.05); /* Sfondo viola chiaro */
  margin: 20px 0;
  border-radius: 0 10px 10px 0;
  font-size: 18px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  border-left: 3px solid transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-left: 3px solid #5d3be8; /* Bordo viola all'hover */
}

.faq-question {
  font-size: 18px;
  margin-bottom: 10px;
  color: #5d3be8; /* Titolo viola */
  font-weight: 600;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

.cta-section {
  background-color: rgba(93, 59, 232, 0.05); /* Sfondo viola chiaro */
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(93, 59, 232, 0.1); /* Bordo viola chiaro */
}

.footer-note {
  margin-top: 40px;
  font-size: 14px;
  color: #718096;
  text-align: center;
}

@media (max-width: 768px) {
  .luna-dolph-container {
    flex-direction: column;
  }
  
  .scenarios-container {
    grid-template-columns: 1fr;
  }
}

/* Stili per la sezione Vantaggi Specifici - Mobile Friendly */
.vantaggi-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 100%;
  padding: 20px 15px;
  color: #333;
  margin-bottom: 40px;
}

.vantaggi-header {
  text-align: center;
  margin-bottom: 25px;
}

.vantaggi-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #5d3be8;
}

.vantaggi-header p {
  font-size: 16px;
  color: #666;
  margin: 0 auto;
}

/* Stili per i tab */
.vantaggi-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.vantaggi-tab {
  background-color: #f5f7fa;
  color: #555;
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  font-weight: 600;
  flex: 1;
  min-width: 70px;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.vantaggi-tab.active {
  background-color: #5d3be8;
  color: white;
  box-shadow: 0 4px 8px rgba(93,59,232,0.2);
  transform: translateY(-2px);
  border-color: #5d3be8;
}

/* Stili per le card */
.vantaggi-cards-container {
  max-width: 500px;
  margin: 0 auto;
}

.vantaggi-card {
  display: none;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

.vantaggi-card.active {
  display: block;
}

.vantaggi-card-header {
  background-color: #4e5761;
  color: white;
  padding: 18px 15px;
  text-align: center;
}

.vantaggi-card-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.vantaggi-card-header p {
  font-size: 15px;
  margin: 0;
  opacity: 0.9;
}

.vantaggi-card-content {
  padding: 15px;
}

.vantaggi-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.vantaggi-list li {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.vantaggi-list li:last-child {
  border-bottom: none;
}

.vantaggi-icon {
  color: #5d3be8;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #f3f0ff;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.vantaggi-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

.vantaggi-text strong {
  color: #333;
}

.vantaggi-cta {
  text-align: center;
  margin-bottom: 15px;
}

.vantaggi-button {
  display: inline-block;
  background-color: #5d3be8;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.vantaggi-button:hover {
  background-color: #4c31c2;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(93,59,232,0.2);
}

.vantaggi-footer {
  text-align: center;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  padding: 0 5px;
}

/* Responsive su tablet e desktop */
@media (min-width: 768px) {
  .vantaggi-tabs {
    gap: 15px;
  }
  
  .vantaggi-tab {
    padding: 15px;
    font-size: 15px;
  }
  
  .vantaggi-card-header h3 {
    font-size: 22px;
  }
  
  .vantaggi-text {
    font-size: 15px;
  }
  
  .vantaggi-button {
    font-size: 16px;
  }
  
  .vantaggi-footer {
    font-size: 14px;
  }
}

/* Menu Mobile Fullscreen */
.tholus-mobile-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2000;
  flex-direction: column;
  justify-content: space-between;
}

.tholus-mobile-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #5d3be8;
  border-radius: 3px;
  opacity: 1;
  transition: transform 0.3s ease, top 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
}

.tholus-mobile-toggle span:nth-child(1) {
  top: 5px;
}

.tholus-mobile-toggle span:nth-child(2) {
  top: 13px;
}

.tholus-mobile-toggle span:nth-child(3) {
  top: 21px;
}

.tholus-mobile-toggle.active span {
  transition: transform 0.3s ease 0.3s, top 0.3s ease, opacity 0.3s ease;
}

.tholus-mobile-toggle.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.tholus-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.tholus-mobile-toggle.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* Mobile Overlay */
.tholus-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0f1b;
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.tholus-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.tholus-mobile-overlay-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.2) 0%, rgba(59, 189, 158, 0.2) 100%);
  z-index: 1;
}

.overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="5" cy="5" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 40px 40px;
  opacity: 0.6;
  z-index: 2;
}

.tholus-mobile-overlay-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  min-height: 100%;
}

.tholus-mobile-overlay-header {
  padding: 20px 10px 40px;
  text-align: center;
}

.mobile-overlay-logo {
  height: 40px;
  width: auto;
}

/* Pulsante di chiusura esplicito */
.tholus-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: all 0.3s ease;
}

.tholus-mobile-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.close-icon:before,
.close-icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 0;
}

.close-icon:before {
  transform: rotate(45deg);
}

.close-icon:after {
  transform: rotate(-45deg);
}

/* Animazione di entrata per il pulsante di chiusura */
.tholus-mobile-overlay.active .tholus-mobile-close {
  animation: fadeRotateIn 0.5s ease forwards;
}

@keyframes fadeRotateIn {
  from {
    opacity: 0;
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

/* Mobile Navigation */
.tholus-mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-nav-primary {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(93, 59, 232, 0.3);
}

.mobile-nav-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(93, 59, 232, 0.2) 0%, rgba(59, 189, 158, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 22px;
  color: #5d3be8;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mobile-nav-item:hover .mobile-nav-icon {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  transform: scale(1.1);
}

.mobile-nav-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.mobile-nav-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-nav-item:hover .mobile-nav-arrow {
  color: white;
  transform: translateX(5px);
}

/* Secondary Navigation */
.mobile-nav-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5d3be8, #3bbd9e);
  transition: width 0.3s ease;
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-nav-link:hover:before {
  width: 100%;
}

/* ===== BARRA DI NAVIGAZIONE ===== */
.tholus-navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.tholus-navbar-container.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tholus-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.tholus-logo {
  flex: 0 0 auto;
}

.tholus-logo-image {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.scrolled .tholus-logo-image {
  height: 35px;
}

.tholus-main-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.tholus-menu-items {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.tholus-menu-item {
  position: relative;
}

.tholus-menu-item a {
  display: inline-block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border-radius: 20px;
}

.tholus-menu-item a:hover {
  color: #5d3be8;
  background-color: rgba(93, 59, 232, 0.05);
}

.tholus-menu-item.current-menu-item a {
  color: #5d3be8;
  background-color: rgba(93, 59, 232, 0.08);
}

.cta-menu-item a {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  padding: 8px 20px;
}

.cta-menu-item a:hover {
  background: linear-gradient(135deg, #4a2fd6 0%, #2a9c80 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 59, 232, 0.2);
}

/* ===== TICKER SCORREVOLE ===== */
.tholus-ticker-container {
  background-color: #1a1a1a;
  overflow: hidden;
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.tholus-ticker-content {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.tholus-ticker-text {
  color: white;
  font-weight: 600;
  margin-right: 30px;
  flex-shrink: 0;
  padding-left: 30px;
}

.tholus-ticker-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.tholus-ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.tholus-ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.tholus-ticker-logo {
  height: 25px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.tholus-ticker-logo:hover {
  opacity: 1;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Media Queries per Responsività */
@media (max-width: 992px) {
  .tholus-navbar-content {
    padding: 12px 20px;
  }
  
  .tholus-menu-item a {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .tholus-mobile-toggle {
    display: flex;
  }
  
  .tholus-main-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
  }
  
  .tholus-main-menu.active {
    display: block;
  }
  
  .tholus-menu-items {
    flex-direction: column;
    gap: 15px;
  }
  
  .tholus-menu-item {
    width: 100%;
    text-align: center;
  }
  
  .tholus-menu-item a {
    display: block;
    padding: 12px;
  }
  
  .tholus-ticker-text {
    display: none;
  }
  
  .tholus-ticker-container {
    padding: 10px 0;
  }
  
  .tholus-ticker-logo {
    height: 20px;
  }
  
  .tholus-ticker-item {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .tholus-logo-image {
    height: 30px;
  }
  
  .tholus-navbar-content {
    padding: 10px 15px;
  }
  
  .tholus-ticker-item {
    padding: 0 10px;
  }
  
  .tholus-ticker-logo {
    height: 18px;
  }
  
  .tholus-mobile-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}




/* CTA “Contattaci Ora” nell’overlay mobile */
.mobile-nav-cta-wrapper {
  text-align: center;
  margin-top: auto;
  padding: 20px 0 30px;
}
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  padding: 16px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(93, 59, 232, 0.3);
}
.mobile-nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(93, 59, 232, 0.4);
}
.mobile-nav-cta i {
  transition: transform 0.3s ease;
}
.mobile-nav-cta:hover i {
  transform: translateX(5px);
}

/* Footer dell’overlay mobile */
.tholus-mobile-overlay-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-overlay-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.mobile-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}
.mobile-social-icon:hover {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  transform: translateY(-3px);
}
.mobile-overlay-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mobile-overlay-info a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}
.mobile-overlay-info a:hover {
  color: white;
}

/* Mobile-specific tweaks */
@media (max-width: 480px) {
  .mobile-nav-cta {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
  }
}

/* ===== Mobile-specific tweaks per i pulsanti principali ===== */
@media (max-width: 768px) {
  /* riduci padding dei box principali */
  .mobile-nav-item {
    padding: 15px;
  }
  /* icone più piccole */
  .mobile-nav-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 15px;
  }
  /* titoli e descrizioni ridimensionati */
  .mobile-nav-title {
    font-size: 16px;
  }
  .mobile-nav-desc {
    font-size: 13px;
  }
  /* spacing delle voci secondarie */
  .mobile-nav-secondary {
    gap: 20px;
  }
  .mobile-nav-link {
    font-size: 14px;
  }
  /* CTA in basso già aggiustata ma assicuriamoci */
  .mobile-nav-cta {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
}

/* ancora più stretti su telefoni molto piccoli */
@media (max-width: 480px) {
  .mobile-nav-item {
    padding: 12px;
  }
  .mobile-nav-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-right: 12px;
  }
  .mobile-nav-title {
    font-size: 15px;
  }
  .mobile-nav-desc {
    font-size: 12px;
  }
  .mobile-nav-link {
    font-size: 13px;
  }
  .mobile-nav-secondary {
    gap: 15px;
  }
}

/* Banner Pre-Footer */
.tholus-prefooter {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.tholus-prefooter:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="3" cy="3" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: -1;
}

.tholus-prefooter-dots {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0,0 L20,20 L40,0" stroke="rgba(255,255,255,0.2)" stroke-width="1" fill="none"/></svg>');
  background-size: 40px 40px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.tholus-prefooter-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tholus-prefooter-text {
  flex: 1;
  color: white;
  padding-right: 40px;
}

.tholus-prefooter-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tholus-prefooter-text p {
  font-size: 18px;
  opacity: 0.9;
}

.tholus-prefooter-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  color: #5d3be8;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tholus-prefooter-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-main {
  font-size: 18px;
}

.cta-sub {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 3px;
}

/* Footer Principale */
.tholus-footer {
  background-color: #131523;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 20px 0;
  position: relative;
}

.tholus-footer-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.tholus-footer-column {
  flex: 1;
  min-width: 250px;
}

.brand-column {
  flex: 1.5;
}

.tholus-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

.tholus-footer-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.tholus-social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icon:hover {
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  transform: translateY(-3px);
}

.tholus-footer-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.tholus-footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #5d3be8, #3bbd9e);
  border-radius: 3px;
}

.tholus-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tholus-footer-links li {
  margin-bottom: 12px;
}

.tholus-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.tholus-footer-links a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #5d3be8;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.tholus-footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.tholus-footer-links a:hover:before {
  background-color: #3bbd9e;
}

.tholus-footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #5d3be8;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.contact-link {
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: #3bbd9e;
}

.contact-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Form di contatto */
.tholus-footer-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group textarea {
  height: 80px;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 15px;
  top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left top;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
  border-color: #5d3be8;
  background-color: rgba(255, 255, 255, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-20px) scale(0.85);
  color: #3bbd9e;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.tholus-footer-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tholus-footer-submit:hover {
  box-shadow: 0 5px 15px rgba(93, 59, 232, 0.3);
  transform: translateY(-2px);
}

.tholus-footer-submit i {
  transition: all 0.3s ease;
}

.tholus-footer-submit:hover i {
  transform: translateX(3px);
}

/* Newsletter */
.tholus-newsletter {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}

.newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  font-size: 14px;
}

.newsletter-form button {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5d3be8 0%, #3bbd9e 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #4a2fd6 0%, #2a9c80 100%);
}

/* Bottom Footer */
.tholus-footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tholus-footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tholus-footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.tholus-footer-copyright a {
  color: #3bbd9e;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tholus-footer-copyright a:hover {
  color: white;
}

.tholus-footer-links-bottom {
  display: flex;
  gap: 20px;
}

.tholus-footer-links-bottom a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tholus-footer-links-bottom a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .tholus-prefooter-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .tholus-prefooter-text {
    padding-right: 0;
  }
  
  .tholus-footer-column {
    flex: 1 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .tholus-prefooter {
    padding: 40px 20px;
  }
  
  .tholus-prefooter-text h2 {
    font-size: 26px;
  }
  
  .tholus-prefooter-text p {
    font-size: 16px;
  }
  
  .tholus-footer {
    padding: 50px 20px 0;
  }
  
  .tholus-footer-content {
    gap: 30px;
  }
  
  .tholus-footer-column {
    flex: 1 0 100%;
  }
  
  .tholus-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .tholus-footer-links-bottom {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .tholus-prefooter-text h2 {
    font-size: 22px;
  }
  
  .tholus-prefooter-text p {
    font-size: 15px;
  }
  
  .tholus-prefooter-cta {
    width: 100%;
  }
  
  .tholus-footer-title {
    font-size: 18px;
  }
  
  .tholus-footer-links-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* Compatibilità Contact Form 7 con stile TholusDome */
.wpcf7 {
    margin: 0 !important;
    padding: 0 !important;
}

.wpcf7 .tholus-footer-form {
    margin-bottom: 30px;
}

.wpcf7 .form-group {
    margin-bottom: 15px;
    position: relative;
}

.wpcf7 .custom-input,
.wpcf7 .custom-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wpcf7 .custom-textarea {
    height: 80px;
    resize: none;
}

.wpcf7 .form-group label {
    position: absolute;
    left: 15px;
    top: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
    transform-origin: left top;
}

.wpcf7 .form-group .custom-input:focus,
.wpcf7 .form-group .custom-textarea:focus,
.wpcf7 .form-group .custom-input:not(:placeholder-shown),
.wpcf7 .form-group .custom-textarea:not(:placeholder-shown) {
    border-color: #5d3be8;
    background-color: rgba(255, 255, 255, 0.1);
}

.wpcf7 .form-group .custom-input:focus + label,
.wpcf7 .form-group .custom-textarea:focus + label,
.wpcf7 .form-group .custom-input:not(:placeholder-shown) + label,
.wpcf7 .form-group .custom-textarea:not(:placeholder-shown) + label {
    transform: translateY(-20px) scale(0.85);
    color: #3bbd9e;
}

.wpcf7 .form-group .custom-input::placeholder,
.wpcf7 .form-group .custom-textarea::placeholder {
    color: transparent;
}

.wpcf7 .ajax-loader {
    position: absolute !important;
    margin: 0 !important;
    right: 10px;
}

/* Nasconde i messaggi di errore predefiniti di CF7 */
.wpcf7 .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 5px;
}

.wpcf7 .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px !important;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}/* End custom CSS */