.hero-acco {
    background: linear-gradient(rgba(10, 47, 31, 0.85), rgba(10, 47, 31, 0.85)), url('../img/accompagnement-hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(163, 255, 18, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding: 0 3rem;
}

.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--nema-accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(163, 255, 18, 0.1);
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.step-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--nema-accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--nema-accent-green);
}

.bento-card.large { grid-column: span 8; }
.bento-card.medium { grid-column: span 4; }
.bento-card.full { grid-column: span 12; }

.price-badge {
    display: inline-block;
    background: var(--nema-vitalite-soft);
    color: var(--nema-primary);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; }
    .timeline-dot { left: 10px !important; right: auto !important; }
    .bento-card { grid-column: span 12 !important; }
}

@media (min-width: 769px) {
    .nema-grid-mobile {
        grid-template-columns: 1fr 1fr;
    }
    .text-right-desktop {
        align-items: flex-end !important;
    }
    .text-right-desktop .price-badge {
        align-self: flex-end !important;
    }
}
