/* ==========================================================================
   Vertical Landing Pages – layout coerente con Unlimited
   ========================================================================== */

/* Sovrascrive lo sfondo globale "hero-background" con un dark premium */
body.sviluppo-software-page::before,
body.sviluppo-siti-web-page::before,
body.automazioni-marketing-page::before,
body.email-marketing-page::before,
body.whatsapp-marketing-page::before,
body.perche-non-arrivano-clienti-page::before,
body.perche-il-sito-non-genera-contatti-page::before,
body.perche-le-ads-non-funzionano-page::before,
body.come-trovare-clienti-online-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #000000;
}

.vertical-landing-main {
  padding-bottom: 3rem;
}

.vertical-landing-hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.8rem 1.5rem 2.2rem;
}

.vertical-landing-hero-inner {
  max-width: 1120px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vertical-landing-title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.05rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

.vertical-landing-subtitle {
  margin: 0 auto;
  max-width: 70ch;
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(229, 231, 235, 0.95);
}

/* Blocco hero ad alto impatto + micro-hook tra sezioni (landing /perche-*) */
.vertical-landing-main .pattern-break {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  font-size: clamp(0.82rem, 2.2vw, 1.02rem);
  color: rgba(229, 231, 235, 0.98);
}

.vertical-landing-main .micro-break {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  font-size: 0.95rem;
  color: rgba(229, 231, 235, 0.98);
}

.vertical-landing-cta .micro-break.vertical-landing-cta-text {
  font-size: 1.02rem;
  letter-spacing: 0.09em;
  margin-top: 0.65rem;
  margin-bottom: 1.35rem;
}

.vertical-landing-hero-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.vertical-landing-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.95);
  background: linear-gradient(
    120deg,
    rgba(56, 189, 248, 0.95),
    rgba(99, 102, 241, 0.92),
    rgba(236, 72, 153, 0.88)
  );
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.86rem;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    filter 0.2s ease;
}

.vertical-landing-hero-link:hover,
.vertical-landing-hero-link:focus-visible {
  border-color: rgba(96, 165, 250, 1);
  filter: saturate(1.1) brightness(1.02);
  transform: translateY(-1px);
}

.vertical-landing-hero-link--secondary {
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(148, 163, 184, 0.6);
}

.vertical-landing-section {
  padding: 3.4rem 0;
}

.vertical-landing-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vertical-landing-h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: left;
}

.vertical-landing-h3 {
  margin: 0 0 0.55rem;
  font-size: 1.03rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.vertical-landing-container p {
  color: rgba(229, 231, 235, 0.95);
  line-height: 1.8;
  font-size: 1.02rem;
}

.vertical-landing-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.vertical-landing-bullet {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
}

.vertical-landing-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
  color: rgba(229, 231, 235, 0.95);
  line-height: 1.7;
  font-size: 1.02rem;
}

.vertical-landing-inline-links {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.vertical-landing-inline-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vertical-landing-inline-link:hover,
.vertical-landing-inline-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vertical-landing-inline-divider {
  color: rgba(148, 163, 184, 0.8);
}

.vertical-landing-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.vertical-landing-step {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  padding: 1.25rem 1.2rem;
}

.vertical-landing-cta {
  background: rgba(15, 23, 42, 0.55);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.vertical-landing-cta-text {
  margin: 0 0 1.25rem;
  color: rgba(229, 231, 235, 0.95);
  line-height: 1.8;
  font-size: 1.02rem;
}

.vertical-landing-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.vertical-landing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.98rem 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.95);
  background: linear-gradient(
    120deg,
    rgba(56, 189, 248, 0.95),
    rgba(99, 102, 241, 0.92),
    rgba(236, 72, 153, 0.88)
  );
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.86rem;
  white-space: nowrap;
}

.vertical-landing-cta-button--secondary {
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(148, 163, 184, 0.6);
}

.vertical-landing-cta-fineprint {
  margin: 1rem 0 0;
  color: rgba(229, 231, 235, 0.78);
  font-size: 0.93rem;
  line-height: 1.7;
}

