```
Poi ricordati di tornare in Elementor, cliccare sulla **sezione della navbar** → **Avanzate → Classe CSS** e scrivere:
```
/* Navbar hover link */
nav ul li a:hover {
  color: #D4541A !important;
}

/* Hover bottone Contattami */
nav ul li:last-child a:hover {
  background: #D4541A !important;
  color: #F5F4F0 !important;
}

/* Compensa navbar fissa */
#hero {
  padding-top: 80px;
}

/* Animazione entrata hero */
.hero-sezione .elementor-col-50:first-child {
  animation: fadeInLeft 0.8s ease forwards;
}
.hero-sezione .elementor-col-50:last-child {
  animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
/* About sezione */
.about-sezione {
  overflow: hidden;
}

/* Altezza minima colonna destra */
.about-sezione .elementor-col-50:last-child {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Servizi hover */
.servizio-card {
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.servizio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: #D4541A;
  transition: width 0.4s ease;
}
.servizio-card:hover {
  background: #0a0a0a !important;
}
.servizio-card:hover h3 {
  color: #F5F4F0 !important;
}
.servizio-card:hover p {
  color: rgba(245,244,240,0.6) !important;
}
.servizio-card:hover span {
  border-color: rgba(245,244,240,0.2) !important;
  color: rgba(245,244,240,0.5) !important;
}
.servizio-card:hover::after {
  width: 100%;
}
/* Metodo sezione */
.metodo-sezione {
  overflow: hidden;
}

/* Hover sui singoli step */
.metodo-sezione .elementor-widget-html:last-child > div > div {
  transition: background 0.3s ease;
}
.metodo-sezione .elementor-widget-html:last-child > div > div:hover h3 {
  color: #D4541A !important;
}
/* CTA hover bottone */
#cta-band a:hover {
  opacity: 0.85 !important;
}

/* Hover bottone CTA */
.cta-band a:hover {
  background: #0a0a0a !important;
	/* Footer sfondo nero */
.site-footer {
  background: #0a0a0a !important;
  padding: 64px 80px 32px !important;
}

/* Logo testuale */
.site-footer .site-branding .site-title a {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #F5F4F0 !important;
  text-decoration: none !important;
}

/* Punto arancione dopo il nome */
.site-footer .site-branding .site-title a::after {
  content: '.';
  color: #D4541A;
}

/* Motto */
.site-footer .site-branding .site-description {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: rgba(245,244,240,0.35) !important;
  margin-top: 4px !important;
}

/* Link menu footer */
.site-footer .footer-navigation a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: rgba(245,244,240,0.5) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

/* Hover link menu footer */
.site-footer .footer-navigation a:hover {
  color: #D4541A !important;
}

/* Linea separatrice */
.site-footer .site-info {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  padding-top: 24px !important;
  margin-top: 48px !important;
}

/* Copyright */
.site-footer .site-info,
.site-footer .site-info a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 300 !important;
  color: rgba(245,244,240,0.25) !important;
  text-decoration: none !important;
}
/* Ridimensiona logo footer */
.site-footer .site-branding img {
  max-width: 150px !important;
  width: 150px !important;
  height: auto !important;
}
	.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
	/* Footer link hover */

}
/* Footer link hover */
footer a:hover,
.footer-sezione a:hover {
  color: #D4541A !important;
  transition: color 0.2s ease !important;
}
/* Servizi — 3 colonne desktop, 1 colonna mobile */
.servizi-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .servizi-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Portfolio card hover */
.portfolio-card {
  transition: background 0.3s ease;
}
.portfolio-card:hover {
  background: #f7f6f2 !important;
}

/* Competenze hover */
.competenze-grid > div {
  transition: border-color 0.3s ease;
}
.competenze-grid > div:hover {
  border-bottom: 3px solid #D4541A !important;
}

/* Responsive pagine interne */
@media (max-width: 768px) {
  .competenze-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* Stile form WPForms */
.wpforms-container input,
.wpforms-container textarea,
.wpforms-container select {
  border: 1px solid rgba(0,0,0,0.12) !important;
  border-radius: 0 !important;
  padding: 0.9rem 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  color: #0a0a0a !important;
  background: white !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
}
.wpforms-container input:focus,
.wpforms-container textarea:focus {
  border-color: #D4541A !important;
  outline: none !important;
}
.wpforms-container textarea {
  min-height: 160px !important;
  resize: vertical !important;
}
.wpforms-container label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #888 !important;
  margin-bottom: 0.4rem !important;
}
.wpforms-container .wpforms-submit {
  background: #0a0a0a !important;
  color: #F5F4F0 !important;
  border: none !important;
  padding: 0.9rem 2rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: background 0.2s !important;
}
.wpforms-container .wpforms-submit:hover {
  background: #D4541A !important;
}
/* Competenze grid */
.competenze-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.competenza-card {
  background: #0a0a0a;
  padding: 2rem 1.5rem;
  transition: background 0.3s ease;
}

