/* =====================================
   BASE – same DNA, new structure
===================================== */
body {
  font-family: 'Roboto', sans-serif;
  background: #EDEDED;
  color: #111;
  line-height: 1.65;
}

/* Wrapper sezioni */
.landing-section {
  padding: 90px 6vw;
}

.landing-section.light {
  background: #ffffff;
}

.landing-section.soft {
  background: #f4f4f4;
}

.landing-section.dark {
  background: #0200D4;
  color: #fff;
}

/* Titoli */
.landing-section h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.landing-section p.lead {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.dark p.lead { color: #dcdcdc; }

/* =====================================
   IMAGE PLACEHOLDERS
===================================== */
.visual-box {
  background: linear-gradient(135deg, #e5e5e5, #ffffff);
  border-radius: 20px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.1rem;
}

/* =====================================
   GUIDED FLOW
===================================== */
.flow-box {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.flow-step {
  margin-bottom: 40px;
}

.flow-step h3 {
  margin-bottom: 16px;
}

.flow-step button {
  background: #f2f2f2;
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  margin-right: 12px;
  cursor: pointer;
  transition: all .3s ease;
}

.flow-step button:hover {
  background: #0071e3;
  color: #fff;
  transform: translateY(-2px);
}

/* Risultato */
.flow-result {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-top: 30px;
}

/* =====================================
   FINISHER QUICK COMPARISON (CARDS)
===================================== */
.finisher-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.finisher-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  transition: transform .3s ease;
}

.finisher-card:hover {
  transform: translateY(-6px);
}

.finisher-card h3 {
  margin-bottom: 14px;
}

.finisher-tag {
  display: inline-block;
  background: #0071e3;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.finisher-points {
  margin-top: 16px;
}

.finisher-points li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .finisher-cards {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   TABLES – CLEAN & READABLE
===================================== */
.table-wrap {
  overflow-x: auto;
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

table.compare thead {
  background: #0A096E;
  color: #fff;
}

table.compare th,
table.compare td {
  padding: 16px 18px;
  text-align: left;
}

table.compare tbody tr:nth-child(even) {
  background: #f4f4f4;
}

table.compare tbody tr:hover {
  background: #e9f1ff;
}

/* =====================================
   CTA FINAL
===================================== */
.final-cta {
  text-align: center;
  padding: 100px 6vw;
  background: linear-gradient(135deg, #0200D4, #0A096E);
  color: #fff;
}

.final-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* =========================
HERO LANDING
========================= */
.herolanding {
  position: relative;
  height: 65vh;

  overflow: hidden;
background-image: url("../images/background-landing.webp");
	background-size:contain;
}
 
@media (max-width: 900px) {
  .herolanding {
    height: auto;
    min-height: 85vh;
    overflow: visible;
  }
 
  
  .herolanding-content {
    height: auto;
    min-height: 85vh;
    padding-top: 140px;
    padding-bottom: 10px;
    justify-content: center;
  }
 
  .herolanding-content h1 {
    font-size: 1.4rem;
	line-height: 3.2rem;
  }
 
  .herolanding-content p {
    font-size: 1.2rem;
  }
}

 
.herolanding::after {
  content: "";
  position: absolute;
  inset: 0;
}
 
.herolanding-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
 
.herolanding-content h1 {
  font-size: 4rem;
  line-height: 3.8rem;
  margin-bottom: 16px;
  margin-top: 120px;
  color: #1344A7;
}
 
.herolanding-content p {
  color: #000 ;
  margin-bottom: 32px;
  font-size: 2rem;
}
 
.herolanding-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
 

/* =====================================
   SEO HELPERS
===================================== */
.semantic-note {
  font-size: 0.95rem;
  color: #777;
  max-width: 900px;
  margin-top: 30px;
}