.hero-char-placeholder img {
    width: 250px;
    height: 404px;
    object-fit: contain;
}

.hero-char-sub {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232, 226, 217, 0.30);
}

.hero-char-note {
    font-size: 0.7rem;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

.char-avatar {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .char-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Problem cards staggered reveal */
.problem-cards .problem-card:nth-child(2) { transition-delay: 0.1s; }
.problem-cards .problem-card:nth-child(3) { transition-delay: 0.2s; }

/* Problem card icons: inline SVG line-art, avorio → ruggine in hover */
.problem-card-icon {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: var(--space-4);
    color: var(--color-dark);
    transition: var(--transition-base);
}

    .problem-card-icon svg {
        display: block;
        width: 100%;
        height: 100%;
    }

.problem-card:hover .problem-card-icon {
    color: var(--color-accent-hero);
}

/* For-who icons: inline SVG line-art nel box, avorio → ruggine in hover */
.forwho-icon {
    color: var(--color-dark);
    transition: var(--transition-base);
}

    .forwho-icon svg {
        display: block;
        width: 2.75rem;
        height: 2.75rem;
    }

.forwho-card:hover .forwho-icon {
    color: var(--color-accent-hero);
}

/* How it works */
.howitworks-header .lares-h2 {
    display: inline-block;
}

.alt-callout-inner .section-label {
    color: var(--color-terracotta);
}

.alt-callout-headline {
    color: var(--color-dark);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin: var(--space-2) 0;
}

.alt-callout-body {
    color: var(--color-mid);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.alt-callout-inner .btn {
    flex-shrink: 0;
    align-self: center;
}

/* Characters section */
.chars-header .lares-h2 {
    display: inline-block;
}

.chars-header .btn {
    flex-shrink: 0;
}

/* For whom section */
.forwho-header .lares-h2 {
    display: inline-block;
}

.forwho-grid .forwho-card:nth-child(2) { transition-delay: 0.1s; }
.forwho-grid .forwho-card:nth-child(3) { transition-delay: 0.2s; }
.forwho-grid .forwho-card:nth-child(4) { transition-delay: 0.3s; }

/* Tech stack */
.lares-techstack-inner .lares-h2 {
    display: inline-block;
}

/* Timeline */
.timeline-header .lares-h2 {
    display: inline-block;
}

.timeline-track .milestone:nth-child(2) { transition-delay: 0.1s; }
.timeline-track .milestone:nth-child(3) { transition-delay: 0.2s; }
.timeline-track .milestone:nth-child(4) { transition-delay: 0.3s; }
.timeline-track .milestone:nth-child(5) { transition-delay: 0.4s; }

/* Lead form */
.leadform-copy .lares-h2 {
    display: inline-block;
}

.leadform-contact {
    margin-top: 1.75rem;
    font-style: normal;
}

.contact-producer {
    font-size: var(--text-sm);
    color: var(--color-mid);
    margin: 0 0 0.75rem;
}

.contact-producer a {
    color: var(--color-terracotta);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 1rem;
    font-size: var(--text-sm);
}

.contact-list li {
    display: contents;
}

.contact-label {
    font-weight: 500;
    color: var(--color-mid);
    white-space: nowrap;
}

.contact-list a {
    color: var(--color-terracotta);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-list a:hover {
    color: var(--color-terracotta-dark);
}


/***********************************paolo*/
.leadform-contact{

}

    .leadform-contact::before {
        content: '';
        display: block;
        width: 2.5rem;
        height: 0.5px;
        background: var(--color-cream-border-hi);
        margin-top: var(--space-3);
    }