/* Pagina Fotovoltaico — layout come mockup */

/* Trust: orizzontale con checkmark verde */
.page-fv .trust--short {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}
.page-fv .trust--short .trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-fv .trust--short .dot--green,
.page-fv .trust--short .dot--blue,
.page-fv .trust--short .dot--amber {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--g1, #2ECF9A);
  position: relative;
}
.page-fv .trust--short .dot--green::after,
.page-fv .trust--short .dot--blue::after,
.page-fv .trust--short .dot--amber::after {
  content: '✓';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.page-fv .trust--short .trust__item span:last-child {
  color: rgba(46, 207, 154, 0.95);
  font-size: 14px;
}

/* Blocco centrale: Pannelli solari la soluzione per risparmiare */
.fv-block-mid {
  padding: 32px 0;
}
.fv-block-mid .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.fv-block-mid__text {
  flex: 1;
  min-width: 260px;
}
.fv-block-mid__text h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}
.fv-block-mid__visual {
  flex-shrink: 0;
  width: 180px;
  border-radius: 16px;
  overflow: hidden;
}
.fv-block-mid__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.fv-block-mid__cta {
  width: 100%;
  margin-top: 16px;
}
@media (min-width: 600px) {
  .fv-block-mid__cta { width: auto; margin-top: 0; }
}

/* Come funziona: 3 step con icone e frecce */
.fv-come-funziona {
  padding: 36px 0;
}
.fv-come-funziona h2 {
  margin: 0 0 24px;
  font-size: 1.25rem;
  font-weight: 700;
}
.fv-steps-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 8px 4px;
  margin-bottom: 24px;
}
.fv-step {
  flex: 1;
  min-width: 100px;
  max-width: 160px;
  text-align: center;
}
.fv-step__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: rgba(46, 207, 154, 0.15);
  border: 2px solid var(--g1, #2ECF9A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.fv-step__text {
  font-size: 12px;
  color: var(--text);
  line-height: 1.35;
}
.fv-step-arrow {
  align-self: center;
  color: var(--g1);
  font-size: 14px;
  padding: 0 4px;
}
@media (max-width: 500px) {
  .fv-step-arrow { display: none; }
}

/* Sticky: testo a sinistra, bottone a destra */
@media (max-width: 899px) {
  .page-fv .stickyCta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
  }
}
.page-fv .stickyCta .stickyCta__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.page-fv .stickyCta .btn {
  flex-shrink: 0;
  white-space: nowrap;
}
