/* ===== ROADMAP SECTION ===== */
.roadmap {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-container {
    position: relative;
    margin-top: 3rem;
    padding-left: 3rem;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #22c55e 0%, #a855f7 50%, #6366f1 100%);
    border-radius: 2px;
    z-index: 0;
}

.roadmap-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.roadmap-item:last-child {
    border-bottom: none;
}

.roadmap-marker {
    position: absolute;
    left: -3rem;
    top: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    transform: translateX(-14px);
    z-index: 1;
}

.roadmap-item.completed .roadmap-marker {
    background: #22c55e;
    color: white;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.roadmap-item.in-progress .roadmap-marker {
    background: #f59e0b;
    color: white;
    animation: roadmapPulse 2s infinite;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.roadmap-item.upcoming .roadmap-marker {
    background: var(--bg-secondary);
    border: 3px solid #6366f1;
    color: #6366f1;
}

@keyframes roadmapPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
    }
}

.roadmap-content {
    flex: 1;
}

.roadmap-version {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.roadmap-item.completed .roadmap-version {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.roadmap-item.in-progress .roadmap-version {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.roadmap-item.upcoming .roadmap-version {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.roadmap-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.roadmap-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .roadmap {
        padding: 4rem 1rem;
    }
    .roadmap-container {
        padding-left: 2.5rem;
    }
    .roadmap-marker {
        left: -2.5rem;
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        transform: translateX(-12px);
    }
    .roadmap-content h4 {
        font-size: 1.1rem;
    }
}

/* ===== END ROADMAP ===== */