.vertical-landing-cta-fineprint a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.vertical-landing-cta-fineprint a:hover,
.vertical-landing-cta-fineprint a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .vertical-landing-bullets {
    grid-template-columns: 1fr;
  }
  .vertical-landing-steps {
    grid-template-columns: 1fr;
  }
  .vertical-landing-h2 {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .vertical-landing-hero {
    padding-top: 2.1rem;
  }
  .vertical-landing-title {
    letter-spacing: 0.15em;
  }
  .vertical-landing-hero-links {
    gap: 0.75rem;
  }
  .vertical-landing-hero-link,
  .vertical-landing-cta-button {
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* Landing /perche-non-arrivano-clienti: testo e liste centrati */
body.perche-non-arrivano-clienti-page .vertical-landing-container {
  text-align: center;
}

body.perche-non-arrivano-clienti-page .vertical-landing-h2 {
  text-align: center;
}

body.perche-non-arrivano-clienti-page .vertical-landing-list {
  list-style-position: inside;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

body.perche-non-arrivano-clienti-page .vertical-landing-cta-row {
  justify-content: center;
}

body.perche-non-arrivano-clienti-page .vertical-landing-hero-inner .breadcrumb ol {
  justify-content: center;
}

/* Testo pagina in bianco puro (#FFFFFF) */
body.perche-non-arrivano-clienti-page .vertical-landing-main,
body.perche-non-arrivano-clienti-page .vertical-landing-main p,
body.perche-non-arrivano-clienti-page .vertical-landing-main li,
body.perche-non-arrivano-clienti-page .vertical-landing-main .vertical-landing-list,
body.perche-non-arrivano-clienti-page .vertical-landing-main .vertical-landing-subtitle,
body.perche-non-arrivano-clienti-page .vertical-landing-main .vertical-landing-h2,
body.perche-non-arrivano-clienti-page .vertical-landing-main .vertical-landing-title,
body.perche-non-arrivano-clienti-page .vertical-landing-main .vertical-landing-cta-text,
body.perche-non-arrivano-clienti-page .vertical-landing-main .pattern-break,
body.perche-non-arrivano-clienti-page .vertical-landing-main .micro-break,
body.perche-non-arrivano-clienti-page .vertical-landing-main strong {
  color: #ffffff;
}

body.perche-non-arrivano-clienti-page .vertical-landing-main a:not(.vertical-landing-hero-link):not(.vertical-landing-cta-button) {
  color: #ffffff;
}

body.perche-non-arrivano-clienti-page .breadcrumb,
body.perche-non-arrivano-clienti-page .breadcrumb a,
body.perche-non-arrivano-clienti-page .breadcrumb ol {
  color: #ffffff;
}

/* Landing /perche-il-sito-non-genera-contatti: allineamento e testo come landing perche-non */
body.perche-il-sito-non-genera-contatti-page .vertical-landing-container {
  text-align: center;
}

body.perche-il-sito-non-genera-contatti-page .vertical-landing-h2 {
  text-align: center;
}

body.perche-il-sito-non-genera-contatti-page .vertical-landing-list {
  list-style-position: inside;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

body.perche-il-sito-non-genera-contatti-page .vertical-landing-cta-row {
  justify-content: center;
}

body.perche-il-sito-non-genera-contatti-page .vertical-landing-hero-inner .breadcrumb ol {
  justify-content: center;
}

body.perche-il-sito-non-genera-contatti-page .vertical-landing-main,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main p,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main li,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main .vertical-landing-list,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main .vertical-landing-subtitle,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main .vertical-landing-h2,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main .vertical-landing-title,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main .vertical-landing-cta-text,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main .pattern-break,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main .micro-break,
body.perche-il-sito-non-genera-contatti-page .vertical-landing-main strong {
  color: #ffffff;
}

body.perche-il-sito-non-genera-contatti-page .vertical-landing-main a:not(.vertical-landing-hero-link):not(.vertical-landing-cta-button) {
  color: #ffffff;
}

body.perche-il-sito-non-genera-contatti-page .breadcrumb,
body.perche-il-sito-non-genera-contatti-page .breadcrumb a,
body.perche-il-sito-non-genera-contatti-page .breadcrumb ol {
  color: #ffffff;
}

/* Landing /perche-le-ads-non-funzionano: allineamento e testo come altre landing perche */
body.perche-le-ads-non-funzionano-page .vertical-landing-container {
  text-align: center;
}

body.perche-le-ads-non-funzionano-page .vertical-landing-h2 {
  text-align: center;
}

body.perche-le-ads-non-funzionano-page .vertical-landing-list {
  list-style-position: inside;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

body.perche-le-ads-non-funzionano-page .vertical-landing-cta-row {
  justify-content: center;
}

body.perche-le-ads-non-funzionano-page .vertical-landing-hero-inner .breadcrumb ol {
  justify-content: center;
}

body.perche-le-ads-non-funzionano-page .vertical-landing-main,
body.perche-le-ads-non-funzionano-page .vertical-landing-main p,
body.perche-le-ads-non-funzionano-page .vertical-landing-main li,
body.perche-le-ads-non-funzionano-page .vertical-landing-main .vertical-landing-list,
body.perche-le-ads-non-funzionano-page .vertical-landing-main .vertical-landing-subtitle,
body.perche-le-ads-non-funzionano-page .vertical-landing-main .vertical-landing-h2,
body.perche-le-ads-non-funzionano-page .vertical-landing-main .vertical-landing-title,
body.perche-le-ads-non-funzionano-page .vertical-landing-main .vertical-landing-cta-text,
body.perche-le-ads-non-funzionano-page .vertical-landing-main .pattern-break,
body.perche-le-ads-non-funzionano-page .vertical-landing-main .micro-break,
body.perche-le-ads-non-funzionano-page .vertical-landing-main strong {
  color: #ffffff;
}

body.perche-le-ads-non-funzionano-page .vertical-landing-main a:not(.vertical-landing-hero-link):not(.vertical-landing-cta-button) {
  color: #ffffff;
}

body.perche-le-ads-non-funzionano-page .breadcrumb,
body.perche-le-ads-non-funzionano-page .breadcrumb a,
body.perche-le-ads-non-funzionano-page .breadcrumb ol {
  color: #ffffff;
}

/* Landing /come-trovare-clienti-online: allineamento e testo come altre landing perche */
body.come-trovare-clienti-online-page .vertical-landing-container {
  text-align: center;
}

body.come-trovare-clienti-online-page .vertical-landing-h2 {
  text-align: center;
}

body.come-trovare-clienti-online-page .vertical-landing-list {
  list-style-position: inside;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

body.come-trovare-clienti-online-page .vertical-landing-cta-row {
  justify-content: center;
}

body.come-trovare-clienti-online-page .vertical-landing-hero-inner .breadcrumb ol {
  justify-content: center;
}

body.come-trovare-clienti-online-page .vertical-landing-main,
body.come-trovare-clienti-online-page .vertical-landing-main p,
body.come-trovare-clienti-online-page .vertical-landing-main li,
body.come-trovare-clienti-online-page .vertical-landing-main .vertical-landing-list,
body.come-trovare-clienti-online-page .vertical-landing-main .vertical-landing-subtitle,
body.come-trovare-clienti-online-page .vertical-landing-main .vertical-landing-h2,
body.come-trovare-clienti-online-page .vertical-landing-main .vertical-landing-title,
body.come-trovare-clienti-online-page .vertical-landing-main .vertical-landing-cta-text,
body.come-trovare-clienti-online-page .vertical-landing-main .pattern-break,
body.come-trovare-clienti-online-page .vertical-landing-main .micro-break,
body.come-trovare-clienti-online-page .vertical-landing-main strong {
  color: #ffffff;
}

body.come-trovare-clienti-online-page .vertical-landing-main a:not(.vertical-landing-hero-link):not(.vertical-landing-cta-button) {
  color: #ffffff;
}

body.come-trovare-clienti-online-page .breadcrumb,
body.come-trovare-clienti-online-page .breadcrumb a,
body.come-trovare-clienti-online-page .breadcrumb ol {
  color: #ffffff;
}