.competenza-card:hover {
  background: #111111 !important;
}

/* Tablet — 2 colonne */
@media (max-width: 900px) {
  .competenze-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile — 1 colonna */
@media (max-width: 480px) {
  .competenze-grid {
    grid-template-columns: 1fr !important;
  }
}
/* === 4 Step Grid === */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.step-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.step-item--first {
  padding-left: 0;
}
.step-item--last {
  padding-right: 0;
  border-right: none;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: #D4541A;
  display: block;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #F5F4F0;
  margin-bottom: 0.8rem;
}
.step-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245,244,240,0.5);
}

/* Tablet: 2 colonne */
@media (max-width: 768px) {
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-item--first {
    padding-left: 0;
  }
  .step-item--last {
    padding-right: 2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .step-item:nth-child(2) {
    border-right: none;
  }
  .step-item:nth-child(4) {
    border-right: none;
  }
}

/* Mobile: 1 colonna, più leggibile */
@media (max-width: 480px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
  .step-item,
  .step-item--first,
  .step-item--last {
    padding: 2.5rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .step-item:last-child {
    border-bottom: none;
  }
  .step-number {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
  }
  .step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .step-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245,244,240,0.65);
  }
}
/* === Footer === */
.ddm-footer {
  background: #0a0a0a;
  color: #F5F4F0;
  padding: 4rem 8vw 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 2rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
}
.social-icon:hover {
  background: #D4541A;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-nav a:hover {
  color: #D4541A;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  gap: 0.5rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.footer-legal a:hover {
  color: #D4541A;
}

/* Footer responsive - Tablet */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Footer responsive - Mobile */
@media (max-width: 480px) {
  .ddm-footer {
    padding: 3rem 6vw 1.5rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav a {
    font-size: 0.85rem;
  }
  .footer-bottom {
    font-size: 0.7rem;
    text-align: center;
    align-items: center;
  }
}
/* Fix footer tagliato in Home */
.elementor-page .elementor-section,
.elementor-page .elementor-widget,
.elementor-page .elementor-widget-wrap,
.elementor-page .elementor-element,
.elementor-page .elementor-container {
  overflow: visible !important;
}
.elementor-page .elementor-section:last-child {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}
/* === Sezione Servizi === */
.servizio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}
.servizio-testo {
  padding: 8vw;
}
.servizio-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.servizio-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #D4541A;
  margin-bottom: 1rem;
}
.servizio-titolo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.15;
  margin-bottom: 1.8rem;
}
.servizio-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.servizio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.15);
  color: #888;
}
.servizio-cta {
  background: #D4541A;
  color: #F5F4F0;
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-block;
}
.servizio-cta:hover {
  background: #b84615;
}
.servizio-include {
  background: #0a0a0a;
  padding: 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.include-box {
  border-left: 3px solid #D4541A;
  padding-left: 1.5rem;
}
.include-titolo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: #F5F4F0;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.include-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
}
.include-lista li {
  font-size: 0.9rem;
  color: rgba(245,244,240,0.6);
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
}
.freccia {
  position: absolute;
  left: 0;
  color: #D4541A;
}
.servizi-cta-finale {
  padding: 7vw 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
  gap: 2rem;
  background: #F5F4F0;
}

/* === Servizi Responsive - Tablet === */
@media (max-width: 768px) {
  .servizio-row,
  .servizio-row.servizio-row--invertito {
    grid-template-columns: 1fr;
  }
  /* Su mobile il testo va sempre prima, poi "Cosa include" */
  .servizio-row--invertito .servizio-testo {
    order: 1;
  }
  .servizio-row--invertito .servizio-include {
    order: 2;
  }
  .servizio-testo {
    padding: 10vw 8vw;
  }
  .servizio-include {
    padding: 10vw 8vw;
  }
  .servizi-cta-finale {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* === Servizi Responsive - Mobile === */
@media (max-width: 480px) {
  .servizio-testo {
    padding: 12vw 6vw;
  }
  .servizio-include {
    padding: 10vw 6vw;
  }
  .servizio-num {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .servizio-titolo {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
  .servizio-desc {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .tag {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
  }
  .servizio-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.85rem;
  }
  .include-lista li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .servizi-cta-finale {
    padding: 10vw 6vw;
  }
}
/* ==============================
   NAV RESPONSIVE
   ============================== */
.ddm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 5vw;
  background: #F5F4F0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ddm-nav-logo {
  text-decoration: none;
  flex-shrink: 0;
}
.ddm-nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ddm-nav-menu li a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  text-decoration: none;
}
.ddm-nav-menu li a:hover {
  color: #D4541A;
}
.nav-cta {
  color: #F5F4F0 !important;
  background: #0a0a0a;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
}
.nav-cta:hover {
  background: #D4541A !important;
}

/* Hamburger - nascosto su desktop */
.ddm-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  flex-direction: column;
  gap: 5px;
}
.ddm-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a0a0a;
  transition: all 0.3s ease;
}
.ddm-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ddm-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.ddm-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav responsive - Mobile */
@media (max-width: 768px) {
  .ddm-hamburger {
    display: flex;
  }
  .ddm-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F5F4F0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 100;
  }
  .ddm-nav-menu.open {
    display: flex;
  }
  .ddm-nav-menu li a {
    font-size: 1.2rem;
  }
  .nav-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem !important;
  }
}


