.trialo-landing-cards {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px 60px;
}

.trialo-landing-cards .section-block {
    margin: 50px 0;
}

.trialo-landing-cards h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.trialo-landing-cards h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #0d3b66;
}

.trialo-landing-cards h3 {
    font-size: 1.25rem;      /* un po' più grande */
    margin-bottom: 8px;
    font-weight: 600;        /* più leggibile */
    }

.trialo-landing-cards p {
    margin-bottom: 10px;
}

/* HERO */
.trialo-landing-cards .hero-card {
    background: linear-gradient(135deg, #0d6efd0e, #0d6efd05);
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid #e0e7ff;
    margin-bottom: 40px;
}

.trialo-landing-cards .hero-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.trialo-landing-cards .hero-text {
    flex: 1 1 260px;
}

.trialo-landing-cards .hero-visual {
    flex: 1 1 260px;
    display: flex;
    justify-content: center;
}

.trialo-landing-cards .hero-placeholder {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    border: 1px dashed #b0c4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #6b7280;
    background: #f9fafb;
}

/* BTN */
.trialo-btn-primary {
    display: inline-block;
    background: #0d6efd;
    color: #ffffff !important;
    padding: 12px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.08s ease;
}

.trialo-btn-primary:hover {
    background: #0b5ed7;
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.25);
    transform: translateY(-1px);
}

/* CARD GRID */
.trialo-landing-cards .cards-grid {
    display: grid;
    gap: 20px;
}

.trialo-landing-cards .cards-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Desktop: 3 colonne */
.trialo-landing-cards .cards-3 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Tablet: 2 colonne */
@media (max-width: 1024px) {
    .trialo-landing-cards .cards-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile: 1 colonna */
@media (max-width: 640px) {
    .trialo-landing-cards .cards-3 {
        grid-template-columns: 1fr;
    }
}

.trialo-landing-cards .cards-5 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* CARD BASE */
.trialo-landing-cards .card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 18px 18px 20px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.trialo-landing-cards .card ul,
.trialo-landing-cards .card ol {
    padding-left: 18px;
    margin: 0;
}

/* NOTE */
.trialo-landing-cards .section-note {
    margin-top: 14px;
    font-weight: 600;
}

/* CTA FINALE */
.trialo-landing-cards .cta-final {
    text-align: center;
    padding: 32px 20px;
    border-radius: 16px;
    background: #0d6efd08;
    border: 1px solid #bfdbfe;
}
.trialo-landing-cards .cta-final p {
    margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .trialo-landing-cards .hero-inner {
        flex-direction: column;
    }
}

.trialo-landing-cards .section-benefits .card {
    background: #ffffff;
}

.trialo-landing-cards section.section-benefits {
    background-color: #eef3ff !important;  /* colore più evidente + !important */
    padding: 32px 24px;
    border-radius: 16px;
    margin-top: 40px;
    border: 1px solid #bfdbfe;
}

.trialo-landing-cards section.section-benefits h2 {
    text-align: center;
    margin-bottom: 24px;
}