/* ==============================
   PAGINA CONTATTAMI RESPONSIVE
   ============================== */
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contatti-info {
  background: white;
  padding: 8vw;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contatti-form {
  background: #F5F4F0;
  padding: 8vw;
}
.contatti-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #D4541A;
  margin-bottom: 1.5rem;
}
.contatti-canali {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contatto-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contatto-icona {
  width: 40px;
  height: 40px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contatto-tipo {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.3rem;
}
.contatto-valore {
  font-size: 1rem;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 400;
}
a.contatto-valore:hover {
  color: #D4541A;
}
.contatti-box-cta {
  background: #F5F4F0;
  padding: 2rem;
  border-left: 3px solid #D4541A;
}

/* Contattami responsive - Tablet */
@media (max-width: 768px) {
  .contatti-grid {
    grid-template-columns: 1fr;
  }
  .contatti-info {
    padding: 10vw 8vw;
  }
  .contatti-form {
    padding: 10vw 8vw;
  }
  .contatti-box-cta p {
    font-size: 1rem;
  }
}

/* Contattami responsive - Mobile */
@media (max-width: 480px) {
  .contatti-info {
    padding: 10vw 6vw;
    gap: 2rem;
  }
  .contatti-form {
    padding: 10vw 6vw;
  }
  .contatto-valore {
    font-size: 0.9rem;
    word-break: break-word;
  }
  .contatti-box-cta {
    padding: 1.5rem;
  }
}
/* ==============================
   PAGINA CHI SONO - RESPONSIVE
   ============================== */

/* Hero */
.chisono-hero {
  background: #0a0a0a;
  padding: 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.chisono-foto-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.chisono-foto-cerchio {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(212,84,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.chisono-foto-inner {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1a1a;
}

/* Bio */
.chisono-bio {
  padding: 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

/* Competenze */
.competenze-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.competenza-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

/* CTA Finale */
.chisono-cta-finale {
  padding: 7vw 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
  gap: 2rem;
  background: #F5F4F0;
}

/* === Tablet === */
@media (max-width: 768px) {
  .chisono-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .chisono-foto-wrap {
    justify-content: center;
  }
  .chisono-foto-cerchio {
    width: 260px;
    height: 260px;
  }
  .chisono-foto-inner {
    width: 210px;
    height: 210px;
  }
  .chisono-hero p {
    max-width: 100%;
  }
  .chisono-bio {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .competenze-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chisono-cta-finale {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* === Mobile === */
@media (max-width: 480px) {
  .chisono-hero {
    padding: 12vw 6vw;
  }
  .chisono-foto-cerchio {
    width: 220px;
    height: 220px;
  }
  .chisono-foto-inner {
    width: 180px;
    height: 180px;
  }
  .chisono-bio {
    padding: 10vw 6vw;
  }
  .competenze-grid {
    grid-template-columns: 1fr;
  }
  .competenza-card {
    padding: 1.5rem 1rem;
  }
  .chisono-cta-finale {
    padding: 10vw 6vw;
  }
}
/* Footer full width fix */
.ddm-footer {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  box-sizing: border-box !important;
}

/* Payoff nav */
.ddm-nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-decoration: none;
}
.ddm-nav-logo img {
  height: 50px !important;
  width: auto !important;
  object-fit: contain;
}
.ddm-nav-payoff {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 400;
  color: #D4541A;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 0.5rem;
}
@media (min-width: 1025px) {
  .hero-foto {
    bottom: 359px !important;
  }
}
@media (max-width: 767px) {
  .hero-foto {
    height: 65vh !important;
    flex: none !important;
  }
}
@media (max-width: 767px) {
  .ddm-nav-payoff {
    display: none !important;
  }
}
@media (max-width:767px) {
  .spirale-servizi { display:none !important; }
}
.elementor-1438 .e-con.e-parent {
  margin-block-start: 0 !important;
  margin-top: 0 !important;
}
body {
  overflow-x: hidden;
}

